Preprocess
Contents
import json
import pandas as pd
import os
from typing import List
from datetime import datetime
import re
ML_JOB_PATH = "machine-learning-jobs20221109161820.jsonl"
DS_JOB_PATH = "sample20221109145023.jsonl"
RANDOM_STATE = 42
def validate_data_path(data_path:str):
"""Validates data path
Args:
data_path (str): path of the data
Raises:
FileNotFoundError: File does not exist
"""
if not os.path.exists(data_path):
raise FileNotFoundError(data_path)
# not all data point is perfect, for those with errors I will ignore
def return_data(data_path:str)->List:
"""Returns job detail from on job posting
Args:
data_path (str): Path of the data
Returns:
List: A list full of the job posting, each a dictionary
"""
validate_data_path(data_path)
data_list = []
with open(data_path, 'r') as reader:
for line in reader.readlines():
data = json.loads(line)
# Errors are only contained in the dictionary
if isinstance(data,dict):
continue
data_list.append(data)
return data_list
ML_JOB_RAW_DATA = return_data(ML_JOB_PATH)
DS_JOB_RAW_DATA = return_data(DS_JOB_PATH)
len(ML_JOB_RAW_DATA)
224
len(DS_JOB_RAW_DATA)
1212
TOTAL_JOB_RAW_DATA = ML_JOB_RAW_DATA + DS_JOB_RAW_DATA
len(TOTAL_JOB_RAW_DATA)
1436
# Attempting to fetch headers from their respective cols
headers = {}
for row in TOTAL_JOB_RAW_DATA:
for col in range(1,len(row)):
for key in row[col].keys():
if str(key) + '_' + str(col) in headers:
headers[f"{key}_{col}"] +=1
else:
headers[f"{key}_{col}"] = 1
len(headers)
1299
# This is a slice of all of the headers found coz otherwise it will be too big
headers_slice = {k:headers[k] for k in list(headers)[:15]}
headers_slice
{'company_name_1': 1436,
'small_section_2': 1436,
'Responsibilities:\xa0_3': 6,
'\xa0_3': 10,
'Essential Skills:_3': 2,
'Career Level_4': 1436,
'Qualification_4': 1434,
'Years of Experience_4': 1241,
'Job Type_4': 1436,
'Job Specializations_4': 1436,
'Registration No._4': 1429,
'Company Size_4': 1411,
'Industry_4': 1434,
'Benefits & Others_4': 1151,
'Company Overview_5': 1419}
# These headers have values for all jobs
full_header = [k for k,v in headers.items() if v == len(TOTAL_JOB_RAW_DATA)]
full_header
['company_name_1',
'small_section_2',
'Career Level_4',
'Job Type_4',
'Job Specializations_4',
'url_6']
I am expecting all information to be filled in:
First col: Job position
Second col: Details of the job including pay, location (General and or specific),
Fourth col: Misc details of the company including size of company, dress code etc
Fifth col: Company Overview, details on the company
Sixth col: URL
Within the second col I expect there are also some headers to be further broken down.
The largest one will have to be the second col with the job description being the most variable component of the posting. I suspect most of the work will be done in here to uncover as much information as possible.
The desired outcome will be a consolidated pandas dataframe with as little information loss as possible.
Preprocess#
Full Columns#
# We do see some artifacts in the job titles like
# - Job reference number
# - Hashtags
job_reference_pattern = r"\(?\w+\d+\)?"
hashtag_pattern = r"#\w+"
data = {}
job_title,company_name,career_level,job_type, job_specialisations, url = [],[],[],[],[],[]
for row in TOTAL_JOB_RAW_DATA:
position = row[0]['position']
position = re.sub(job_reference_pattern, "",position)
position = re.sub(hashtag_pattern, "",position)
position = position.replace("*","").replace("-","")
company_name.append(row[1]['company_name'])
job_title.append(position)
career_level.append(row[4]['Career Level'])
job_type.append(row[4]['Job Type'])
job_specialisations.append(row[4]['Job Specializations'])
url.append(row[6]['url'])
data['job_title'] = job_title
data['company_name'] = company_name
data['career_level'] = career_level
data['job_type'] = job_type
data['job_specialisations'] = job_specialisations
data['url'] = url
assert (len(job_title) == len(career_level)==len(job_type)==len(job_specialisations)==len(url))
# Already we can see some field contains some other information like the job_title containing job type, location and company name for instance
pd.DataFrame.from_dict(data).tail()
| job_title | company_name | career_level | job_type | job_specialisations | url | |
|---|---|---|---|---|---|---|
| 1431 | Research Associate (Bioprinting), | Nanyang Technological University | Junior Executive | Full-Time | Sciences, Science & Technology | http://www.jobstreet.com.sg/en/job/research-as... |
| 1432 | Data Science Analyst, TikTok | TikTok | Entry Level | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/data-scienc... |
| 1433 | Data Analyst Senior (1 year contract, Central) | PERSOLKELLY Singapore Pte Ltd (Formerly Kelly ... | Senior Executive | Temporary | Manufacturing, Purchasing/Material Mgmt | http://www.jobstreet.com.sg/en/job/data-analys... |
| 1434 | Junior Machine Learning Engineer | Dell Asia Pte Ltd | Junior Executive | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/junior-mach... |
| 1435 | Senior Process Development Scientist (Organic ... | PERSOLKELLY Singapore Pte Ltd (Formerly Kelly ... | Senior Executive | Full-Time | Sciences, Chemistry | http://www.jobstreet.com.sg/en/job/senior-proc... |
# Already we can see some field contains some other information like the job_title containing job type, location and company name for instance
pd.DataFrame.from_dict(data).sample(15, random_state=RANDOM_STATE)
| job_title | company_name | career_level | job_type | job_specialisations | url | |
|---|---|---|---|---|---|---|
| 594 | Executive, Healthcare Information (Analytics A... | SingHealth Polyclinics | Junior Executive | Full-Time | Admin/Human Resources, Clerical/Administrative... | http://www.jobstreet.com.sg/en/job/executive-h... |
| 754 | Research Associate, (Computer Science/Electric... | Nanyang Technological University | Junior Executive | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-as... |
| 630 | Research Engineer I, (Computer Science) | Nanyang Technological University | Junior Executive | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-en... |
| 1259 | Research Scientist (Engineering) | Nanyang Technological University | Junior Executive | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-sc... |
| 903 | Research Assistant, (Microbiology Wastewater... | Nanyang Technological University | Junior Executive | Full-Time | Sciences, Science & Technology | http://www.jobstreet.com.sg/en/job/research-as... |
| 1175 | Lead Data Scientist, | ALLEGIS GLOBAL SOLUTIONS (SINGAPORE) PTE. LTD | Manager | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/lead-data-s... |
| 762 | SVP / VP, Delivery Lead (Digital Banking), Gro... | DBS Bank Limited | Senior Manager | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/svp-vp-deli... |
| 1372 | Research Scientist (Microfabrication) | Nanyang Technological University | Junior Executive | Full-Time | Sciences, Science & Technology | http://www.jobstreet.com.sg/en/job/research-sc... |
| 259 | Research Assistant (Computer Science and Data ... | Nanyang Technological University | Entry Level | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-as... |
| 316 | Solution Lead, Sensors & Machine Learning Lab | Changi Airport Group (Singapore) Pte. Ltd. | Senior Manager | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/solution-le... |
| 705 | Chief Scientific Officer (EDDC) | Agency for Science, Technology and Research (A... | Junior Executive | Full-Time | Sciences, Science & Technology | http://www.jobstreet.com.sg/en/job/chief-scien... |
| 906 | Data Scientist Intern, Growth | TikTok | Entry Level | Internship | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/data-scient... |
| 274 | Assistant Manager/Assistant Principal Data Ana... | ST Engineering Ltd | Manager | Full-Time | Computer/Information Technology, IT-Network/Sy... | http://www.jobstreet.com.sg/en/job/assistant-m... |
| 361 | Research Fellow (Signal Processing and Machine... | Nanyang Technological University | Junior Executive | Full-Time | Engineering, Electrical | http://www.jobstreet.com.sg/en/job/research-fe... |
| 743 | Associate/ Data Engineer, Government Infrastru... | Government Technology Agency of Singapore (Gov... | Junior Executive | Full-Time | Computer/Information Technology, IT-Network/Sy... | http://www.jobstreet.com.sg/en/job/associate-d... |
Partial Columns#
Small Section#
This is where the trouble/fun starts. Lets start with the small section
# The small section contains a list with location, salary (if available) and then post date
for idx, row in enumerate(TOTAL_JOB_RAW_DATA):
if idx > 20 :
break
else:
print(row[2])
{'small_section': ['Central', 'SGD\xa06,000 - SGD\xa012,000', 'Posted on 4-Nov-22']}
{'small_section': ['Singapore', 'Posted 1 hour ago']}
{'small_section': ['Singapore', 'Posted on 8-Nov-22']}
{'small_section': ['Central - Others', 'Posted on 6-Nov-22']}
{'small_section': ['Singapore', 'Posted on 8-Nov-22']}
{'small_section': ['Singapore', 'Posted on 7-Nov-22']}
{'small_section': ['Novena', 'Posted on 7-Nov-22']}
{'small_section': ['Singapore', 'Posted on 7-Nov-22']}
{'small_section': ['Singapore', 'Posted on 5-Nov-22']}
{'small_section': ['Singapore', 'Posted on 7-Nov-22']}
{'small_section': ['Singapore', 'Posted on 5-Nov-22']}
{'small_section': ['Central - Others', 'SGD\xa04,000 - SGD\xa06,000', 'Posted on 3-Nov-22']}
{'small_section': ['Singapore', 'Posted on 7-Nov-22']}
{'small_section': ['West', 'Posted 11 hours ago']}
{'small_section': ['Singapore', 'Posted on 4-Nov-22']}
{'small_section': ['Singapore', 'Posted on 6-Nov-22']}
{'small_section': ['Singapore', 'Posted 11 hours ago']}
{'small_section': ['West', 'Posted on 5-Nov-22']}
{'small_section': ['Singapore', 'Posted on 2-Nov-22']}
{'small_section': ['Singapore', 'Posted 5 hours ago']}
{'small_section': ['West', 'SGD\xa03,800 - SGD\xa04,700', 'Posted on 5-Nov-22']}
demo = 'Posted on 7-Nov-22'
demo.split("Posted on")[1].strip()
'7-Nov-22'
datetime.strptime(demo.split("Posted on")[1].strip(),'%d-%b-%y')
datetime.datetime(2022, 11, 7, 0, 0)
curr_date = ML_JOB_PATH[21:-12]
curr_date
'20221109'
datetime.strptime(curr_date, '%Y%m%d').year
2022
def extract_date_from_posted_date(sample_text:str, file_path:str)->datetime:
"""Return posted date in datetime format
Args:
sample_text (str): sample text from the row
file_path (str): File path from the data in jsonl format
to determine the current date
Returns:
datetime: When the job was posted
"""
if 'on' in sample_text:
sample_date = sample_text.split("Posted on")[1].strip()
return datetime.strptime(sample_date,'%d-%b-%y')
else:
curr_date = file_path[21:-12]
return datetime.strptime(curr_date, '%Y%m%d')
# For location, we will take in anything that is other than Singapore, if Singapore we will leave it as unspecified
# For Salary, we will clean up the html artifact '\xa0' and seperate into low to high
# For Post date, we will just take in as is. Any variant of Posted on xxx will be tagged as the date of extraction which is collected on the jsonl file
location, low_salary, high_salary, post_date = [],[],[],[]
curr_date = ML_JOB_PATH[21:-12]
for idx, row in enumerate(TOTAL_JOB_RAW_DATA):
select_row = row[2]['small_section']
# location
try:
# There are instances where no location is entered
if select_row[0] is not None:
if 'sin' not in select_row[0].lower():
location.append(select_row[0])
else:
location.append('unspecified')
else:
location.append('unspecified')
# check for salary, otherwise its posted date
if 'sgd' in select_row[1].lower():
if "\xa0" in select_row[1].lower():
low_salary.append(select_row[1].split("\xa0")[1].split('-')[0].strip())
high_salary.append(select_row[1].split("\xa0")[2].strip())
else:
salary = select_row[1].lower().split('sgd')[1].strip()
low_salary.append(salary)
high_salary.append(salary)
# if sgd not in this value, it must be posted date
else:
salary = 'unspecified'
low_salary.append(salary)
high_salary.append(salary)
post_date.append(extract_date_from_posted_date(select_row[1], ML_JOB_PATH))
# if third value is present, it must be posted date
if len(select_row) == 3:
post_date.append(extract_date_from_posted_date(select_row[1], ML_JOB_PATH))
except Exception as e:
print(f"{idx} with {row} has issue {e}")
assert (len(location)==len(low_salary)==len(high_salary)==len(post_date))
data['location'] = location
data['low_salary'] = low_salary
data['high_salary'] = high_salary
data['post_date'] = post_date
pd.set_option('max_colwidth', 400)
# This is how the dataframe looks like so far.
pd.DataFrame.from_dict(data).sample(15,random_state=RANDOM_STATE)
| job_title | company_name | career_level | job_type | job_specialisations | url | location | low_salary | high_salary | post_date | |
|---|---|---|---|---|---|---|---|---|---|---|
| 594 | Executive, Healthcare Information (Analytics And Training) | SingHealth Polyclinics | Junior Executive | Full-Time | Admin/Human Resources, Clerical/Administrative Support | http://www.jobstreet.com.sg/en/job/executive-healthcare-information-analytics-and-training-10130238?jobId=jobstreet-sg-job-10130238§ionRank=459&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing | Bukit Merah | unspecified | unspecified | 2022-11-03 |
| 754 | Research Associate, (Computer Science/Electrical Engineering) | Nanyang Technological University | Junior Executive | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-associate-computer-science-electrical-engineering-r00007741-10073176?jobId=jobstreet-sg-job-10073176§ionRank=677&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-01 |
| 630 | Research Engineer I, (Computer Science) | Nanyang Technological University | Junior Executive | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-engineer-i-computer-science-r00009810-urgent-10139853?jobId=jobstreet-sg-job-10139853§ionRank=512&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-06 |
| 1259 | Research Scientist (Engineering) | Nanyang Technological University | Junior Executive | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-scientist-engineering-r00009510-10046533?jobId=jobstreet-sg-job-10046533§ionRank=1290&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing | West | unspecified | unspecified | 2022-10-27 |
| 903 | Research Assistant, (Microbiology Wastewater Surveillance) | Nanyang Technological University | Junior Executive | Full-Time | Sciences, Science & Technology | http://www.jobstreet.com.sg/en/job/research-assistant-microbiology-wastewater-surveillance-r00009549-10070295?jobId=jobstreet-sg-job-10070295§ionRank=848&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-10-30 |
| 1175 | Lead Data Scientist, | ALLEGIS GLOBAL SOLUTIONS (SINGAPORE) PTE. LTD | Manager | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/lead-data-scientist-2200012277-immediate-10097986?jobId=jobstreet-sg-job-10097986§ionRank=1183&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-10-24 |
| 762 | SVP / VP, Delivery Lead (Digital Banking), Group Consumer Banking and Big Data Analytics Technology, Technology & Operat | DBS Bank Limited | Senior Manager | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/svp-vp-delivery-lead-digital-banking-group-consumer-banking-and-big-data-analytics-technology-technology-operat-wd45680-10078995?jobId=jobstreet-sg-job-10078995§ionRank=686&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-02 |
| 1372 | Research Scientist (Microfabrication) | Nanyang Technological University | Junior Executive | Full-Time | Sciences, Science & Technology | http://www.jobstreet.com.sg/en/job/research-scientist-microfabrication-r00007961-jobsthatmatter-10136934?jobId=jobstreet-sg-job-10136934§ionRank=1427&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-05 |
| 259 | Research Assistant (Computer Science and Data Science) | Nanyang Technological University | Entry Level | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-and-data-science-r00006992-10138945?jobId=jobstreet-sg-job-10138945§ionRank=40&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing | West | unspecified | unspecified | 2022-11-06 |
| 316 | Solution Lead, Sensors & Machine Learning Lab | Changi Airport Group (Singapore) Pte. Ltd. | Senior Manager | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/solution-lead-sensors-machine-learning-lab-5762-10144312?jobId=jobstreet-sg-job-10144312§ionRank=107&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-08 |
| 705 | Chief Scientific Officer (EDDC) | Agency for Science, Technology and Research (A*STAR) | Junior Executive | Full-Time | Sciences, Science & Technology | http://www.jobstreet.com.sg/en/job/chief-scientific-officer-eddc-10123469?jobId=jobstreet-sg-job-10123469§ionRank=610&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-01 |
| 906 | Data Scientist Intern, Growth | TikTok | Entry Level | Internship | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth-urgent*-urgenthire-10113533?jobId=jobstreet-sg-job-10113533§ionRank=853&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-10-28 |
| 274 | Assistant Manager/Assistant Principal Data Analyst | ST Engineering Ltd | Manager | Full-Time | Computer/Information Technology, IT-Network/Sys/DB Admin | http://www.jobstreet.com.sg/en/job/assistant-manager-assistant-principal-data-analyst-10141010?jobId=jobstreet-sg-job-10141010§ionRank=56&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-07 |
| 361 | Research Fellow (Signal Processing and Machine Learning), T | Nanyang Technological University | Junior Executive | Full-Time | Engineering, Electrical | http://www.jobstreet.com.sg/en/job/research-fellow-signal-processing-and-machine-learning-r00003631-t-10096929?jobId=jobstreet-sg-job-10096929§ionRank=159&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing | West | unspecified | unspecified | 2022-11-09 |
| 743 | Associate/ Data Engineer, Government Infrastructure Group | Government Technology Agency of Singapore (GovTech) | Junior Executive | Full-Time | Computer/Information Technology, IT-Network/Sys/DB Admin | http://www.jobstreet.com.sg/en/job/associate-data-engineer-government-infrastructure-group-jobsthatmatter-10052819?jobId=jobstreet-sg-job-10052819§ionRank=662&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-10-26 |
Some cleanup is still needed in the Job title as posters tend to put in some additional remarks there
Job description#
Because this section is pretty much is an open format for text to be dumped, the rationale for the scrapping rules is that it would be easier to identify actual JDs as they tend to be encapsulated in list format preceded by a header in bold. Of course the actual JD could be contained in some other format however this is one way to remove extra information like standard clauses by companies.
# Remove the _3 suffix attached to the key
jd_headers = {key[:-2]:headers[key] for key in list(headers) if key.endswith('3')}
len(jd_headers)
1283
sorted_jd_headers = dict(sorted(jd_headers.items(), key=lambda item: item[1], reverse=True))
# in this instance we see most of them are captured under expected headers like Job requirements, responsibilites, requirements and similar variants
# 20 shown only for visibility
{key:sorted_jd_headers[key] for key in list(sorted_jd_headers)[:20]}
{'Job Requirements:': 266,
'Responsibilities': 240,
'Job Requirements': 239,
'Qualifications': 212,
'Job Responsibilities': 186,
'Key Responsibilities:': 171,
'Responsibilities:': 103,
'Requirements:': 99,
'Requirements': 97,
'Job Description': 79,
'Job Description:': 71,
'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': 53,
'Key Responsibilities:\xa0': 47,
'Job Requirements:\xa0': 44,
'Job Responsibilities:': 42,
'Preferred Qualifications': 30,
'Qualifications:': 30,
'Key Responsibilities': 29,
'Minimum Qualifications': 25,
'Overview': 25}
I imagine JDs would then have two sections:
the Actual Job description
Their requirements in a candidate
My next approach is to gather all of the headers that correspond to those two categories and fill them up with values. The difficulty here is that there is no consistent format for the companies or posters to list them unlike the previous categories. Taking the whole information and dumping them in one category or sieving them is also a big problem, thus my approach of taking bullet points from headers.
# Some quick EDA
# so we see that not all headers contain valid values even if the keys are valid like the first example there
TOTAL_JOB_RAW_DATA[0][3]
{'Responsibilities:\xa0': '',
'\xa0': 'Develop targeted bespoke analytics models to help the venture extract value from, and monetise, data on our platforms, where such value extraction could include the likes of better client decisioning, pricing and opportunity identification..Research, design, implement and validate cutting-edge analytics and data visualization techniques to achieve targeted outcomes, such as bringing predicted outcomes closer to experience while ensuring consistency with the model ecosystem, while identifying opportunities for solutions to be leveraged across applications to broaden their scope of use and improve risk analysis..Collaborate with partner technology teams in setting up an effective model lifecycle platform on the cloud, with possible roles to play in cloud architecture and platform engineering..',
'Essential Skills:': 'At least five years’ experience in a predictive analytics or Artificial Intelligence / Machine-learning role, or in modelling complex systems..Strong degree or postgraduate qualification in any discipline with substantial quantitative component (e.g. Physics, Mathematics, Statistics, Actuarial Sciences, Biostatistics, Meteorology, etc.)..Expertise in statistical and predictive modelling concepts, machine-learning approaches, clustering and classification techniques, and recommendation and/or optimization algorithms..Expertise in analytical programming with a focus on Python libraries e.g. pandas, and experience in data handling..Experience in cloud architecture or machine-learning platform engineering would be strongly advantageous..Experience with managing complex data projects would be advantageous..Understanding of trade and supply chain concepts would be advantageous..'}
TOTAL_JOB_RAW_DATA[2][3].keys()
dict_keys(['NLP\xa0and\xa0Knowledge Graph Engineer, Sensors & Machine Learning Lab', 'Responsibilities:', 'Preferred Requirements:'])
# My first step is just to remove the key value pairs where there is no values or have values of a certain length..
for posting in TOTAL_JOB_RAW_DATA:
print(posting)
for jd in posting[3]:
print(jd)
break
[{'position': 'Associate Director, Risk Analytics'}, {'company_name': 'Olea Global Pte. Ltd.'}, {'small_section': ['Central', 'SGD\xa06,000 - SGD\xa012,000', 'Posted on 4-Nov-22']}, {'Responsibilities:\xa0': '', '\xa0': 'Develop targeted bespoke analytics models to help the venture extract value from, and monetise, data on our platforms, where such value extraction could include the likes of better client decisioning, pricing and opportunity identification..Research, design, implement and validate cutting-edge analytics and data visualization techniques to achieve targeted outcomes, such as bringing predicted outcomes closer to experience while ensuring consistency with the model ecosystem, while identifying opportunities for solutions to be leveraged across applications to broaden their scope of use and improve risk analysis..Collaborate with partner technology teams in setting up an effective model lifecycle platform on the cloud, with possible roles to play in cloud architecture and platform engineering..', 'Essential Skills:': 'At least five years’ experience in a predictive analytics or Artificial Intelligence / Machine-learning role, or in modelling complex systems..Strong degree or postgraduate qualification in any discipline with substantial quantitative component (e.g. Physics, Mathematics, Statistics, Actuarial Sciences, Biostatistics, Meteorology, etc.)..Expertise in statistical and predictive modelling concepts, machine-learning approaches, clustering and classification techniques, and recommendation and/or optimization algorithms..Expertise in analytical programming with a focus on Python libraries e.g. pandas, and experience in data handling..Experience in cloud architecture or machine-learning platform engineering would be strongly advantageous..Experience with managing complex data projects would be advantageous..Understanding of trade and supply chain concepts would be advantageous..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Corporate Finance/Investment', 'Registration No.': '202138286N', 'Company Size': '1 - 50 Employees', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'Olea is a fully digitized trade finance platform that brings businesses requiring supply chain financing with investors who invest in trade finance assets as an alternative asset class. It is a joint venture between Standard Chartered Bank and Linklogis, a leading technology company in China. It combines Standard Chartered’s expertise in trade, risk management and investor network with the technological proficiency of Linklogis. Headquartered in Singapore, Olea’s ambition is to become a leading global platform in empowering sustainable trade. Visit www.olea.net to find out more.'}, {'url': 'http://www.jobstreet.com.sg/en/job/associate-director-risk-analytics-10041886?jobId=jobstreet-sg-job-10041886§ionRank=2&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Engineer (Machine Learning)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted 1 hour ago']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-10148407?jobId=jobstreet-sg-job-10148407§ionRank=3&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
[{'position': 'NLP and Knowledge Graph Engineer, Sensors & Machine Learning Lab (5763)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'NLP\xa0and\xa0Knowledge Graph Engineer, Sensors & Machine Learning Lab': '', 'Responsibilities:': 'Engage business users to discover how knowledge graph\xa0and/or\xa0NLP can enable operations transformation,\xa0such as to enhance operation effectiveness,\xa0raise productivity\xa0and\xa0support decision-making..Design, develop\xa0&\xa0deploy customised\xa0and\xa0scalable solutions as part of the end-to-end AI/ML pipeline for NLP..Design, develop\xa0&\xa0deploy customised\xa0and\xa0scalable knowledge graph solutions\xa0or\xa0products..Stay relevant in the latest technologies\xa0and\xa0trends in knowledge graph\xa0and\xa0NLP..Support company-wide initiatives to inspire\xa0and\xa0upskill colleagues..', 'Preferred Requirements:': 'At least 2\xa0years\xa0of professional experience developing\xa0and\xa0deploying\xa0NLP\xa0and/or\xa0knowledge graphs solutions..Degree\xa0in computer science, engineering,\xa0or\xa0equivalent practical experience..Familiar with ML frameworks such as TensorFlow\xa0and\xa0PyTorch..Proficiency in Python programming is required. Familiarity with AWS would be advantageous..Passionate about technology\xa0and\xa0enthuse about solving challenging problems..Excellent team-player who can collaborate well with both internal stakeholders & external partners..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-and-knowledge-graph-engineer-sensors-machine-learning-lab-5763-10144319?jobId=jobstreet-sg-job-10144319§ionRank=4&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
NLP and Knowledge Graph Engineer, Sensors & Machine Learning Lab
[{'position': 'ASUS - AICS SG - Machine Learning Engineer'}, {'company_name': 'ASUS Global Pte Ltd'}, {'small_section': ['Central - Others', 'Posted on 6-Nov-22']}, {'About ASUS\xa0\xa0': '', 'About AICS\xa0': '', 'Job Responsibilities:': 'Work with\xa0the\xa0Data Science team to transform data science prototypes into production models\xa0using\xa0best practices for model\xa0development,\xa0management and maintenance\xa0\xa0.Research and implement appropriate ML algorithms and tools, select appropriate datasets, benchmark models, and perform statistical analysis and fine-tuning\xa0.Keep models up to date by\xa0incorporating\xa0continuous learning into system\xa0.Work closely with an entrepreneurial team of experienced researchers and software engineers to successfully\xa0ship\xa0software\xa0products\xa0and continue to grow our business\xa0.', 'Requirements:\xa0': "Bachelor's Degree in computer science or related field with at least 3 years relevant experience\xa0.Understanding of data structures, data modeling and software architecture\xa0.Deep knowledge of math, probability, statistics and algorithms\xa0.Strong programming\xa0in\xa0Python or C++\xa0.Independent analytical problem-solving skills\xa0\xa0.Experience with ML frameworks and libraries\xa0\xa0."}, {'Career Level': 'Senior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201306935R', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '21 days', 'Industry': 'Computer/Information Technology (Hardware)', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': '37 Craig Road'}, {'Company Overview': '\n\n\nAbout ASUS:\nASUS is a multinational company known for the world’s best motherboards, PCs, monitors, graphics cards and routers and driven to become the most-admired innovative leading technology enterprise. With a global workforce that includes more than 5,000 R&D professionals, ASUS leads the industry through cutting-edge design and innovations made to create the most ubiquitous, intelligent, heartfelt and joyful smart life for everyone. Inspired by the In Search of Incredible brand spirit, ASUS won thousands of prestigious awards in 2018 and ranked as one of Forbes’\xa0Global 2000 Top Regarded Companies, Thomson Reuters’ Top 100 Global Tech Leaders and Fortune’s World’s Most Admired Companies. \xa0\n關於華碩\n華碩為美國《財富》雜誌評比「世界最受推崇企業之一」,並榮登美國《富比士》雜誌「全球最受信賴企業排行榜」及英國《路透社》「全球科技100強」。產品類別橫跨主機板、顯示卡、筆記型電腦、智慧手機、螢幕、路由器及全方位的科技產品解決方案,並積極拓展電競產品及開創AIOT新領域的各種應用。華碩致力追尋無與倫比的科技創新,為全球使用者創造體貼人心的智慧生活與無所不在的幸福感,以成為「數位新世代備受推崇的科技創新領導企業」為品牌願景。華碩全球員工數約14,500人,擁有世界級研發菁英超過5,000人,產品行銷全球70多個國家,營業額超過100億美元。\n\nToday, ASUS is looking to expand its presence in Singapore and is looking for enthusiastic, aggressive and career-minded individuals to join the team.\nFor more details, please visit https://www.asus.com/sg/.\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/asus-aics-sg-machine-learning-engineer-10109786?jobId=jobstreet-sg-job-10109786§ionRank=5&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
About ASUS
[{'position': 'Solution Lead, Sensors & Machine Learning Lab (5762)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Solution Lead, Sensors & Machine Learning Lab': '', 'Preferred Requirements:': 'Good\xa0Degree\xa0in engineering, computer science\xa0or\xa0equivalent practical experience.At least 10\xa0years\xa0of relevant\xa0working\xa0experience.Experienced\xa0and\xa0knowledgeable in digital\xa0and\xa0technology, such as AI/ML, Data Analytics\xa0and\xa0cloud/edge technologies..Enthusiastic about airport operations\xa0and\xa0making a difference to passenger experience.Self-motivated, confident\xa0and\xa0works well to help others succeed.Strong\xa0conceptual thinker, resourceful\xa0and\xa0reliable to get things done independently.Excellent written\xa0and\xa0verbal communication skills, with the ability to gather stakeholders’ buy-in\xa0and\xa0deliver management presentations.'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/solution-lead-sensors-machine-learning-lab-5762-10144312?jobId=jobstreet-sg-job-10144312§ionRank=6&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Solution Lead, Sensors & Machine Learning Lab
[{'position': 'Data Scientist (AI)'}, {'company_name': 'Mediacorp Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Description': '', 'Responsibilities': 'Lead the continuous development of advanced analytics\xa0and\xa0AI/ML capabilities with a focus of NLP\xa0and\xa0Computer\xa0Vision..Implement scalable\xa0and\xa0robust AI/ML systems computing on large volumes of datasets using a variety of open source\xa0and\xa0proprietary Data Science technologies.End to end involvement in AI/ML projects\xa0from\xa0design, data processing, development, implementation, documentation, validation\xa0and\xa0optimization.Conduct research on AI/ML publications\xa0and\xa0be able to validate\xa0and\xa0implement according to\xa0local\xa0data\xa0and\xa0business needs.Work\xa0closely with stakeholders to ensure high standards of data governance during implementation.', 'Requirements': "Bachelor's\xa0degree\xa0in Computer Science, Computer Engineering\xa0or\xa0related fields.3+\xa0years\xa0of hands on Data Scientist experience on building production-grade ML models and products.Excellence in algorithms, data structure, discrete math,\xa0and\xa0distributed computing.Excellence software development capabilities,\xa0preferably\xa0in Python.Strong\xa0knowledge on Cloud Infrastructure, Kubernetes, Docker, GPU, TensorFlow, PyTorch or other Opensource AI/ML framework\xa0and\xa0libraries.Strong\xa0knowledge on SQL\xa0and/or\xa0NoSQL database.Experience\xa0working\xa0in NLP\xa0or\xa0Computer\xa0Vision\xa0areas is a\xa0strong\xa0plus.Experience\xa0working\xa0in Media & Entertainment industry is a\xa0strong\xa0plus.Self-directed, ability to\xa0work\xa0independently\xa0and\xa0research innovative solutions to technical\xa0and\xa0business problems..", 'Thank you for your interest\xa0and\xa0application to this role. Please note that only short-listed\xa0candidates\xa0will be contacted.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199201312E', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Entertainment / Media', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\nMediacorp is Singapore’s leading media company with the most complete range of platforms, spanning television, radio, newspapers, magazines, movies, digital and out-of-home media.\n\t\t\xa0\n\n\t\tIt pioneered the development of Singapore’s broadcasting industry, with the broadcast of Radio in 1936 and Television in 1963.\n\n\t\tToday, Mediacorp has over 50 products and brands in four languages (English, Mandarin, Malay and Tamil), reaching out to all adults in Singapore every week.\n\n\t\tInitiatives in the new digital space include Internet TV-on-demand, High Definition TV broadcast and Over-the-Top (OTT) interactive services.\n\t\n\tBeyond Singapore, Mediacorp is an active regional player through co-productions in TV dramas and movies, magazines publishing, as well as Channel NewsAsia International, one of the first Asian-owned English news channels.\n\t\n\t\n\t\tOur financial and strategic relationship in the region includes International Media Corporation in Vietnam, which was set up to develop and produce television entertainment and economic news content. Mediacorp also has a stake in Singapore-based retail firm Reebonz, one of the region's fastest growing luxury online retailers and a majority stake in Cubinet Interactive, a Malaysian digital games publisher.\n\t\n\tWinner of numerous international awards and accolades including Asian Television Awards' Terrestrial Broadcaster of the Year, Mediacorp’s mission is to engage, entertain and enrich audiences by harnessing the power of creativity.\n\t\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-ai-10141717?jobId=jobstreet-sg-job-10141717§ionRank=7&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Data Engineer'}, {'company_name': 'Central Provident Fund Board'}, {'small_section': ['Novena', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Develop, test and maintain the data infrastructure, the data ingestion pipeline, data store and data processing on-premises and cloud.Design, build, deploy and manage end-to-end data pipelines for batch and stream processing that can adequately handle the needs of a rapidly growing data-driven organisation.Responsible for the building of scalable and reliable ETL processes for the ingestion and integration of large, structured and unstructured data from variety of data sources on-premises and on the cloud platforms.Implement and execute data security and data quality measurements to ensure compliance to data security and data governance policies.Implement analytic tools, analytic applications and user self-service portal for data scientists and business users\u200b.', 'Required Attributes': 'At least 5 years of relevant working experience as a data engineer on data lake.Experience with cloud computing environment and familiar with government commercial cloud.Experience working with big data ecosystems, Hadoop & Spark architecture and building data-intensive applications and pipelines.Experience in installing, configuring and supporting Linux and Microsoft Windows Servers\u200b\xa0\xa0.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Others, Others', 'Registration No.': 'T08GB0007E', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '13 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Flexible Dress Code'}, {'Company Overview': '\n\tIn CPF Board, we believe in achieving our mission and vision through motivated people who are committed to learn, upgrade and innovate.\n\n\tPeople are important. Therefore, we create opportunities for our staff to develop their potential through our well-structured training & career development programme. We have also in place an attractive remuneration and benefits package.\n\n\tWe are looking for highly motivated, talented and committed professionals to join us in our mission to enable Singaporeans save for a secure retirement. If you have the relevant working experience, take up the challenge and apply today.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10143400?jobId=jobstreet-sg-job-10143400§ionRank=8&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Assistant (Research Engineer - Machine Learning & Medical Image Analysis)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description': '', 'Purpose of the post': '', 'Qualifications': 'Bachelor’s degree or master’s degree with strong IT, engineering, computing, physics, mathematics and/or programming skills.Excellent written, oral communication skills.Prior system administration (Linux/Mac OS) or programming experience (e.g., python, MATLAB, shell) is a plus.Seek organized, reliable, self-motivated individual who is able to work effectively with others and multitask efficiently.Expected to commit for at least two years.', 'More Information': []}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-research-engineer-machine-learning-medical-image-analysis-10143294?jobId=jobstreet-sg-job-10143294§ionRank=9&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Scientist'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'About the Client': '', 'Main Duties & Responsibilities': 'Perform time series analysis and optimize forecasting accuracy using R/Python.Derive actionable insights from datasets and develop robust solutions.Build reports and dashboards using visualization tools such as Power BI, communicating insights with relevant stakeholders.Automate business processes by building machine learning models using Python.Collaborate with regional stakeholders to support analytics capabilities.', 'Experience and Qualifications': 'Bachelor’s degree in Statistics, Mathematics or any other related field of studies.0-2 years of working experience in a related role.Proficient with either R, Python or SQL.Strong knowledge of statistical time series forecasting is essential.Experience in database technologies such as SQL for querying and creation of databases.Familiarity with GCP or similar (eg. AWS, Azure) preferred.Experience with Power BI.Knowledge of machine learning tools and big data technologies – Spark, Hadoop etc is valuable.', 'Interest & Application': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-10107496?jobId=jobstreet-sg-job-10107496§ionRank=11&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
About the Client
[{'position': 'Research Fellow (Machine Learning in Chemical Engineering)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description': '\xa0The Research Fellow will work closely with the Principal Investigator,\xa0Dr. WU Zhe, on several research projects of optimization of chemical and manufacturing processes through machine learning tools.The Research Fellow will help to develop both theoretical and simulation study of machine-learning-based control and optimization algorithms to chemical processes..', 'Job Requirements': '', 'For Research Fellow Position:': 'A PhD degree in a relevant area, e.g., Control Engineering, Chemical Engineering, Automation, Systems Engineering, Computer Science or Applied Mathematics;.Good publication record;.Experienced in advanced process control, machine learning, and programming languages (e.g., python, Matlab, C++, etc).This position is available from July 2022 to December 2022.'}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-in-chemical-engineering-10114581?jobId=jobstreet-sg-job-10114581§ionRank=12&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Scientist | Permanent | Regional'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Responsibilities:': 'Improve time-series statistical modeling forecasting accuracy over an 18 month horizon using R and Python on the Google Cloud Platform.Build machine learning models using Python to automate business processes.Analyze structured and unstructured datasets to discover trends and patterns.Ability to dig-in, understand the data, and to use creative thinking and problem-solving skills to design scalable and robust solutions.Present complex information using data visualization techniques through dashboards and reporting such as Microsoft Power BI..', 'Requirements:': "Bachelors or master's degree in Statistics or Mathematics.Experience in Python.Experience in time series, with a strong understanding and knowledge in time series forecasting; univariate, multivariate, and ensemble modeling..Experience with database technologies (SQL or others) in querying, creating databases, stored procedures, etc.Experience in Google Cloud Platform or similar (AWS, Microsoft Azure).Experience with Microsoft Power BI.", 'Next Step:': '', 'expected package': '', 'reasons for leaving': '', '.': '', '[email\xa0protected]': []}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-%7C-permanent-%7C-regional-10090254?jobId=jobstreet-sg-job-10090254§ionRank=13&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Engineer'}, {'company_name': 'Olea Global Pte. Ltd.'}, {'small_section': ['Central - Others', 'SGD\xa04,000 - SGD\xa06,000', 'Posted on 3-Nov-22']}, {'Role summary:': '', 'Role requirements:': 'Source data and exploration of alternate external data sources.Design data consumption processes.Create and manage reference data.Update data schema design and dictionary documentation.Build data pipeline in collaboration with our technology team.Manage and monitor the health of existing data pipeline.Understand upstream platform changes and its impact to downstream data systems.Update existing or build new ETL as necessary.Perform UAT and UVT for identified impact to the downstream data systems.Build analytics data views using SQL for consumption by business.Assist analytic team on their data requirements for modelling, and reporting.Partner with internal and external teams to create and build data products and analytic solutions.', 'Role specific competencies and traits:': 'Strong analytical mindset.Ability to approach any problem in a logical manner.Good reasoning and problem-solving skills.Experience in using AWS technologies e.g., Amazon S3.Experience in using open-source projects e.g., Apache Airflow, Presto.Experience in building data pipelines for structured and unstructured dataset.Experience in building web scrapping solutions.Experience in integrating internal system with external API.Good understanding of relational and time series data database design.Must be proficient with SQL, Python, Git, JIRA.(training, licences, memberships, and certifications):.Bachelor or master’s degree with technical degree preferred (statistics, mathematics, computer science, etc.).Any certification related to data engineering will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '202138286N', 'Company Size': '1 - 50 Employees', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)', 'Specific Location': 'Marina One'}, {'Company Overview': 'Olea is a fully digitized trade finance platform that brings businesses requiring supply chain financing with investors who invest in trade finance assets as an alternative asset class. It is a joint venture between Standard Chartered Bank and Linklogis, a leading technology company in China. It combines Standard Chartered’s expertise in trade, risk management and investor network with the technological proficiency of Linklogis. Headquartered in Singapore, Olea’s ambition is to become a leading global platform in empowering sustainable trade. Visit www.olea.net to find out more.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10130492?jobId=jobstreet-sg-job-10130492§ionRank=14&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Role summary:
[{'position': 'Data Scientist, Data Analysis Manager'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'About Us': '', 'Job Description': 'Provide customized research and analysis to identify, qualify, cultivate, solicit and steward donors and prospects.Conduct financial or biographical research and compose profiles on individuals, corporations and foundations to identify, qualify, and prioritize prospective donors; independently research, select sources for research and ensures accuracy of reports.Conduct web-based research of publicly available information and monitor news and publicly-available information from professional publications, press releases and major newspapers on prospects and potential prospects to provide comprehensive reports of personal, financial and relationship based information and for solicitation strategy recommendations.Work collaboratively with and as a liaison to fundraisers and senior leaders, work to increase the pool of potential leadership gift donors and provides highly customized and strategic information that helps build increase in giving..Analyze prospective donor information and succinctly present results as reports, charts, tables, dashboards and other visual aids.Process ad-hoc requests for research as they are received and ensure all requests are completed accurately and in a timely manner.Evaluate research tools and emerging technologies and keep abreast of research trends and data management trends in the field of prospect research and management.Assist in developing best practices in prospect research and management in order to recommend ways to create efficiencies..Utilizes and broadens knowledge of prospect research methodologies, sources, and results.', 'Qualifications': 'Proficiency in using Business Intelligence tools (e.g. Power BI, Tableau or Qlik Sense).Knowledge of database, ETL and data API concepts..Proficiency in statistical computer languages (R, Python, MATLAB) to manipulate data and draw insights from large data sets..Experience using in one or more of the following techniques/methods: statistical and predictive modelling techniques, clustering and classification techniques, text analytics, and optimization methods..Knowledge of a second programming language (e.g. C++, C#/.NET, Java) is highly favourable..', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-data-analysis-manager-10114702?jobId=jobstreet-sg-job-10114702§ionRank=15&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
About Us
[{'position': 'Research Fellow (Signal Processing and Machine Learning), R00003631 T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted 11 hours ago']}, {'Job Responsibilities': 'Develop signal processing and machine learning algorithms and methods.Perform software/hardware implementation and empirical studies.Prepare reports and presentations.Conduct project presentations and seminars.Help to supervise graduate students and contribute to proposal writing.Assist the PI in various research admin tasks.', 'Job Requirements': 'Ph.D. in Electrical Engineering, Computer Science, Statistics or other related fields.Solid Mathematical skills.Background in graph signal processing, probability theory and statistical signal processing.Experience in implementing algorithms for machine learning and data analytics.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-signal-processing-and-machine-learning-r00003631-t-10096929?jobId=jobstreet-sg-job-10096929§ionRank=17&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Engineer (Machine learning algorithms for drone surveillance) 5GTL #Immediate'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Participate in and manage the research project with Principal Investigator (PI), Co-PIs and the industry collaborator to ensure all project deliverables are met..Design, optimization and test the ML algorithms in the network to ensure the end-to-end performance metrics are met under different drone surveillance scenarios..Develop North-bound APIs for dynamic network orchestration and test overall model performance under high-speed switching scenarios..Carry out Risk Assessment, and ensure compliance with Work, Safety and Health Regulations..Research on existing hardware technologies and coordinate procurement and liaison with vendors/suppliers..Work independently, as well as within a team, to ensure proper operation and maintenance of equipment..', 'Job Requirements:': 'Have relevant competence in networking with open network switch configuration..Experience in network configuration and maintenance on Linux-based devices..Working knowledge of SDN technologies and/or machine learning algorithms.REST APIs for north-bound communication will be an advantage..Knowledge in virtualization technologies (Hypervisor, VMware NSx) will be an advantage..Have a relevant degree in Communication Networks or equivalent. Possessing a Master’s or PhD degree will be advantageous.Knowledge of Python, Java and R will be advantageous..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-algorithms-for-drone-surveillance-5gtl-immediate-10104718?jobId=jobstreet-sg-job-10104718§ionRank=18&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist, Data Analysis Mgr.'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'About Us': '', 'Job Description': 'Provide customized research and analysis to identify, qualify, cultivate, solicit and steward donors and prospects.Conduct financial or biographical research and compose profiles on individuals, corporations and foundations to identify, qualify, and prioritize prospective donors; independently research, select sources for research and ensures accuracy of reports.Conduct web-based research of publicly available information and monitor news and publicly-available information from professional publications, press releases and major newspapers on prospects and potential prospects to provide comprehensive reports of personal, financial and relationship based information and for solicitation strategy recommendations.Work collaboratively with and as a liaison to fundraisers and senior leaders, work to increase the pool of potential leadership gift donors and provides highly customized and strategic information that helps build increase in giving..Analyze prospective donor information and succinctly present results as reports, charts, tables, dashboards and other visual aids.Process ad-hoc requests for research as they are received and ensure all requests are completed accurately and in a timely manner.Evaluate research tools and emerging technologies and keep abreast of research trends and data management trends in the field of prospect research and management.Assist in developing best practices in prospect research and management in order to recommend ways to create efficiencies..Utilizes and broadens knowledge of prospect research methodologies, sources, and results.', 'Qualifications': 'Proficiency in using Business Intelligence tools (e.g. Power BI, Tableau or Qlik Sense).Knowledge of database, ETL and data API concepts..Proficiency in statistical computer languages (R, Python, MATLAB) to manipulate data and draw insights from large data sets..Experience using in one or more of the following techniques/methods: statistical and predictive modelling techniques, clustering and classification techniques, text analytics, and optimization methods..Knowledge of a second programming language (e.g. C++, C#/.NET, Java) is highly favourable..', 'More Information': []}, {'Career Level': 'Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '7 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-data-analysis-mgr.-10111289?jobId=jobstreet-sg-job-10111289§ionRank=19&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
About Us
[{'position': 'Azure Data Engineer'}, {'company_name': 'SMRT Corporation Ltd'}, {'small_section': ['Singapore', 'Posted 11 hours ago']}, {'Job Purpose': '', 'Responsibilities': 'Understand the data landscape to formulate and complete end-to-end data strategy that includes data gathering, data processing, analysis, ongoing scaled deliverables, and presentations to facilitate decision-making and forward planning.\xa0.Identify opportunities for data acquisition, work with system owners to automate data connection..Analyze and organize raw data, combine raw information from different sources, build data systems and data pipelines, perform extract transform and load (ETL) to prepare for prescriptive and predicted modeling.\xa0.Able to analyze, implement and integrate the right services in cloud based on different data formats (structured, semi-structured and unstructured).Evaluate business needs and objective, interpret trends, patterns, and conduct complex data analysis and report on results..Build algorithms and prototypes, explore ways to enhance data quality and reliability; Develop analytical tools and programs.Collaborate with data scientists and architects on several projects..', 'Qualifications & Work Experience': 'Degree in Computer Science, IT, or similar engineering field; a Master is a plus.Previous experience as a data engineer, or in a similar role..Data engineering certification is a plus..', 'Skills': '', 'Technical skills include:': 'Strong analytical skills with the ability to collect, clean, organize, analyze and disseminate significant amounts of information with attention to detail and accuracy.Technical expertise with data models, data mining, and segmentation techniques.Knowledge of programming languages (Python, SQL, R & Java).Experience in Azure Data Factory.Expertise in working with Dedicated and Serverless SQL pool in Azure Synapse Analytics.Design, Build and Secure API Endpoints and follow Industry best practices to manage APIs.Experience in Azure Functions, Azure IOT Hub, and Azure API Management.Knowledge in other Azure Cloud Technologies, (i.e., Azure Analysis Service (AAS), Azure SQL DB, Event Hub, Azure Logic Apps and ARM Templates).Familiarity with the technology stack available in the industry for metadata management: Data Governance, Data Quality, MDM, Lineage, Data Catalog, etc.Hands-on experience with SQL database design.Great numerical and analytical skills, experience with data visualisation tools such as Power BI, Tableau, Qliksense, etc., would be an advantage.Nice to have skills: Containerization, Kubernetes, COSMOS DB, Spark SQL, and Azure Data Bricks.', 'Generic skills include:': 'Critical thinking and problem-solving skills.Team Player.Good time-management skills.Great interpersonal and communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200001855H', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Transportation / Logistics'}, {'Company Overview': '\nSMRT Corporation Ltd (SMRT) is a public transport services provider. Our primary business is to manage and operate train services on the North-South Line, the East-West Line, the Circle Line, the new Thomson East-Coast Line and the Bukit Panjang Light Rail Transit. This is complemented by our bus, taxi and private hire vehicle services.\n\n\tAn exciting and rewarding career is waiting for you at SMRT. Join us and embark on a journey that matters. You Matter – we take care of you and your well-being. Your Work Matters – your ideas and contributions work towards building the future of our transport system and create positive impacts to the community. Your Development Matters – we offer diverse careers and learning opportunities for our people to grow you to the fullest of your potential.\n\n\tCome onboard the SMRT journey today.'}, {'url': 'http://www.jobstreet.com.sg/en/job/azure-data-engineer-10098890?jobId=jobstreet-sg-job-10098890§ionRank=20&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Job Purpose
[{'position': 'Research Engineer - (Machine Learning/Computer Vision) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Conduct research on deep learning and visual scene understanding.Develop novel algorithms for visual recognition and scene understanding.Develop computer vision systems.Write technical reports and research papers.', 'Job Requirements:': 'Master’s degree in Computer Science, Computer Engineering or related subjects.Research experience in visual recognition, scene understanding and deep learning.Excellent computer programing skills for machine learning and computer vision systems.Familiar with deep learning frameworks such as PyTorch.Strong responsibility for research/work.We regret that only shortlisted candidates will be notified..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-computer-vision-urgent-10135667?jobId=jobstreet-sg-job-10135667§ionRank=21&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Machine Learning (Vision) Engineer'}, {'company_name': 'Ross Digital Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Senior Machine learning (Vision) Engineer ': '', 'The Role: ': '', ':': '', 'About You: ': '', 'About Us': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201705661E', 'Company Size': '1 - 50 Employees', 'Industry': 'Computer / Information Technology (Software)'}, {'Company Overview': 'Founded by a team of senior level executives from Fortune 500 companies, our company is an F&B concept powered by robotics & automation. We are on a mission to innovate a new customer experience by offering a variety of beverages. From coffee to nitro tea to cocktails, our innovative robotics will deliver quality drinks with precision and speed. Funded by two of Singapore’s top MNCs and a leading SEA conglomerate, we’ve already built and commercialized our robotic café/bar across China. Now, we’re currently building our Singapore presence.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-machine-learning-vision-engineer-10076767?jobId=jobstreet-sg-job-10076767§ionRank=22&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Senior Machine learning (Vision) Engineer
[{'position': 'Data Engineer'}, {'company_name': 'SBS Transit Limited'}, {'small_section': ['Singapore', 'Posted 5 hours ago']}, {'Responsibilities:': 'Design and develop data pipelines and infrastructure to support analytics projects for optimal extraction, transformation and loading of data from various data sources.Management of large volumes of structured and unstructured data and transforming it into useable form for analytics purposes.Automate data collection and processing for analytical modelling input.Maintain and improve the quality of datasets.Optimisation of algorithms for production deployment.Identify opportunities for internal process improvement via data solutions..', 'Requirements:': '4 years in developing data engineering solutions, preferably with production deployment experience, using tools such as Python, SQL, Apache Spark, Apache Hadoop, Apache Kafka, Docker, Git, Shell, Bash or equivalent.Background in computer science, data analytics or a relevant field. Degree or higher preferred, but candidates with the relevant work experience and certifications will be considered.Experience and knowledgeable of basic model and dashboard development (backend), building big data infrastructure, project management, data governance concepts.Independent, intellectually curious, creative, diligent, and a holistic thinker.Working knowledge of building pipelines involving real-time streaming data, big data, cloud technologies or equivalent.Experience/knowledge of using Splunk and Robotic Process Automation (RPA) solutions like UIPath\xa0.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '199206653M', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '12 days', 'Industry': 'Transportation / Logistics'}, {'Company Overview': '\n\tSBS Transit is a leading public transport operator. It is a member of the ComfortDelGro Group which operates in seven countries around the world. Our people are our strongest driving force and their welfare and development are important to us. We listen to what they have to say and we are constantly grooming them to their fullest potential. Join the SBS Transit family today and let us help you grow.\n\n\tBy submitting this application for this position, you acknowledge that you have read the Data Protection Policy for Job Applicants (the “Policy”) of SBS Transit Ltd and its subsidiaries, affiliates and related corporations (‘SBST”) and consent to:\n\t\n\t\ta.\xa0\xa0\xa0 The collection, use and disclosure of your personal data by SBST for the purposes of your application and potential employment with SBST and the purposes set out in the Policy: and\n\tb.\xa0\xa0\xa0 SBST’s retention of your personal data for two years for consideration of future job opportunities (where applicable) form from the date of application submission.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10147386?jobId=jobstreet-sg-job-10147386§ionRank=24&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Engineer - (Machine Learning) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'SGD\xa03,800 - SGD\xa04,700', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Conduct research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data processing & mining, and perform analytics for future ATM systems.Provide support on the implementation and verification of an AI-based Digital Tower Control assistance system.', 'Job Requirements:': 'Bachelor’s degree in Computer Science/Aerospace Engineering/Applied Mathematics.Deep understanding and experience in the theory and application of AI and Machine Learning techniques.Programming Experience: knowledge of Python, Matlab, R and/or C++.Good English writing and communication skills.Independent and team player.Preferred Job Requirements:.Minimum 1 year of related research experience.Demonstrated project experience related to Airport or Air Traffic Management.Software Engineering Experience: Understanding and experience of sound Software Engineering practices, including data management, software version control and database design.Understanding of statistical methods and/or probability theory.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-urgent-10135668?jobId=jobstreet-sg-job-10135668§ionRank=26&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Analyst/ Associate/ Fellow in Machine Learning'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Research Analyst/ Associate/ Fellow in Machine Learning and Artificial Intelligence (ML/AI)': "Design research projects in close collaboration with the Institute's Directors (Prof. Sumit Agarwal / A.Prof Johan Sulaeman / A.Prof Zhang Weina) and Research Affiliates.Take ownership and responsibility for the successful delivery of research projects, ensuring they are completed within the required deadline and allocated budget, and meeting/exceeding project specifications and targets.Participate in pre-project activities such as identifying required resources to ensure project completion including staffing and organizational needs of the project team, and preparing high-level project plans with project timeline and resource requirements.Development of data analysis frameworks..Plan, supervise and perform (if necessary) the development of supervised and unsupervised machine learning tools to process information from various data sources, including commercial databases and alternative, non-traditional datasets..Plan, supervise and perform (if necessary) the generation of impact measures using machine learning, in collaboration with the Institute's Directors and other Research Fellows..Monitor progress of research projects and provide necessary interventions to ensure smooth completion of each project.Manage and coordinate project deliverables, ensuring their quality.Manage industry partners' expectation by understanding their needs and providing realistic expectations and scope of each project.Manage the collaborations with research and industry stakeholders, including providing periodic progress updates and deliverables for grant funding body or project sponsors.Preparation of results for industry communications, presentations, and academic articles for journal publications.Guide, mentor, and supervise research associates on the project team.Work closely with the rest of the SGFIN team to support SGFIN's activities and objectives.Academic background in the following subjects is preferred: computing, information systems, economics, business, finance, or related disciplines. A bachelor's degree is required, a master's degree in one of these subjects is preferred, with a PhD degree required for the Research Fellow position..Basic understanding of financial sector (banks and other financial institutions), financial markets, corporate financial statements, and credit risk analysis, is preferred..A thorough knowledge of the research field of machine learning and artificial intelligence is highly preferred..Programming skills, including knowledge of machine learning and artificial intelligence processes and tools, are highly desired, along with experience in conducting and supporting research and data analysis of research projects..Database management experience is desired..Proactive in problem solving..Good time management and planning skills with a commitment to delivery..Strong project management skills, with ability to manage several projects concurrently..Strong delivery management experience, with proven track records in managing and steering projects towards smooth execution and on time delivery..Adaptive to change with a positive work attitude..Enthusiastic team player who is self-driven, committed, and willing to take initiative..Strong interpersonal and leadership skills, effective in coordinating stakeholders, fostering teamwork, and leading high performance project team..Strong verbal and interpersonal communication skills, along with written communication skills."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-analyst-associate-fellow-in-machine-learning-10106592?jobId=jobstreet-sg-job-10106592§ionRank=27&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Research Analyst/ Associate/ Fellow in Machine Learning and Artificial Intelligence (ML/AI)
[{'position': 'Data & AI Solution Lead, Public Sector #Urgent'}, {'company_name': 'IBM Singapore Pte. Ltd'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Introduction': '', 'Your\xa0Role\xa0and\xa0Responsibilities': '', 'Job Description:': '', 'Job Requirements:': ''}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197501566C', 'Company Size': '501 - 1000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts), Flexible Benefit Plan'}, {'Company Overview': '\n\tIBM is a leading cloud platform and cognitive solutions company. Restlessly reinventing since 1911, we are the largest technology and consulting employer in the world, with more than 380,000 employees serving clients in 170 countries. With Watson, the AI platform for business, powered by data, we are building industry-based solutions to real-world problems. For more than seven decades, IBM Research has defined the future of information technology with more than 3,000 researchers in 12 labs located across six continents. For more information, visit www.ibm.com.\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-ai-solution-lead-public-sector-urgent-10129928?jobId=jobstreet-sg-job-10129928§ionRank=28&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
Introduction
[{'position': 'Data Scientist'}, {'company_name': 'Alstom'}, {'small_section': ['Kallang', 'Posted on 2-Nov-22']}, {'PURPOSE OF THE JOB': 'Participate in R&D and deployment of the next generation data-driven solutions for Mobility, within a lean startup pathway and in collaboration of engineering & mobility experts, data engineers, software engineers, HMI designer and MLOps/DevOps..Singapore Innovation project will be main target among all projects\xa0.', 'MAIN RESPONSIBILITIES': '', 'Key accountabilities:': 'Define, develop, manage & sustain the data model, including machine learning, AI, NLP or simulation, such as:.Design technical solution for data-driven approach, including engineering and financial impacts.Build feature extraction model and programming.Build learning models, including unsupervised predictive models and simulation tool.Assess and enhance the data quality of incoming data and model responses.Apply Data management practices.Build report and explanatory materials to share with engineering experts.Evaluate the opportunities from new mathematical and machine learning technologies.Apply a strong testing and quality assurance practices.', 'Performance measurements:': 'OTD.Developments QCD.', 'MAIN REQUIRED COMPETENCES': '', 'Mandatory:': 'Engineering or master’s degree supplemented by extensive training in data mining and/or machine learning.', 'Desirable:': [], 'Mandatory:\xa0': 'Experience with PHM or Predictive Maintenance.Experience in Traffic modelling.Experience in NLP.Experience in Video analytics.Experience in Sequence mining.Experience in log analytics.Experience with git and release management.', 'Competencies & Skills': 'Proven track record for designing stable solution, testing and debugging..Demonstrated teamwork and collaboration in a professional setting.Proven capabilities with worldwide teams.Fluent English..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199802217D', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '26 days', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'We create smart innovations to meet the mobility challenges of\xa0today and tomorrow. We design and manufacture a complete range of transportation systems, from high-speed trains to electric buses\xa0and driverless trains, as well as\xa0infrastructure, signalling and digital mobility solutions. Joining us means\xa0joining\xa0a truly global community of\xa0more than\xa075\xa0000\xa0people dedicated to solving real-world mobility challenges and achieving international projects with sustainable local impact.\xa0\xa0\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-10077051?jobId=jobstreet-sg-job-10077051§ionRank=29&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing'}]
PURPOSE OF THE JOB
[{'position': 'Research Fellow (Machine Learning and Human Machine Interaction) - [R00008644] #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science & Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on image/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-machine-interaction-%5Br00008644%5D-urgent-10138967?jobId=jobstreet-sg-job-10138967§ionRank=33&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Engineer | Permanent'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Responsibilities': "To support and ensure the smooth running of the data infrastructure and fine-tuning of the database..Design, develop, implement, support and maintain old and new data models, data warehouses, cubes, ETL packages and core data infrastructure crucial to the needs of the business..Retrieve, cleanse, validate and analyse data using different techniques in order to retain the data integrity and availability for Business Supports..Work closely with internal stakeholders to collect and understand business requirements then build, design and manage interpret solutions for either reporting or dashboard solutions required.Transform business requirement to data requirement, data analysis and profiling.Design data models for use cases and data warehousing.Perform data cleaning and ensure data quality and integrity in data warehouse.Root cause analysis of data issues and coming up with stable long terms solutions.Support data store's inbound and/or outbound development.Identify data from different source systems and build the target data models.", 'Requirements': 'Diploma/BS in any relevant field (e.g., Statistics, mathematics, computer science or information technology)..At least 3-5 years relevant working experience as Data Engineer/Business Intelligence..Experience in on-premise and cloud technology.Highly proficient in composing, maintaining and optimising complex SQL queries..Strong analytical skills with the ability to collect, organize, analyze, and disseminate significant amounts of information with attention to detail and accuracy..Strong knowledge of and experience on data management, structure, retrieval and ETL processes (structured and unstructured data source.Familiarity with programming languages such as Java, Python and its libraries.', 'Next Step:': '', 'expected package': '', 'reasons for leaving': '', '.': '', '[email\xa0protected]': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-%7C-permanent-10092178?jobId=jobstreet-sg-job-10092178§ionRank=34&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'AI Engineer for AI Singapore (Research)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Description': '', 'Duties & Responsibilities': 'You will participate in the full research to deployment pipeline and help conceptualize, develop research experiments, and then implement the systems to execute these experiments.\xa0.You will work with a team and interact closely with both the academic researchers and the industry partners.\xa0.You will attend reading groups and seminars, master research techniques and engineering practices, and design research tools and experimental testbeds.\xa0.You will apply state-of-the-art AI algorithms, explore new solutions, and build working prototypes. You will also learn to deploy the systems and solutions at scale..', 'Qualifications': "A Bachelor's or Master's degree in AI, computer science, or related disciplines;.Strong system-building skills and keen interests in working with emerging technologies and frameworks;.Solid background in AI and machine learning;.Past experiences in:.Open source DevOps tools and software as a service solutions;.Development and implementation of AI and machine learning algorithms;.Related work at a commercial company or industrial research lab.Good communications skills in both written and verbal English;.An adventurous spirit and willingness to learn and experiment with new ideas and new domains.\xa0\xa0."}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-engineer-for-ai-singapore-research-10108246?jobId=jobstreet-sg-job-10108246§ionRank=35&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Engineer, - (Machine Learning/Computer Vision), - [R00005729]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Conduct research on deep learning and visual scene understanding.Develop novel algorithms for visual recognition and scene understanding.Develop computer vision systems.Write technical reports and research papers.', 'Job Requirements:': 'Master’s degree in Computer Science, Computer Engineering or related subjects.Research experience in visual recognition, scene understanding and deep learning.Excellent computer programing skills for machine learning and computer vision systems.Familiar with deep learning frameworks such as PyTorch.Strong responsibility for research/work.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-computer-vision-%5Br00005729%5D-10076113?jobId=jobstreet-sg-job-10076113§ionRank=36&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow - (Air Traffic Management/Machine Learning) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Undertake research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data mining, doing analytics, and building high quality strategic planning system for future for Air Traffic Management systems.Provide expertise on algorithmic concepts for the broader applied analytics of ATM and inspire the adoption of advanced analytics and data science across the entire breadth of ATM system..', 'Job Requirements:': 'PhD Degree in Computer Science/Aerospace Eng/Operation Research.Good programming skill (Python / MATLAB / C++).Good English writing and communication skills.Independent and team player.Good publication records.Demonstrated relevant experience in Artificial Intelligence / Machine Learning.Publication track record in peer-reviewed and reputed journals/conferences related to Artificial Intelligence / Machine Learning / AI&ML applied to ATM.Hands-on experience in using machine learning libraries such as Scikit-learn, etc..Hands-on experience in using deep learning library (either TensorFlow or PyTorch).Experiences in at least two of the following areas is a strong plus:.Tempo-spatial data mining and analysis,.Time series analysis and prediction,.Generative models.Reinforcement Learning and/or Inverse Reinforcement Learning.Probabilistic Modeling / Bayesian Machine Learning.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-air-traffic-management-machine-learning-urgent-10135616?jobId=jobstreet-sg-job-10135616§ionRank=37&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Engineer'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Overview': '', 'Job Responsibilities': 'Identify suitable data structures based on business needs to ensure availability and accessibility of data..Determine technical system requirements based on data needs..Keep abreast of latest technologies and products in database and data processing software, and technologies..Build scalable data pipelines to extract, transform, load and integrate data..Develop codes and scripts to process structured and unstructured data in real-time from a variety of data sources..Test data pipelines for scalability and reliability to process high data volume, variety and velocity..Implement and monitor data security and privacy measures on data solutions..Consolidate and create data storage solutions for storage and retrieval of information..Monitor data system performance..Assist in the integration of data systems with existing infrastructure..Develop tools to improve data flows between internal and/or external systems and the data warehouse..Automate the data collection and analysis processes, data releasing and reporting tools..Test data system configurations to increase efficiency..', 'Requirements': "Bachelor's or master's degree in Computer Science, Computer Engineering, Information Systems, Information Engineering, or equivalent.At least 5 years of data engineering experience..Experience in building and optimizing data pipelines, architectures and data sets..Experience working with stakeholders to identify business needs and analytics opportunities."}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10140479?jobId=jobstreet-sg-job-10140479§ionRank=39&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Job Overview
[{'position': 'Data Scientist (life sciences) #Urgent'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Data Scientist (Life Sciences)': '', 'Responsibilities:': 'In-depth data analysis\xa0with machine learning and statistical methods.Identify novel DNA/RNA/ncRNA biomarkers.Develop models for multi-marker diagnostic test.Facilitate the design and execution of the experiment, the process set up and quality control set up with statistical insights\xa0.', 'Requirements:': 'MSc or PhD in life science or equivalent..Experienced in machine learning or other bioinformatics tools..Experienced in data related to (proteomics, transcriptomics, genomics, metabolomics, lipidomics, and epigenomics etc.).Past publication record as first-author in relevant scientific journals..', 'To Apply:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-life-sciences-urgent-10108861?jobId=jobstreet-sg-job-10108861§ionRank=41&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Data Scientist (Life Sciences)
[{'position': 'Senior Data Scientist'}, {'company_name': 'Mediacorp Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Job Responsibilities': 'Serve as primary source of data insights supporting internal\xa0and\xa0external constituencies.Analyse\xa0and\xa0translate data findings into meaningful, actionable insights – including synthesising relevant insights\xa0from\xa0different customer touch points\xa0and\xa0data sources.Lead, design\xa0and\xa0implement quantitative analytical frameworks, including scalable predictive models, customer segmentation\xa0and\xa0advertising optimisation that improve business performance\xa0and\xa0customer engagement.Institute\xa0and\xa0adopt best practices in data science, platforms\xa0and\xa0approaches..Establish internal organisational standards and benchmarks.Work\xa0with other teams in Mediacorp to understand business needs, document data and data integration requirements, and resolve conflicting business/data architecture rules. Ensure compliance with internal customer contact governance policies and drive closed-loop measurement through smart data capture..Become an internal authority on Mediacorp’s data tools\xa0and\xa0resources.Support ad-hoc business intelligence\xa0and\xa0other strategic initiatives.', 'Requirements': 'PhD\xa0or\xa0MS\xa0degree\xa0in Statistics, Mathematics, Machine Learning, Operations Research, Computer Science\xa0or\xa0related field..Minimum 5\xa0years\xa0hands-on experience in data science, including developing and productionising data science models.Demonstrated expertise in developing\xa0and\xa0implementing a full range of analytical techniques to address commercial challenges. Proficiency in at least one statistical analysis tool..Demonstrated experience with distributed databases\xa0and\xa0query\xa0languages. Proficiency in at least one programming\xa0language\xa0(preferably\xa0Java, C++, Python)..Must possess exceptional business judgment to identify core business objectives; synthesise\xa0and\xa0interpret disparate quantitative information,\xa0and\xa0develop commercial insights for key stakeholders.', 'Thank you for your interest\xa0and\xa0application to this role. Please note that only shortlisted\xa0candidates\xa0will be contacted.': []}, {'Career Level': 'Senior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199201312E', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Entertainment / Media', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\nMediacorp is Singapore’s leading media company with the most complete range of platforms, spanning television, radio, newspapers, magazines, movies, digital and out-of-home media.\n\t\t\xa0\n\n\t\tIt pioneered the development of Singapore’s broadcasting industry, with the broadcast of Radio in 1936 and Television in 1963.\n\n\t\tToday, Mediacorp has over 50 products and brands in four languages (English, Mandarin, Malay and Tamil), reaching out to all adults in Singapore every week.\n\n\t\tInitiatives in the new digital space include Internet TV-on-demand, High Definition TV broadcast and Over-the-Top (OTT) interactive services.\n\t\n\tBeyond Singapore, Mediacorp is an active regional player through co-productions in TV dramas and movies, magazines publishing, as well as Channel NewsAsia International, one of the first Asian-owned English news channels.\n\t\n\t\n\t\tOur financial and strategic relationship in the region includes International Media Corporation in Vietnam, which was set up to develop and produce television entertainment and economic news content. Mediacorp also has a stake in Singapore-based retail firm Reebonz, one of the region's fastest growing luxury online retailers and a majority stake in Cubinet Interactive, a Malaysian digital games publisher.\n\t\n\tWinner of numerous international awards and accolades including Asian Television Awards' Terrestrial Broadcaster of the Year, Mediacorp’s mission is to engage, entertain and enrich audiences by harnessing the power of creativity.\n\t\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-scientist-10130746?jobId=jobstreet-sg-job-10130746§ionRank=42&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow (Membranes or machine learning for membranes)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-membranes-or-machine-learning-for-membranes-10087235?jobId=jobstreet-sg-job-10087235§ionRank=43&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
[{'position': 'Project Officer, - [Machine Learning] - [R00008199] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Key Responsibilities:': 'Research on federated learning for industry 4.0.Implement deep learning algorithms.Collaborate with other team members for more efficient outcome delivery.Perform administrative works assigned by the PI like documentation, etc.', 'Job Requirements:': 'Bachelor or above in computer science/engineering or electrical/electronic engineering..Good programming ability with python.Experience with deep learning algorithms and frameworks, like TensorFlow and Pytorch.Ability to read and write research papers and technical reports.Fluent in English (written and spoken).'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-%5Bmachine-learning%5D-%5Br00008199%5D-jobsthatmatter-10130605?jobId=jobstreet-sg-job-10130605§ionRank=44&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Scientist in Computer Vision for human action understanding, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 11 hours ago']}, {'Job requirements:': 'PhD degree in Computer Vision or Machine Learning (or related discipline) with a strong record of accomplishment in CVPR, ECCV, ICCV, NIPS, ICML, ICLR, AAAI, IJCAI or journal papers in IEEE TPAMI, IJCV, JMLR, Pattern Recognition, IEEE TIP and related. PhDs with a record of accomplishment of the above-mentioned are encouraged to apply..Strong programming skills in python (Pytorch, Tensorflow)..Excellent computer vision and machine learning skills are required..Excellent problem solving skills..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-in-computer-vision-for-human-action-understanding-ihpc-10096322?jobId=jobstreet-sg-job-10096322§ionRank=45&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Job requirements:
[{'position': 'AI Architect (Digital)'}, {'company_name': 'Mediacorp Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Description': '', 'Key Responsibilities': 'Partner\xa0and\xa0collaborate with both Internal\xa0and\xa0External stakeholders to dive deep into data, doing analysis, discovering root causes,\xa0and\xa0designing\xa0long-term\xa0AI/ML solutions & Roadmaps.Drive the delivery of AI/ML project\xa0from\xa0beginning to end, including understanding business requirements, developing architecture, aggregating data, exploring data, building & validating predictive models, and deploying completed models to deliver business impact.Drive technical discussions\xa0and\xa0scoping meetings to establish key features, milestones,\xa0and\xa0deliverables..Provide direct technical expertise for AI/ML related opportunities.Leverage knowledge\xa0and\xa0experience to solve cross-organizational issues\xa0and\xa0remove blockers..', 'Requirements': "Bachelor's\xa0degree\xa0in Computer Science, Computer Engineering, AI\xa0or\xa0related fields.5+\xa0years\xa0of experience with architecture, design\xa0and\xa0implementation of AI/ML technologies.Technical depth in shaping\xa0and\xa0designing AI/ML architectures\xa0and\xa0infrastructure.Familiar with Cloud Infrastructures, Kubernetes, Docker, GPU, TensorFlow, Pytorch & other Opensource AI/ML framework\xa0and\xa0libraries.Experience with Programming\xa0languages\xa0(Python, Java, etc)\xa0and\xa0database (SQL & NoSQL).Strong\xa0stakeholder management skills with ability to distil information\xa0and\xa0communicate directly with stakeholders..Experience\xa0working\xa0in a fast-paced, results-oriented team..Experience\xa0working\xa0in Media & Entertainment industry is a\xa0strong\xa0plus.", 'Thank you for your interest\xa0and\xa0application to this role. Please note that only short-listed\xa0candidates\xa0will be contacted.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199201312E', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Entertainment / Media', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\nMediacorp is Singapore’s leading media company with the most complete range of platforms, spanning television, radio, newspapers, magazines, movies, digital and out-of-home media.\n\t\t\xa0\n\n\t\tIt pioneered the development of Singapore’s broadcasting industry, with the broadcast of Radio in 1936 and Television in 1963.\n\n\t\tToday, Mediacorp has over 50 products and brands in four languages (English, Mandarin, Malay and Tamil), reaching out to all adults in Singapore every week.\n\n\t\tInitiatives in the new digital space include Internet TV-on-demand, High Definition TV broadcast and Over-the-Top (OTT) interactive services.\n\t\n\tBeyond Singapore, Mediacorp is an active regional player through co-productions in TV dramas and movies, magazines publishing, as well as Channel NewsAsia International, one of the first Asian-owned English news channels.\n\t\n\t\n\t\tOur financial and strategic relationship in the region includes International Media Corporation in Vietnam, which was set up to develop and produce television entertainment and economic news content. Mediacorp also has a stake in Singapore-based retail firm Reebonz, one of the region's fastest growing luxury online retailers and a majority stake in Cubinet Interactive, a Malaysian digital games publisher.\n\t\n\tWinner of numerous international awards and accolades including Asian Television Awards' Terrestrial Broadcaster of the Year, Mediacorp’s mission is to engage, entertain and enrich audiences by harnessing the power of creativity.\n\t\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-architect-digital-10140367?jobId=jobstreet-sg-job-10140367§ionRank=46&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'AI Engineer (AIAP) for AI Singapore #Immediate'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-engineer-aiap-for-ai-singapore-immediate-10115115?jobId=jobstreet-sg-job-10115115§ionRank=48&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
[{'position': 'Product Data Engineer'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'SGD\xa0250 - SGD\xa0420', 'Posted 11 hours ago']}, {'An engineer with an interest in data and analyzing them?': '', 'Our client is looking for a team player, who could join them and take it to the next level. If you love data, being involved in making business decisions with your engineering knowledge, check the criteria below. If you got what it takes, apply now!': '', 'Responsibilities:': 'Setup, maintain, and update work centers in SAP.Support system simulation and perform UAT.Compile and analyze yield and scrap data.Participate in yield and scrap reviews and updates.Document SOPs and guidelines for Work Center, BOM, and Routing, and to ensure accuracy.Collaborate with all stakeholders on data gathering.Analyze and provide solutions for costing concerns.Support Production Order Variance analysis and participate in LEAN manufacturing.', 'Requirements:': "Master's Degree or Degree in engineering disciplines.1 to 2 years' experience in IE, product data setup and manufacturing operations preferred, or no experience required.Knowledge in SAP.Experience in data analytic tools, a plus.Good team player and to collaborate effectively with all levels in the organization.Strong interest in data and analytical skills.", 'Next Step': '', '@': 'Only shortlisted candidates will be contacted.'}, {'Career Level': 'Entry Level', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/product-data-engineer-10097780?jobId=jobstreet-sg-job-10097780§ionRank=49&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
An engineer with an interest in data and analyzing them?
[{'position': 'Data Engineer | New Projects - 6267'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Scope of work:': "Able to extract, transform and load data into databases..Able to generate analytics results from the data collected to answer questions from customers' business use cases..Familiar with DotNetCore Framework and MSSQL..Knowledge of NGINX and REACT JS is an advantage..Able to interpret and write technical documents..", 'What is needed:': 'Minimum Degree in Computer Engineering, Computer Science and Electronics Engineering or its equivalent..Strong C++ and C# programming skills with at least 1-2 years as a data engineer..Possess good understanding of software development life cycles..Working experience in handling projects involving Data Analytics related work is a plus.Attained Agile-related certification such as Certified Scrum Master is a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-%7C-new-projects-6267-10138575?jobId=jobstreet-sg-job-10138575§ionRank=51&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Scope of work:
[{'position': 'Lead Professional Officer, Software - Machine Learning, AI - 2309 - JT'}, {'company_name': 'CTES Consulting Pte Ltd'}, {'small_section': ['West', 'SGD\xa08,000 - SGD\xa09,000', 'Posted on 2-Nov-22']}, {' Lead Professional Officer/ Senior Professional Officer - Software Engineering (Machine Learning/ Deep Learning/ Artificial Intelligence)': '', 'The responsibilities of this role are:': 'Work with faculty in the development, design, planning and set-up of laboratories for teaching and research activities.\xa0 This may involve activities to plan, procure and manage equipment in the lab, provide training to staff and students on usage of specific laboratory or equipment as well as development of lab manuals..Mentor students during hands-on projects and laboratory activities for ICT year-1 and year-2 student to enhance their practical problem-solving skills. This may involve conduct of relevant practical activities as well as supervision of students in their projects and laboratory assignments as a part of applied learning..Guide students to navigate the industry environment during their Integrated Work Study Programme (IWSP)..Support the faculty in the supervision and assessment of students for IWSP, ITP (integrative team project) and for Final Year Projects/Capstones..When innovation project opportunities arise, participate in the project/s together with faculty and students..Working in a team to manage and ensure the readiness, operations and proper maintenance of the laboratories resources..Carry out Risk Assessment, and ensure compliance with Work, Safety and Health Regulations in the laboratories.', 'The ideal candidate will need to have the following qualities and experience:': 'A good degree in Computing or Data Science from a recognized University. Major in Software Engineering or possessing a Master degree will be advantageous..', 'A good degree in Computing or Data Science from a recognized University. Major in Software Engineering or possessing a Master degree will be advantageous.': 'Proven AI industry practitioner and working experience as a Machine Learning Software Engineer or similar role, with good knowledge of industry practices and technological applications in the field. Familiarity with machine learning frameworks and libraries (such like Caffe, Spark ML, Keras, PyTorch, TensorFlow, Scikit-Learn, CNTK etc).', 'Proven AI industry practitioner and working experience as a Machine Learning Software Engineer or similar role, with good knowledge of industry practices and technological applications in the field. Familiarity with machine learning frameworks and libraries (such like Caffe, Spark ML, Keras, PyTorch, TensorFlow, Scikit-Learn, CNTK etc)': 'At least 10 years’ experience in the knowledge domain.', 'At least 10 years’ experience in the knowledge domain': 'Must have a firm grasp and understanding of data structures, data modeling and software architecture using Python, R, Java and C, as well as deep knowledge of math, probability, statistics and algorithms..', 'Must have a firm grasp and understanding of data structures, data modeling and software architecture using Python, R, Java and C, as well as deep knowledge of math, probability, statistics and algorithms.': 'Keen interest to support research and academic project work, with demonstrated ability in developing software solutions to technical problems..Possess strong supervisory skills and enjoy working closely with students in an educational environment..Self-starter with hand-on knowledge to setup network and server systems, manage software development environment and configuration activities to support testing and maintenance of information system, software applications, hosted services and websites..Demonstrate proficiency to keep abreast of development in the field and pursue professional certification programs. Possess of industrial certifications in relevant areas will be an added advantage..Professional Officers appointed at senior levels may have managerial responsibilities..A committed believer in continuous learning and self-improvement, with a strong sense of confidence in managing his/her own learning process..Good communication and interpersonal skills..Passionate about training, coaching and mentoring..Able to build and maintain strong working relationships with people within and external to the university..Self-motivated team player and flexibility to work across functions/teams in a dynamic hand-on environment..Possess strong analytical and critical thinking skills..Show strong initiative and take ownership of work..', 'An exciting career awaits the right candidate! Click "Quick Apply" to register your interest now.': '', "All applicants' CV will be treated with the strictest confidentiality. We regret to inform that only shortlisted candidates will be contacted.": []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200509226D', 'EA No.': '07C3481', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\nEA License No.: 07C3481\n\n\tOur Recruitment Consultants are equipped with extensive recruitment and industry expertise in their areas of specialisation.\n\n\tThe experience combined with their commitment to establish a deep understanding of our client and their business priorities enable CTES to deliver value far beyond the service provided by traditional search firms.\n\n\tWe provide an impeccable match. At CTES, we believe in providing a seamless match between candidate and client. We deem it our responsibility to thoroughly understand our client's needs, and to obtain in-depth knowledge of the job requirements and the culture of the client's organization. This enables us to provide suitable and proficient candidates to our clients.\n\n\tBy ensuring a close match between the candidate and position, we are able to foster a win-win situation, for both our clients and our candidates.\n\n\tCTES aims to be an organisation renowned throughout the Asia-Pacific region, integral to both employers and career seekers. We hope to become the preferred HR and career consultants for our clients and candidates respectively.\n\n\tFor more information, visit our Opportunities Page for more available jobs at www.CTES.com.sg! Alternatively, email us at [email\xa0protected] to contact us!\n\n\tLinkedIn @\xa0www.linkedin.com/company/ctes-consulting-pte-ltd\n\n\tFacebook @\xa0www.facebook.com/CTESConsulting"}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-professional-officer-software-machine-learning-ai-2309-jt-10124247?jobId=jobstreet-sg-job-10124247§ionRank=52&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Lead Professional Officer/ Senior Professional Officer - Software Engineering (Machine Learning/ Deep Learning/ Artificial Intelligence)
[{'position': 'Enterprise Data Science Management Lead (5742)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities:': 'Create an enterprise-wide data vision..Design and implement a data strategy to drive business decisions and growth..Oversee data management, data quality control, data governance and data access as well as drive the growth of data science and new capabilities such as Machine Learning and AI to enhance operations, capture greater customer value and deliver business impact..Partner with external and internal stakeholders to build a strong pipeline of impactful projects to extract insights from data which can then be translates into business decisions..Act as a thought leader within the organisation on best practices for Data and Analytics.', 'Requirements:': 'A Bachelor’s Degree, Master’s Degree or PhD in Computer Science, Mathematics, Statistics, or related field.At least 15 years’ experience in a senior-level data management role..Possess a strong business acumen and a proven track record of leading and mentoring a team in managing advanced analytics and data science..Excellent leadership, stakeholder management and communication skills..While this senior role is not expected to do programming, experience in Python/SQL, R and Java is required..'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '15 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/enterprise-data-science-management-lead-5742-10144175?jobId=jobstreet-sg-job-10144175§ionRank=53&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Engineer - (Machine learning algorithms for drone surveillance) 5GTL #Immediate'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Participate in and manage the research project with Principal Investigator (PI), Co-PIs and the industry collaborator to ensure all project deliverables are met..Design, optimization and test the ML algorithms in the network to ensure the end-to-end performance metrics are met under different drone surveillance scenarios..Develop North-bound APIs for dynamic network orchestration and test overall model performance under high-speed switching scenarios..Carry out Risk Assessment, and ensure compliance with Work, Safety and Health Regulations..Research on existing hardware technologies and coordinate procurement and liaison with vendors/suppliers..Work independently, as well as within a team, to ensure proper operation and maintenance of equipment..', 'Job Requirements:': 'Have relevant competence in networking with open network switch configuration..Experience in network configuration and maintenance on Linux-based devices..Working knowledge of SDN technologies and/or machine learning algorithms.REST APIs for north-bound communication will be an advantage..Knowledge in virtualization technologies (Hypervisor, VMware NSx) will be an advantage..Have a relevant degree in Communication Networks or equivalent. Possessing a Master’s or PhD degree will be advantageous.Knowledge of Python, Java and R will be advantageous..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-algorithms-for-drone-surveillance-5gtl-immediate-10120960?jobId=jobstreet-sg-job-10120960§ionRank=55&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist - (33658-JOB)'}, {'company_name': 'Illumina Singapore Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '200310311H', 'Company Size': '2001 - 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': '\n\tDo you want to make a difference? Illumina’s mission is to improve human health by unlocking the power of the genome. If that inspires you, let’s talk. We’ve built a culture fueled by innovation, collaboration and openness, and established ourselves as the global leader in DNA sequencing and array-based technologies. Our people and our technology change lives by driving advancements in life sciences, oncology, reproductive health, agriculture and other emerging markets. We are deeply passionate about what we do, because we know that our work has the power to improve lives.\n\n\tWe’re an established company with a track record of phenomenal growth. Our revenue grew from $10 million in 2002 to approximately $2.2 billion in 2015. Our growth isn’t just revenue, we’ve been hiring the best and the brightest. Perhaps that’s why MIT has ranked Illumina near the top of its World’s Smartest Companies list three years running, including #1 in 2014. If you thrive in a brilliant, fast-paced, and mission-driven environment, Illumina is the place for you – imagine the possibilities.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-33658-job-10125733?jobId=jobstreet-sg-job-10125733§ionRank=56&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
[{'position': 'Senior Data Scientist - (22000296)'}, {'company_name': 'The Great Eastern Life Assurance Co Ltd'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'To all recruitment agencies:': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '190800011G', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Insurance'}, {'Company Overview': '\n\tFounded in 1908, Great Eastern is a market leader and a well-established trusted brand in Singapore and Malaysia. With S$82.5 billion in assets and over 4 million policyholders, the Group also operates in Indonesia and Brunei and has a presence in China as well as a representative office in Myanmar.\n\n\tThe Great Eastern Life Assurance Company Limited and Great Eastern General Limited have been assigned the financial strength and counterparty credit ratings of "AA-" by Standard and Poor\'s since 2010, one of the highest among Asian life insurance companies.\n\n\tWe are a LIFE company and our purpose is to empower generations to live healthier and better so that they can live life to the fullest. Be it celebrating life’s simple moments or commemorating life’s major milestones, every day, in many ways, we inspire those around us to live great and celebrate life.\n\n\tPlease note that our career opportunities are only posted on our Career Website (http://grp.gelife.co/findacareer) and on our authorised job platforms which are specifically LinkedIn, JobStreet and eFinancialCareers. We do not initiate any unsolicited calls and all official emails from Great Eastern will be sent from email addresses ending with “@greateasternlife.com”. Should you receive any communications outside from these channels listed, please do not provide any personal information and do reach out to us at [email\xa0protected] or at 6248 2990 for us to assist you and confirm the legitimacy of the content.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-scientist-22000296-10124507?jobId=jobstreet-sg-job-10124507§ionRank=58&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
To all recruitment agencies:
[{'position': 'Data Scientist (life sciences)'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities:': 'In-depth data analysis\xa0with machine learning and statistical methods.Identify novel DNA/RNA/ncRNA biomarkers.Develop models for multi-marker diagnostic test.Facilitate the design and execution of the experiment, the process set up and quality control set up with statistical insights\xa0.', 'Requirements:': 'MSc or PhD in life science or equivalent..Experienced in machine learning or other bioinformatics tools..Experienced in data related to (proteomics, transcriptomics, genomics, metabolomics, lipidomics, and epigenomics etc.).Past publication record as first-author in relevant scientific journals..', 'To Apply:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-life-sciences-10132467?jobId=jobstreet-sg-job-10132467§ionRank=59&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Assistant Principal Data Scientist'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Description': 'Ability to understand business needs and translate them to a data analytics plan for developing the required solution..Recorded vehicle-related (air, land and sea vehicles) sensor & defect report data understanding, cleansing, uploading to database..Tap knowledge from vehicle domain experts and write SQL scripts to manage & query\xa0databases to extract & generate required data for analysis..Compare & assess various machine learning\xa0methods to generate insights, detect anomalies and predict remaining useful life of vehicle components and engines..Ability to implement the developed and tuned model(s) in Python/R, SQL and/or C# is preferred..Ability to develop dashboards to show the results\xa0for internal & external customers is preferred..', 'Requirements': 'Degree in Engineering or Computer Science or IT, with Data Science elective.Work experience in Data Science or Analytics, Probability & Statistics, Python programming and SQL scripting.Good team player and communicator.Experience in developing Data Science models and Analytics dashboards to communicate with the team, Management and customers..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-principal-data-scientist-10070774?jobId=jobstreet-sg-job-10070774§ionRank=63&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Fellow, - (Signal Processing and Machine Learning) (R00003631)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Responsibilities': 'Develop signal processing and machine learning algorithms and methods.Perform software/hardware implementation and empirical studies.Prepare reports and presentations.Conduct project presentations and seminars.Help to supervise graduate students and contribute to proposal writing.Assist the PI in various research admin tasks.', 'Job Requirements': 'Ph.D. in Electrical Engineering, Computer Science, Statistics or other related fields.Solid Mathematical skills.Background in graph signal processing, probability theory and statistical signal processing.Experience in implementing algorithms for machine learning and data analytics.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-signal-processing-and-machine-learning-r00003631-10127588?jobId=jobstreet-sg-job-10127588§ionRank=65&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Engineer - ref: ASD'}, {'company_name': 'ST Engineering Advanced Networks & Sensors Pte Ltd'}, {'small_section': ['Jurong East', 'Posted on 4-Nov-22']}, {'Job Overview': '', 'Job Responsibilities:': 'Identify suitable data structures based on business needs to ensure availability and accessibility of data..Determine technical system requirements based on data needs..Keep abreast of latest technologies and products in open source technologies, database and data processing software..Develop codes and scripts to process structured and unstructured data in real-time from a variety of data sources..Consolidate and create data storage solutions for storage and retrieval of information..Assist in the integration of data systems with existing infrastructure..', 'Job Requirements': "Bachelor / Master's degree in Computer Science, Computer Engineering, Information Systems, Information Engineering, or equivalent.At least 2 years of data engineering experience.Experience in open source technologies, data cleaning.Experience in programming languages such as Java, Python, C++.Experience in building and optimizing architectures and data sets.Experience working with stakeholders to identify business needs and analytics opportunities.Singaporean only.Location: Jurong East."}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601460K', 'Company Size': '501 - 1000 Employees', 'Industry': 'Computer / Information Technology (Software)'}, {'Company Overview': '\n\n\t\tST Engineering Advanced Networks & Sensors Pte Ltd is a leading Isolutions provider in the Asia-Pacific region. We provide our customers with end-to-end solutions in Government & ICT Systems,\xa0 Intelligent Transportation Management Systems & Telematics, Emergency Response & Security Systems, Digital Defence Systems, Infosecurity Products & Solutions and Customer & Managed Services.\n\n\t\tAs a leading one-stop ICT and C4ISR system-of-systems solutions provider and strong partner for our commercial, government, defence and homeland security customers worldwide, our system solutions have garnered us over 20 international awards. We also cover a strong global customer base from over 25 countries. Our expertise extends from consultancy to design, implementation and managed services. Our success stems from our constant ability to deliver complete suite of solutions that meet customers’ needs.\xa0 Our in-depth experience and proven track record in systems engineering, quality in-house products and strong investment in R&D, have enabled us to develop our core capabilities and build a significant domain expertise reputed in the global arena.\n\t\n\tWe are committed to providing our customers with the most comprehensive range of system solutions to meet their needs. We will continue to innovate, seek new business areas and develop our people – to bring increasing value to our stakeholders.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-ref%3A-asd-10132851?jobId=jobstreet-sg-job-10132851§ionRank=66&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Job Overview
[{'position': 'Data Analyst (Contract)'}, {'company_name': 'SingHealth Polyclinics'}, {'small_section': ['Bukit Merah', 'Posted on 2-Nov-22']}, {'Requirements:': 'Foundation in computer science, modeling, statistics, analytics & mathematics, coupled with a strong business sense.Knowledge of machine learning techniques, including decision tree learning, clustering, artificial neural networks; experience with statistical programming languages (e.g. Python, R, SQL) to process data and gain insights from it.Multilingual coding knowledge/experience Java, JavaScript, C, C++ (preferred).Experience/knowledge in data-mining techniques (e.g. social network analysis, natural language processing, time series analysis).Candidate also need to be a team player and have a problem-solving aptitude.Ability to write reports, grant proposals and scientific papers. Track record of scientific publications is advantageous.Coordinate with research partners during project implementation.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Others, Others', 'Registration No.': '52928775K', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Education support, Medical, Business (e.g. Shirts), Regular Work Hours'}, {'Company Overview': "SingHealth Polyclinics, a leader in family medicine, provides seamless, patient-centred and preventive healthcare that is affordable and accessible to all.\nSingHealth Polyclinics' network of\xa0polyclinics provides primary healthcare services to the community. It plays an integral role in promoting a healthy lifestyle within the community and empowering families with the knowledge of common health issues, care and treatment options.\n\nSingHealth Polyclinics is a member of Singapore Health Services (SingHealth) - a public healthcare cluster which also manages three hospitals and five specialty centres.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-contract-10124676?jobId=jobstreet-sg-job-10124676§ionRank=67&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Requirements:
[{'position': 'Data Engineer | New Projects'}, {'company_name': 'ST Engineering Training & Simulation Systems Pte Ltd'}, {'small_section': ['Singapore', 'Posted 2 hours ago']}, {'Scope of work:': "Able to extract, transform and load data into databases..Able to generate analytics results from the data collected to answer questions from customers' business use cases..Familiar with DotNetCore Framework and MSSQL..Knowledge of NGINX and REACT JS is an advantage..Able to interpret and write technical documents..", 'What is needed:': 'Minimum Degree in Computer Engineering, Computer Science and Electronics Engineering or its equivalent..Strong C++ and C# programming skills with at least 1-2 years as a data engineer..Possess good understanding of software development life cycles..Working experience in handling projects involving Data Analytics related work is a plus.Attained Agile-related certification such as Certified Scrum Master is a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199607423R', 'Company Size': '201 - 500 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tFor close to 40 years, ST Engineering Training & Simulation Systems Pte Ltd has developed cutting-edge simulation systems that elevate the performance of individuals and teams while ensuring training safety and efficiency.\n\n\n\tCombining state-of-the-art technologies with creativity, we develop highly interactive training solutions tailored to the needs of learners while providing training services for the operational and technical domains of the defence, aerospace, maritime, transport and commercial sectors. At the same time, we inspire and spark the imaginations of the young and old alike with immersive technologies, paving the way for ground-breaking research and development by leading institutions. We cover training and learning needs from end-to-end, enabling digital learning transformation with technologies that empower learners and instructors.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-%7C-new-projects-10148012?jobId=jobstreet-sg-job-10148012§ionRank=68&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Scope of work:
[{'position': 'Engineer'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description': 'Work with internal and external stakeholders including customers, partners and colleagues to solicit requirements, design, develop, test and maintain\xa0Machine Learning\xa0systems.Responsible for documentation of system specifications.Conduct technical exploration of new Machine Leaning tools, techniques and platforms.Assist to maintain Machine Learning/AI knowledge repository.Support pre-sales initiatives, proposal development and provide post-sales support for Machine Learning systems.', 'Job Requirements': 'Degree, Master’s Degree or PhD in Computer Science/Engineering, Knowledge Engineering, Information Systems, Information Technology, Mathematics or equivalent with working experience in\xa0development of Machine Learning systems.Recognized professional or industrial certifications in relevant Machine Learning technologies or competencies.At least 1-3 years of professional experiences in design and development of Machine Learning systems.In-depth technical knowledge in at least two of the below areas:.Data Modelling.Data Mining.Statistical Analysis.Simulation.Operations Research.Data Visualisation.Predictive Analytics.Technical expertise in Python, R, SQL, Java, C/C++, MATLAB, Scala etc..Knowledge of big data technologies e.g. Hadoop, Spark, Hive, HBase etc. will be an added advantage.Knowledge of cloud computing platforms e.g. AWS, Google Cloud Platform, Microsoft Azure will be an added advantage\xa0.Experience in agile development methodologies.Knowledge of\xa0MLOps best practices in model development and deployment, CI/CD, version control etc..Excellent written and verbal communications skills;.Highly organized, motivated, independent and resourceful team player.Strong analytical thinking, interpersonal and problem-solving skills.Able to work productively in an agile and fast-paced consulting environment.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/engineer-10140039?jobId=jobstreet-sg-job-10140039§ionRank=70&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'AI Engineer'}, {'company_name': 'Randstad - Corporate'}, {'small_section': ['Singapore', 'SGD\xa06,000 - SGD\xa07,000', 'Posted on 5-Nov-22']}, {'about the company': '', 'about the job': 'Work with end customers and internal vision system development team to define business challenges that require the use of various ML/DL & Computer Vision Algorithmic techniques.Analyze large sets of Visual (images and videos) and Sensor data and train machine learning models using commercial tools such as Cognex as well as open-source platforms(TensorFlow, pyTorch, OpenCV) for detection, classification, tracking, behavioral analysis, anomaly detection..Gather customers feedback and continuously improve existing ML models and algorithms..Write code (Python/C++/C#) to prepare, use, enhance and test models..', 'about the manager/team': '', 'skills and Experience required': 'Proficient in C# required..Knowledge in Image processing and vision inspection systems is preferable..Experience in using one of ML open-source platforms(TensorFlow, pyTorch, OpenCV) is required..Knowledge in programming languages such as C++ is an added advantage..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'EA No.': '94C3609', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tHeadquartered in the Netherlands, Randstad is the second largest recruitment & HR services provider globally. Operating in 39 countries, Randstad employs over 567,700 people in meaningful employment everyday.\n\n\tWith global reach and local expertise, Randstad Singapore has close to 20 years experience in the Singapore market and are dedicated to delivering high quality, consistent service to our clients and candidates.\n\n\tOur passionate, consultants will provide you with career advice and opportunities that meet your career goals and aspirations. With the widest range of industry specialists across:\n\t\xa0\n\n\n\t\tAccounting\n\n\t\tBanking & Financial Services\n\n\t\tCorporate Support\n\n\t\tEngineering\n\n\t\tHuman Resources\n\n\t\tInformation Technology\n\n\t\tLife Sciences\n\n\t\tSales, Marketing & Communications\n\n\n\n\t\tLet us help you shape your work of work.\n\n\t\tSearch for your next career opportunity at www.randstad.com.sg/jobs or contact us on +65 6510 1350.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-engineer-10137045?jobId=jobstreet-sg-job-10137045§ionRank=72&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
about the company
[{'position': 'Lead Data Engineer'}, {'company_name': 'Ethos Search Associates Pte.Ltd.'}, {'small_section': ['Singapore', 'SGD\xa08,000 - SGD\xa012,000', 'Posted on 5-Nov-22']}, {'Scope of Work': 'Architect data infrastructure on cloud using Infrastructure-as-Code tools.Design and build resilient and efficient data pipelines for both batch and real-time streaming data.Manage projects with an Agile mindset.Create software frameworks to solve data problems.Work with product managers, software engineers, data analysts and data scientists to build scalable and data-driven platforms and tools.', 'Requirement:': 'Bachelor’s Degree in Computer Science or have equivalent professional experience.8 - 12 years of relevant working experience, preferably 4 years in a leadership role.Strong in coding with Python.Good people management skill.database basics, database normalisation, OLAP, star schemas, SCDs (slowly-changing dimensions) and column-oriented storage.cloud (AWS, GCP, Azure).implementing batch and streaming data pipelines.writing efficient SQL.SQL and NoSQL databases, including performance tuning and troubleshooting.'}, {'Career Level': 'Manager', 'Qualification': 'Not Specified', 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201321351E', 'EA No.': '13C6655', 'Company Size': '1 - 50 Employees', 'Industry': 'Consulting (IT, Science, Engineering & Technical)'}, {'Company Overview': '\n\tOur heritage began in 2003 as HR Connect. Over the years, we have earned the trust and confidence of our clients to grow into a reputable human capital management firm.\xa0 Ethos Search Associates now brings with us strong industry knowledge, a far-reaching network and a wide range of human capital solutions ranging from talent acquisition, retention and management.\n\n\tAt Ethos Search Associates, we are passionately committed to deliver a high standard of service that achieves results while building relationships that last.\xa0 Adopting a consultative approach, we dedicate time and resources to understand the needs of both our clients and candidates aspiring career growth. We listen, we connect and we identify the best solutions to accomplish the goals of our clients.\xa0\n\n\tToday, Ethos Search Associates is led by a team of dedicated professional consultants with rich experience from a broad spectrum of industries and a commitment to exceed expectations. We are uniquely positioned to add value to your recruitment and job search needs. Get in touch with us to find out more!'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-engineer-10091798?jobId=jobstreet-sg-job-10091798§ionRank=73&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Scope of Work
[{'position': 'Platforms Engineer (MLOps) for AI Singapore'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': '', 'Duties & Responsibilities': "Evaluate, architect, setup, and maintain platform & tooling stack for empowering AISG engineers in carrying out their roles & responsibilities..Mentor AISG apprentices and assist whenever needed in developing end-to-end MLOps workflows to facilitate the AI lifecycle in ensuring that solutions are delivered efficiently and sustainably..Act as an intermediary between the Platforms Team and AI project teams..Assisting the InfraOps team in building and maintaining production infrastructure to be resilient, secure, and high-performing..Implement infrastructure as code (IaC) processes to automate our systems' configuration, provisioning, deployment, and monitoring..Collaborate with AISG's partners to design, implement, and deploy new systems and improvements to existing systems..Document and troubleshoot issues arising from our systems when they occur..Develop tools and software that improves and automates infrastructure provisioning..Propose and drive technical decisions to completion for the aforementioned responsibilities, including documentation..", 'Qualifications': 'Excellent communication skills, including thoughtful listening skills and the ability to express complex ideas clearly and succinctly..The ability to reason about engineering issues holistically using engineering fundamentals and knowledge about architecture..A systematic approach to development and engineering, such as debugging, DevOps and MLOps practices, and agile software development..Have held at least one engineering or infrastructure position for a minimum of 2 years..Proficient in at least one commonly used programming language, such as Python, Ruby, Go, Rust, Javascript, Java, C#, etc. Proficiency in Python would be preferred..Proficient in administering Linux systems..Basic proficiency and understanding of machine learning concepts including data analysis, predictive modelling and model evaluation..Proficiency in at least one automation tool (Ansible, Chef, Puppet, Bash, PowerShell, etc.)..Familiarity with virtualisation technologies (KVM, VMWare, etc.)..Familiarity with the container and container orchestration technologies (Docker, rkt, Singularity, Kubernetes, Docker Swarm, Helm, etc.)..Familiarity with public cloud providers such as AWS, Microsoft Azure, Google Cloud Platform.Experience with deployment of applications on cloud or distributed systems..An aptitude for automated system design and implementation (automated deployments and automated testing).We will also consider folks with AICE Associate certification and above who exhibit aptitude and potential for the above skills despite a lack of experience..', 'Covid-19 Message': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/platforms-engineer-mlops-for-ai-singapore-10110313?jobId=jobstreet-sg-job-10110313§ionRank=74&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Fellow, - (Data Scientist-AI) - #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:\xa0': 'Develop and implement ML algorithms and tools to build machine learning and analytics platform..Contribute in AI/ML projects from design, data processing, development, implementation, documentation, validation and optimization..Explore new technologies for data implementation AI adoption..Develop visualization, dashboards and report formats according to project requirements..Generating IP/Patents and publish high quality papers in journal and conferences.', 'Job Requirements:\xa0': 'PhD in electrical/electronics/computer engineering or related fields..Masters and Bachelors hers may apply and will be considered for suitable job grades.At least 2-5 of relevant experience with machine learning algorithms, platforms and APIs.Strong foundation in mathematics, as well as familiarity with signal analysis and estimation..Programming skills in Python, R, C++, and Matlab.Strong background in handling data and programming.Independent analytical problem-solving skills\xa0\xa0.Highly motivated, independent and able to work as a team.Willingness and ability to develop new skills.Good communication, interpersonal and critical skill..'}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-scientist-ai-worknow-10135169?jobId=jobstreet-sg-job-10135169§ionRank=75&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior/ Analyst, Data Science, Office of DGCMIO (Research)'}, {'company_name': 'Singapore Health Services Pte Ltd (SingHealth HQ)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Requirements': 'Bachelor’s degree in Mathematics, Statistics, Biomedical or any related science/engineering discipline or equivalent.Preferably with at least 2 years of experience in consultancy/analytics in health services research.Experience in working with large healthcare datasets, including both structured data and unstructured data (e.g. textual notes, image data).Experience in data management and manipulation approach tools (e.g. Data Profiling / SQL querying, Data Quality, ETL and Data warehousing, Data governance and Healthcare data standards, Statistical modelling, In memory analytics, Big data framework (e.g. Hadoop, Spark).Familiarity with commercial statistical software (e.g. SPSS, Stata), open source platforms (e.g. R, Python) and commercial BI tools (e.g. Tableau, OBIEE, IBM Cognos).Strong passion for analysing and resolving complex business problems with displays of an intellectual curiosity about the business needs.Strong background in data engineering concepts.Good communication skills to coordinate effectively with multidisciplinary teams comprising of clinicians, operational and administrative staff and allied health professionals to solve care delivery problems.Must be fully vaccinated against COVID-19.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': '200002698Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '17 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts), Subject to Designation'}, {'Company Overview': 'SingHealth is the largest public healthcare cluster in Singapore. At our Headquarters, we focus on cluster-wide, strategic core functions for the organisation and work closely with our institutions and care teams to facilitate excellent care for our patients.We offer a diverse variety of roles that you can fulfil your career aspirations in. You can choose from different domain areas such as medical and clinical services, regional health system, research, education, organisational transformation and informatics, as well as corporate services including operations, finance, human resources, legal and communications. These comprise healthcare administration roles and other unique jobs such as genetic counsellors and clinical research nurses.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-analyst-data-science-office-of-dgcmio-research-10127329?jobId=jobstreet-sg-job-10127329§ionRank=76&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Job Requirements
[{'position': 'Data Scientist | Up to 12k | Automotive R&D | Smart Factory'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'SGD\xa06,000 - SGD\xa012,000', 'Posted on 3-Nov-22']}, {'Job Description:': "This position is responsible for researching and developing advanced algorithms with the knowledge of data science or optimization to solve the real problems in the manufacturing process..Center to lead paradigm shift in mobility value chain, spanning the entire lifecycle of vehicles..The group will build a customer-centered smart mobility environment where products are tailored to customer needs and mobility services would enrich its customers' lives..Lead or participate in the project which aims for solving diverse problems from the automotive industry covering acquiring data, algorithm development, and system implementation..Drive research from concepts to feasible output to determine the viability of ideas that leverage the knowledge of data analytics or optimization..Acquire the state of the art technologies and present ways to use them for solving real-world problems..Operate and develop models/services deployed in the manufacturing process..Publishing papers in journals/conferences or applying for patents as a result of the research conducted..", 'Job Requirements:': 'Bachelor or Master degree in Industrial Engineering, Computer Science, Mathematics, or equivalent practical experience.Total over two years of research or development experience in data analytic, or optimisation.Research experience in the manufacturing industry is preferred but not required..Experiences in the following: Regression/Classification/Clustering models, Large scale data analysis, Time series analysis, Forecasting models, or Kernel-based methods.Expertise in machine learning or data mining frameworks such as PyTorch, TensorFlow, Scikit-learn, or MLlib.Expertise in processing large scale data-sets in distributed data frameworks (Hadoop, Spark, or Hive).Experiences in the following: mathematical modelling and algorithm development using Mathematical programming (Linear programming, Mixed-integer programming), (Meta)Heuristic algorithms, Stochastic Process, or Combinatorial Optimization.Expertise in mathematical programming solvers including GUROBI, or CPLEX.', 'Next Steps': 'Only shortlisted candidates will be notified..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-%7C-up-to-12k-%7C-automotive-r-d-%7C-smart-factory-10101856?jobId=jobstreet-sg-job-10101856§ionRank=78&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'AI Courseware Engr. for AI Singapore'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': '', 'Duties and Responsibilities:': 'Design and implement AI courseware and learning resources.Define and create engaging user learning journeys through the use of learning technology.Evaluate appropriate learning delivery modes to facilitate the achievement of a positive learning experience\xa0.Synthesise analysis of curriculum take-up rates and learner assessment trends,\xa0.Evaluate, recommend and prioritise courseware improvement areas based on analysis of learning objectives and performance standards.Oversee implementation of courseware review processes to provide inputs for AI Certification team.', 'Qualifications': 'Minimum Degree in computer science, machine learning, statistics, AI, computer science and other relevant equivalent quantitative fields.Chartered AI Engineer Level 1 qualification would be preferable.Familiar with WordPress and LearnDash, or equivalent Wordpress LMS plugin.At least 2 years of experience in curriculum design and development.Ability to write effective copy and instructional text.', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-courseware-engr.-for-ai-singapore-10110369?jobId=jobstreet-sg-job-10110369§ionRank=79&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Assistant Manager/Assistant Principal Data Analyst'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description for Assistant Principal Data Analyst': '', 'Background': '', 'Key Responsibilities': 'Provide analytics consulting services internally and assist delivery team to implement resulting models into production.Support business unit project teams and external customers to develop, evaluate, refine, and deploy analytics models for production. You may be deployed temporarily to business units for the duration of some external projects.Work closely with data engineers, product managers, project managers, and platform developers in the implementation and deployment of the data analytics platform product.Mentor junior data analysts and review quality of work output.', 'Job Requirements': 'A Bachelors or Masters Degree in quantitative disciplines e.g. Science, Engineering, or Mathematics.5 years or more of working experience in data analytics.In-depth technical knowledge and experience in any of the following will be a major plus.Operations Research.Econometrics.Social & Cognitive Computing.Social Psychology.User Experience Design, Human Computer Interface.Geospatial Analytics.Video/Image Processing.Analytics for Finance or Healthcare.Good understanding of end-to-end analytics process – ideation/value elicitation, requirements definition, data profiling, data preparation, analytical modelling, testing, validation, visualization, and deployment.Strong problem solving skills, curiosity, and passion for data science.Experienced in SQL (any flavour), Python, Spark, Java, or C.Familiar with ETL pipeline creation, BI reporting software, visualization tools.Excellent coordination and time management skills to handle complex projects.Willing and enthusiastic about continuous learning of new technologies and data science techniques/breakthroughs.Effective oral and written communication with strong analytical, problem solving, multitasking and project management skills.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-manager-assistant-principal-data-analyst-10141010?jobId=jobstreet-sg-job-10141010§ionRank=81&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Job Description for Assistant Principal Data Analyst
[{'position': 'Research Engineer (NLP research for ML and AI automation)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-nlp-research-for-ml-and-ai-automation-10115247?jobId=jobstreet-sg-job-10115247§ionRank=83&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
[{'position': 'Machine Learning Engineer, Sensors & Machine Learning Lab (5722)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Machine Learning Engineer, Sensors & Machine Learning Lab': '', 'Responsibilities:': 'Design, develop\xa0&\xa0deploy customised and scalable ML algorithms as part of the end-to-end AI/ML pipeline. Application areas include video analytics, knowledge graph/NLP, predictive data analytics and anomaly detection..Optimise\xa0&\xa0deploy ML algorithms on edge devices (Raspberry Pi, Jetson Nano, or similar SBCs) and cloud platforms (e.g. AWS)..Support Product Managers to engage business users to discover transformation opportunities, and propose ML solutions which could\xa0enhance operations, such as to\xa0raise productivity or enhance decision-making..Stay relevant in the latest technologies and trends in AI/ML. Drive the development of machine learning capabilities, including set up of sandboxes to facilitate ML development..Support company-wide initiatives to inspire and upskill colleagues..', 'Preferred Requirements:': 'At least 2 years of professional experience developing and deploying ML algorithms for enterprise applications, in areas such\xa0as\xa0video analytics,\xa0NLP,\xa0predictive data analytics\xa0and\xa0anomaly detection..Degree in computer science, engineering, or equivalent practical experience..Familiar with ML frameworks such as TensorFlow and PyTorch..Proficiency in Python programming is required. Familiarity with Amazon SageMaker would be advantageous..Passionate about technology and enthuse about solving challenging problems..Excellent team-player who can collaborate well with both internal stakeholders & external partners..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-sensors-machine-learning-lab-5722-10056621?jobId=jobstreet-sg-job-10056621§ionRank=84&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Machine Learning Engineer, Sensors & Machine Learning Lab
[{'position': 'Data Engineer (Remote possible)'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Data Engineer (Remote possible)': 'Competitive Remuneration Package.Remote working available.', 'About the Client': '', 'Main Duties & Responsibilities': 'Build scalable batch and real-time data pipelines to ingest data from various channels.Set up a streamlined data lake and data warehouse.Deploy production quality code and maintain data quality.Establish tools for data ingesting and building data cubes\xa0.', 'Experience and Qualifications': 'At least 4 years of experience.Bachelor/Master’s degree in Computer Science, Engineering or a related field, software engineering background preferred.Proficiency in Python, Java or Scala.Hands-on experience implementing ETL (or ELT) best practices at scale.Experience in designing data warehouse – Snowflake, Redshift or Athena.Hands-on experience working with Kubernetes.Experience with stream processing systems (Flink or Spark).Knowledge of big data technologies - Spark, Hadoop, Hive, Kafka, Flink etc. and machine learning is a plus.Familiarity with machine learning tools from AWS or GCP preferred.Knowledge of software engineering concepts will be valuable.', 'Interest & Application': '', '"Apply Now"': '', 'Personnel Registration No R22109255': '', 'EA license No. 09C5803': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-remote-possible-10107820?jobId=jobstreet-sg-job-10107820§ionRank=85&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Data Engineer (Remote possible)
[{'position': 'Data Engineer'}, {'company_name': 'SBS Transit Limited'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Responsibilities:': 'Design and develop data pipelines and infrastructure to support analytics projects for optimal extraction, transformation and loading of data from various data sources.Management of large volumes of structured and unstructured data and transforming it into useable form for analytics purposes.Automate data collection and processing for analytical modelling input.Maintain and improve the quality of datasets.Optimisation of algorithms for production deployment.Identify opportunities for internal process improvement via data solutions..', 'Requirements:': '3 years in developing data engineering solutions, preferably with production deployment experience, using tools such as Python, SQL, Apache Spark, Apache Hadoop, Apache Kafka, Docker, Git, Shell, Bash or equivalent.Background in computer science, data analytics or a relevant field. Degree or higher preferred, but candidates with the relevant work experience and certifications will be considered.Experience in basic model and dashboard development (backend), building big data infrastructure, project management, data governance concepts.Independent, intellectually curious, creative, diligent, and a holistic thinker.Working knowledge of building pipelines involving real-time streaming data, big data, cloud technologies or equivalent.Experience/knowledge of using Splunk and Robotic Process Automation (RPA) solutions like UIPath\xa0.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '199206653M', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '12 days', 'Industry': 'Transportation / Logistics'}, {'Company Overview': '\n\tSBS Transit is a leading public transport operator. It is a member of the ComfortDelGro Group which operates in seven countries around the world. Our people are our strongest driving force and their welfare and development are important to us. We listen to what they have to say and we are constantly grooming them to their fullest potential. Join the SBS Transit family today and let us help you grow.\n\n\tBy submitting this application for this position, you acknowledge that you have read the Data Protection Policy for Job Applicants (the “Policy”) of SBS Transit Ltd and its subsidiaries, affiliates and related corporations (‘SBST”) and consent to:\n\t\n\t\ta.\xa0\xa0\xa0 The collection, use and disclosure of your personal data by SBST for the purposes of your application and potential employment with SBST and the purposes set out in the Policy: and\n\tb.\xa0\xa0\xa0 SBST’s retention of your personal data for two years for consideration of future job opportunities (where applicable) form from the date of application submission.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10082138?jobId=jobstreet-sg-job-10082138§ionRank=86&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Senior Manager (Data Scientist), AIO Biomedical Informatics Office (1 year contract)'}, {'company_name': 'National University Health System'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {':': 'Research and development of machine learning models in various clinical areas such as clinical notes, medical images, and patients’ data.Research and development of neural network models to analyze free text and identifying, categorizing opinions expressed in a piece of text.Work with the team to design and architect the workflow of the data and algorithms including data input, output and storage between various health IT systems.Work with the team to develop and deploy necessary AI models for NUHS in-house chatbot framework in hybrid cloud environment.Optimize data analysis processes and systems for better efficiency and maintenance.Document clearly explaining how algorithms have been implemented, verified and validated.Lead project team to deliver AI related research and development requirement to meet the business need.Minimum Bachelor’s degree in computer science or related fields with strong statistical modelling and machine learning skills. Graduate degree in related fields is preferred.6 years of hands-on experience in the development of end-to-end data analytics solutions and machine learning pipeline including data exploration/extraction/crawling, data processing, and model building.Hands-on experience on development of AI models in NLP.Proficient with programming in Python and AI related frameworks such as Scikit-Learn, TensorFlow, and PyTorch.Knowledge and experience in machine learning platform and services from cloud providers such as AWS, GCP, Azure.Familiarity with healthcare data, medical image is a plus.Experience in leading AI projects and virtual team.Strong problem-solving skills with the ability to work independently and in a team.Excellent written and verbal communication skills, including the ability to communicate technically and non-technically with ability to translate between the two.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': '200801778C', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\t\tAbout the National University Health System (NUHS)\n\n\n\tSpanning three acute hospitals, two community hospitals, three national centres, six polyclinics, three family medicine clinics, and three health science institutions, our unique and comprehensive ecosystem anchors NUHS as a leading academic health system in Singapore – driven by research and education.\n\t\n\t\tInspired by our patients and the population that we serve, our strong network of talents and resources across our institutions provide patient-centred care across the whole continuum - improving health and driving transformation from primary, tertiary to complex care. In close collaboration with our community partners, we aim to deliver “Incredible Care and Health, Together”!\n\t\n\tMembers of the NUHS:\n\t• National University Hospital\n\t• Ng Teng Fong General Hospital\n\t• Alexandra Hospital\n\t• Jurong Community Hospital\n\t• National University Polyclinics\n\t• National University Cancer Centre, Singapore\n\t• National University Heart Centre, Singapore\n\t• National University Centre for Oral Health, Singapore\n\t• NUS Yong Loo Lin School of Medicine\n\t• NUS Faculty of Dentistry\n\t• NUS Saw Swee Hock School of Public Health'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-manager-data-scientist-aio-biomedical-informatics-office-1-year-contract-10082189?jobId=jobstreet-sg-job-10082189§ionRank=87&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
:
[{'position': 'CV Hub Engineer (AI Singapore)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Description': '', 'Duties & Responsibilities': '', 'Qualifications': 'Degree in computer science, machine learning, statistics, AI, and other relevant equivalent quantitative fields.Experience in writing production level Python code.Experience in developing AI/Machine learning solutions that are deployed in a production setting.Experience in AI/Machine learning frameworks such as Tensorflow and Pytorch.Experience in using deployment tools such as Docker.Data story-telling, information visualisation and technical writing skills.Previous working experience in Computer Vision will be advantageous\xa0.Previous experience in deployment on edge devices will be advantageous.', 'COVID-19 Message': '', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/cv-hub-engineer-ai-singapore-10079295?jobId=jobstreet-sg-job-10079295§ionRank=88&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Associate [Econometrics, Machine Learning Algorithms] - [R00005716]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities': 'Data Analysis.Programming, Model Derivation.Literature Review.', 'Job Requirements': 'Minimum Master degree in Economics.Familiar with Python, R Language, Stata.Experienced in Statistics and Econometrics.Strong programming skills.Stay abreast of latest literatures on machine learning, Econometrics and Statistics.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-%5Beconometrics-machine-learning-algorithms%5D-%5Br00005716%5D-10072944?jobId=jobstreet-sg-job-10072944§ionRank=89&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow - (Data Scientist-AI) - #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Key Responsibilities:\xa0': 'Develop and implement ML algorithms and tools to build machine learning and analytics platform..Contribute in AI/ML projects from design, data processing, development, implementation, documentation, validation and optimization..Explore new technologies for data implementation AI adoption..Develop visualization, dashboards and report formats according to project requirements..Generating IP/Patents and publish high quality papers in journal and conferences.', 'Job Requirements:\xa0': 'PhD in electrical/electronics/computer engineering or related fields..Masters and Bachelors hers may apply and will be considered for suitable job grades.At least 2-5 of relevant experience with machine learning algorithms, platforms and APIs.Strong foundation in mathematics, as well as familiarity with signal analysis and estimation..Programming skills in Python, R, C++, and Matlab.Strong background in handling data and programming.Independent analytical problem-solving skills\xa0\xa0.Highly motivated, independent and able to work as a team.Willingness and ability to develop new skills.Good communication, interpersonal and critical skill..'}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-scientist-ai-worknow-10130637?jobId=jobstreet-sg-job-10130637§ionRank=92&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist (Ref:DMSMC)'}, {'company_name': 'National Cancer Centre Singapore Pte Ltd'}, {'small_section': ['Outram', 'Posted on 2-Nov-22']}, {'Research Fellow / Data Scientist': '', 'www.chualabnccs.com': '', 'Requirements:': '', '(Good to have)': []}, {'Career Level': 'Senior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199801562Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Uniform and Non-Uniform, Others', 'Specific Location': '11 Hospital Crescent'}, {'Company Overview': '\n\tThe National Cancer Centre Singapore (NCCS) has evolved over the past 20 years to become one of the leading regional centres for cancer treatment and research. It has pioneered the one-stop multi-disciplinary approach to cancer treatment and is now home to oncologists, surgeons and researchers, dedicated to the care and treatment of a growing number of cancer patients.\n\tToday, NCCS see close to 65 per cent of the public sector oncology cases in Singapore. To deliver\xa0the latest cancer care and treatment, clinicians work closely with researchers who conduct robust cutting-edge clinical and translational research which has received international recognition.\xa0NCCS strives to be a global leading cancer centre, and shares its expertise and knowledge by training the next generation of medical professionals.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-ref%3Admsmc-10076794?jobId=jobstreet-sg-job-10076794§ionRank=93&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Research Fellow / Data Scientist
[{'position': 'Data Engineer'}, {'company_name': 'NCS Pte Ltd'}, {'small_section': ['North-East', 'SGD\xa05,000 - SGD\xa010,000', 'Posted on 5-Nov-22']}, {"ClayOPS is a venture acquired by NCS as of 9 September 2021. Working location for this position would be at ClayOPS' office at 6 Harper Road.": '', 'ClayOPS Pte Ltd': '', 'Your primary job responsibilities will be to': 'Design and build new BI solutions such as ETLs, data warehouses, data mining tools, OLAP cubes, reporting tools and dashboards.Maintain and enhance existing BI solutions and dashboards.Client and stakeholder management.Requirements gathering from client.Project planning, implementation and management to ensure project deliverables according to proposed timeline.You should be able to understand project requirements and produce high quality, well-documented code..Your ability to communicate confidently and clearly is important. We value relevant experience, positive attitude and aptitude..Due to the nature of our work, you must be able to work independently..', 'Technical Requirements': 'Masters / Degree / Diploma in Computer Science / Information Technology, Electrical / Electronic, Information Systems or equivalent discipline.Relevant experience in developing ETLs and Data Warehouse / Data Mart.Knowledge and experience in databases (Microsoft SQL Server) is a must.Strong in SQL, Python, Scripting is a big plus.Knowledge and experience in Azure Data Factory, Data Lake, Synapse and Databricks is a big plus.Knowledge and experience in BI tools (eg. Microsoft SSAS, SSIS, Power BI, Tableau software, Pentaho solutions) is a big plus.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199603123G', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '24 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Flexi Benefits, Business Casual'}, {'Company Overview': 'About NCS NCS is a leading technology services firm with presence in Asia Pacific and partners with governments and enterprises to advance communities through technology. Combining the experience and expertise of its 10,000-strong team across 66 specialisations, NCS provides differentiated and end-to-end technology services to clients with its NEXT capabilities in digital, cloud and platform as well as core offerings in application, infrastructure, engineering and cyber security. NCS also believes in building a strong partner eco-system with leading technology players, research institutions and start-ups to support open innovation and co-creation. For more information, visit ncs.co.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10107003?jobId=jobstreet-sg-job-10107003§ionRank=94&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
ClayOPS is a venture acquired by NCS as of 9 September 2021. Working location for this position would be at ClayOPS' office at 6 Harper Road.
[{'position': 'Data Analytics'}, {'company_name': 'Up Devlabs Pte. Ltd.'}, {'small_section': ['West - Others', 'SGD\xa03,500 - SGD\xa04,900', 'Posted on 5-Nov-22']}, {'Job Description': 'Collecting and interpreting data Analysing results..Reporting the results back to the relevant members of the business..Identifying patterns and trends in data sets..Working alongside teams within the business or the management team to establish business needs..Defining new data collection and analysis processes..', 'Job Requirements': 'Minimum 1 years of native Data Analyst experience.Candidate must possess at least a Bachelor’s Degree in Computer Science, mathematics, statistics, economics..Experience in data models and reporting packages.Ability to analyse large datasets.Ability to write comprehensive reports.Strong verbal and written communications skills as Data Analyst do communicate with the wider business..An analytical mind and inclination for problem-solving.Attention to details as data analysis and reporting must be precise..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '202114701H', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Retail / Merchandise', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts), Performance Bonuses', 'Specific Location': 'One North'}, {'Company Overview': "\n\tWe are a team of passionate and creative solutionist who aim to deliver innovative solutions that bridge the gap between bleeding-edge technologies and complicated user experiences.\n\n\n\tAt UP DevLabs brings robust, user-centric solutions to our customer's most complex problems.\n\tWe work closely with all our customers to intimately understand their needs and their user's needs to deliver delightful experiences on top of state-of-the-art technology stacks.\n\n\n\tOur business activities includes:Machine learning & Data ScienceBlockchainUI/UX OptimizationCloud SolutionsSoftware\xa0Engineering\n\n\n\tJoin us now to grow together!\n\t\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-10107876?jobId=jobstreet-sg-job-10107876§ionRank=95&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Scientist (life sciences) #Worknow'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Data Scientist (Life Sciences)': '', 'Responsibilities:': 'n-depth data analysis\xa0with machine learning and statistical methods.Identify novel DNA/RNA/ncRNA biomarkers.Develop models for multi-marker diagnostic test.Facilitate the design and execution of the experiment, the process set up and quality control set up with statistical insights\xa0.', 'Requirements:': 'MSc or PhD in life science or equivalent..Experienced in machine learning or other bioinformatics tools..Experienced in data related to (proteomics, transcriptomics, genomics, metabolomics, lipidomics, and epigenomics etc.).Past publication record as first-author in relevant scientific journals..', 'To Apply:': []}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-life-sciences-worknow-10083030?jobId=jobstreet-sg-job-10083030§ionRank=96&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Data Scientist (Life Sciences)
[{'position': 'Senior Computer Vision Engineer'}, {'company_name': 'Stellar Link Partners Pte Ltd'}, {'small_section': ['West', 'SGD\xa06,000 - SGD\xa09,500', 'Posted on 6-Nov-22']}, {'Your Key Responsibilities includes:': 'Contributing in all relevant domains from system integration to deployment of updates to clients.Leading the development and enhancement of new and existing products.Visualizing data acquired to identify features, differences in data distribution that could improve performance when deploying the model in the real world.\xa0Deploy machine vision models on edge devices after optimization to meet clients requirements.Analyzing errors of model and implementing strategies to overcome them.', '\xa0Requirements:': 'Good understanding in image classification, segmentation and feature extraction..', ' +65 9004 5401': '', 'Chan Chin How, Javier': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201622755N', 'EA No.': '21S0698', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '20 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tStellar Link Partners is a boutique search firm with an initial focus on IT, HR, Legal and assisting China-owned companies to start up/hire in Singapore.\xa0 The founding partners have a combination of more than 30 years of search/recruitment experience.\xa0 Stellar Link was borne out of our passion in what we do and the desire to create a place where like-minded people can come together to practice at the highest professional standards.\xa0 At Stellar Link, we believe the potential for greatness lies in all our us and we enjoy linking great talents to great opportunities.\xa0 Let us help you uncover your next talent.\xa0\n\n\t\tYou can find out more about us at https://stellar-link.com/\n\n\t\tStellar Link is part of the CGP Group of Companies.\n\n\n\tEA Licence number: 21S0698'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-computer-vision-engineer-10138615?jobId=jobstreet-sg-job-10138615§ionRank=97&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Your Key Responsibilities includes:
[{'position': 'Research Fellow (Machine Learning and Human-Robot Collaboration) #URGENT'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on im/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-robot-collaboration-urgent-10071639?jobId=jobstreet-sg-job-10071639§ionRank=98&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Principal Data Scientist, Advisory'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Principal Data Scientist - Advisory': '', 'Background:': '', 'Key Responsibilities:': 'Provide analytics consulting services internally and assist delivery team to implement resulting models into production.Support business unit project teams and external customers to develop, evaluate, refine, and deploy analytics models for production. You may be deployed temporarily to business units for the duration of some external projects.Work closely with data engineers, product managers, project managers, and platform developers in the implementation and deployment of the data analytics platform product.', 'Job Requirements:': "Prefer a Master's Degree or PHD in Science/Engineering/Mathematics with at least 6 to 8 years of working experience in data analytics.In-depth technical knowledge and experience in any of the following will be a major plus.Deep Learning (text, video, audio data).Operations Research.", 'Behavioural Modelling': 'Anomaly Detection.Physics Aware Simulation & Digital Twins.Forecasting.Agent-based Simulation.Computational Intelligence.Social & Cognitive Computing.Interpretable/Explainable AI.', '\xa0Job Details': 'Good experience with end-to-end analytics process – ideation/value elicitation, data profiling, data preparation, analytical modelling, testing, validation, visualization, and solutioning.Strong problem solving skills, curiosity, and passion for data science.Experienced in SQL (any flavour), Python, R, Java, or C.Experience in designing ETL pipelines and BI reporting software.Familiar with open source analytical modelling, distributed computing, simulation, optimization, and visualization tools.Excellent coordination and time management skills to handle complex projects.Willing and enthusiastic about continuous learning.Experience/knowledge of big data engineering, software engineering, predictive maintenance will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-data-scientist-advisory-10071059?jobId=jobstreet-sg-job-10071059§ionRank=99&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Principal Data Scientist - Advisory
[{'position': 'Analyst (contract till 30 Jun 2023), Data Management & Informatics'}, {'company_name': 'Changi General Hospital'}, {'small_section': ['Changi', 'Posted 11 hours ago']}, {'Responsibilities:': '', 'Requirements:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '198904226R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '16 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Business/ Uniforms (depending on Job role), Regular Hours/Shifts'}, {'Company Overview': '\n\tChangi General Hospital (CGH) is an academic medical institution with over 1,000 beds serving a community of more than 1 million people in eastern Singapore. With a wide range of medical specialties and services, it is helmed by an experienced and skilled team of healthcare professionals who consistently deliver positive health outcomes and care for patients.\xa0 CGH is a member of the SingHealth cluster of healthcare institutions.\n\n\n\t\tCGH has established itself as a centre of medical excellence, with services such as the Sport & Exercise Medicine, Emergency Medicine, Geriatric Medicine,Sleep Medicine, Surgery and Science, Rehabilitation Medicine, Digestive Diseases Centre, Stroke Service and Occupational Medicine.\n\n\t\tCGH believes in delivering the best patient care with passion and empathy. To improve care for patients, CGH has adopted a proactive integrated care approach. CGH aims to deliver better, seamless and Integrated Medical services by partnering healthcare providers in the east and innovating by adopting new medical technologies and systems.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/analyst-contract-till-30-jun-2023-data-management-informatics-10116920?jobId=jobstreet-sg-job-10116920§ionRank=100&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'APAC Big Data Engineer (Gaming MNC, Data Warehouse) #WorkNow'}, {'company_name': 'RecruitFirst Pte. Ltd'}, {'small_section': ['Central', 'Posted on 3-Nov-22']}, {'Role:': 'Responsible for the development, maintenance and positioning of big data systems\xa0.Responsible for the development of big data analysis tasks using Hadoop, HiveSQL, Spark\xa0.Construction of Offline databases\xa0.Perform SQL development\xa0.Implementing real-time data warehouse using Flink.', 'Requirements & Skills:': '', ' SQL': '', 'Databases such as MySQL/Hive/Redis': '', 'Other Information:\xa0': 'Hybrid Work Model (WFH / Raffles Place).Mon - Fri, 9am - 6pm\xa0.up to $6,500 per month\xa0.Candidates will be required to reside in Singapore\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '13C6342', 'EA No.': '13C6342', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '13 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGrow your company with RecruitFirst!\n\n\n\tThe business environment today is a highly competitive one, which is ever evolving. Having the right human resource business partner with a strong network of consultants and candidates has become key to the success of industry leading businesses.\n\n\n\tRecruitFirst is the fastest growing human resource consultancy in the Asia Pacific. Our mission is Helping People Find Better Jobs, and Organisations Find Better People. We live by this mission by ensuring that the best candidates and employers are connected via the rigorous recruitment processes and extensive database that we are continuously developing.\n\n\n\tBe the first to recruit with us and start realising the value-add that we are able to provide to your organisation!\n\tEnjoy the expansive array of human resource solutions and network which RecruitFirst has to offer.\n\tTogether with our affiliates, we have operations in 8 countries and 10 cities across Asia Pacific – Singapore, Kuala Lumpur, Bangkok, Hong Kong, Shanghai, Beijing, Guangzhou, Taipei, Tokyo and Seoul. This geographical network gives us the strategic advantage of acquiring the best candidates to satisfy the human resource strategies of multi-national companies. In addition, with this large network of consultants, we are also able to provide for all your human resource needs, including, temporary staffing, contract staffing, executive search, payroll services, global placement or management consultancy.\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/apac-big-data-engineer-gaming-mnc-data-warehouse-worknow-10129640?jobId=jobstreet-sg-job-10129640§ionRank=101&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Role:
[{'position': 'Research Fellow, (Machine Learning and Human Machine Interaction) - [R00008643]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on im/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-machine-interaction-%5Br00008643%5D-10071650?jobId=jobstreet-sg-job-10071650§ionRank=102&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Software Engineer/Senior Software Engineer for AI Singapore (AI Technology)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description': '', 'Duties & Responsibilities\xa0': '', 'Qualifications': '', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/software-engineer-senior-software-engineer-for-ai-singapore-ai-technology-10115114?jobId=jobstreet-sg-job-10115114§ionRank=105&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Manager (Data Scientist), AIO Innovation Office (Contract)'}, {'company_name': 'National University Health System'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {':': 'Research and development of machine learning models in various clinical areas such as clinical notes, medical images, and patients’ data.Research and development of neural network models to analyze free text and identifying, categorizing opinions expressed in a piece of text.Work with the team to design and architect the workflow of the data and algorithms including data input, output and storage between various health IT systems.Work with the team to develop and deploy necessary AI models for NUHS in-house chatbot framework in hybrid cloud environment.Optimize data analysis processes and systems for better efficiency and maintenance.Document clearly explaining how algorithms have been implemented, verified and validated.Lead project team to deliver AI related research and development requirement to meet the business need.Minimum Bachelor’s degree in computer science or related fields with strong statistical modelling and machine learning skills. Graduate degree in related fields is preferred.4 years of hands-on experience in the development of end-to-end data analytics solutions and machine learning pipeline including data exploration/extraction/crawling, data processing, and model building.Hands-on experience on development of AI models in NLP.Proficient with programming in Python and AI related frameworks such as Scikit-Learn, TensorFlow, and PyTorch.Knowledge and experience in machine learning platform and services from cloud providers such as AWS, GCP, Azure.Familiarity with healthcare data, medical image is a plus.Experience in leading AI projects and virtual team.Strong problem-solving skills with the ability to work independently and in a team.Excellent written and verbal communication skills, including the ability to communicate technically and non-technically with ability to translate between the two.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200801778C', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\t\tAbout the National University Health System (NUHS)\n\n\n\tSpanning three acute hospitals, two community hospitals, three national centres, six polyclinics, three family medicine clinics, and three health science institutions, our unique and comprehensive ecosystem anchors NUHS as a leading academic health system in Singapore – driven by research and education.\n\t\n\t\tInspired by our patients and the population that we serve, our strong network of talents and resources across our institutions provide patient-centred care across the whole continuum - improving health and driving transformation from primary, tertiary to complex care. In close collaboration with our community partners, we aim to deliver “Incredible Care and Health, Together”!\n\t\n\tMembers of the NUHS:\n\t• National University Hospital\n\t• Ng Teng Fong General Hospital\n\t• Alexandra Hospital\n\t• Jurong Community Hospital\n\t• National University Polyclinics\n\t• National University Cancer Centre, Singapore\n\t• National University Heart Centre, Singapore\n\t• National University Centre for Oral Health, Singapore\n\t• NUS Yong Loo Lin School of Medicine\n\t• NUS Faculty of Dentistry\n\t• NUS Saw Swee Hock School of Public Health'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-data-scientist-aio-innovation-office-contract-10082181?jobId=jobstreet-sg-job-10082181§ionRank=106&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
:
[{'position': 'Principal/Assistant Principal/Senior Data Scientist'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Roles and Responsibilities': '', 'Job Description': 'Recorded vehicle-related (air, land and sea vehicles) sensor & defect report data understanding, cleansing, uploading to database..Tap knowledge from vehicle domain experts and write SQL scripts to manage & query\xa0databases to extract & generate required data for analysis..Compare & assess various machine learning\xa0methods to generate insights, detect anomalies and predict remaining useful life of vehicle components and engines..Ability to implement the developed and tuned model(s) in SQL and/or C# is preferred..Ability to develop dashboards to show the results\xa0for internal & external customers is preferred..', 'Requirements': 'Degree in Engineering or Computer Science or IT, with Data Science elective.Work experience in Data Analytics, Python programming and SQL scripting.Good team player and communicator.Experience in developing web-based or Tableau dashboards and C# programming will be added advantages.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-assistant-principal-senior-data-scientist-10070775?jobId=jobstreet-sg-job-10070775§ionRank=109&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Roles and Responsibilities
[{'position': 'Snr AI Engineer / AI Engineer for AI Singapore (Innovation)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/snr-ai-engineer-ai-engineer-for-ai-singapore-innovation-10130796?jobId=jobstreet-sg-job-10130796§ionRank=111&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
[{'position': 'Manager (Customer Data Analytics)'}, {'company_name': 'Marina Bay Sands Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'JOB SCOPE': '', 'Background': '', 'Job Responsibilities': 'Monitor the business and highlight trends and opportunities..Translate modelling results and segmentations into business strategy via data/dashboards with impactful visualization..Design data-driven personalized offers and A/B testing..Evaluate the effectiveness of our marketing strategies..Work closely with Business Intelligence, data warehouse, IT and smart IR teams to implement analytical solutions..Lead a team of high performing analysts to deliver excellent results and coach junior team members..', 'JOB REQUIREMENTS': 'Degree in Business/Marketing Analytics, Applied Mathematics, Statistics or other related analytical fields..At least 5 years of hands-on experience in analytics required..Experience in customer analytics from management consulting, Finance or E-commerce Industries preferred..Experience building and implementing predictive models and machine learning preferred..Experience leading a small analytics team will be an added advantage..Casino related experience is a bonus but not compulsory..Programming skills using analytical tools such as Base SAS, SAS EG, SQL, R or Python is required..Highly proficient in data visualization tools, such as Tableau..Strong logical thinking, data analysis and problem-solving skills..Excellent communication and presentation skills..Passionate about data, customers, and building your career with Marina Bay Sands..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '200507292R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '1 day', 'Industry': 'Hotel / Hospitality'}, {'Company Overview': '\n\n\t\tMarina Bay Sands® is Asia’s leading destination for business, leisure and entertainment delivering once-in-a-lifetime experiences. The landmark building is situated in the heart of Singapore’s Central Business District and transforms Singapore’s skyline and the country’s tourism landscape.\n\n\n\t\tThe destination offers a luxury hotel, state-of-the art convention and exhibition facilities, theaters, world-class entertainment and the best shopping and dining in the region. The three hotel towers are crowned by the Sands SkyPark® on the 57th story.\xa0\n\n\nProduct & Services\n\n\n\t\tConveniently located in the heart of the Central Business District and 20 minutes from Changi Airport.\n\n\n\t\t• Hotel: The Marina Bay Sands hotel has three 55-story towers with 2,561 luxury rooms and suites. The three towers are capped by the Sands SkyPark, which offers 360-degree views of Singapore’s skyline. It is home to restaurants, lush gardens, an infinity edged swimming pool and the world’s largest public cantilever housing an observation deck.\n\n\n\t\t• Expo and Conventions: The Sands Expo and Convention Center has 1.3 million square feet of flexible convention and exhibition space. It can host over 45,000 delegates, 2,000 exhibition booths and 250 meeting rooms. It features Southeast Asia’s biggest ballroom, which can accommodate 6,600 people for a banquet, and up to 11,000 for an auditorium-style lecture.\n\n\n\t\t• Shopping: The Shoppes at Marina Bay Sands has 800,000 square feet of retail and dining space. Luxury retailers include Bally, Cartier, CHANEL, Ferragamo, Franck Muller, Gucci, Hermès, Hublot, Hugo Boss, Louis Vuitton, Miu Miu, Omega, Patek Philippe, Prada, Tiffany & Co. and Yves Saint Laurent. New brands include Anne Fontaine, Henry Cotton’s, Leviev, Marisfrolg, Moiselle, Rabeanco, Stefano Ricci, and Wolford.\n\n\n\t\t• Restaurants: Dining at Marina Bay Sands is a gourmet experience with over 50 dining choices. These include celebrity-chef restaurants helmed by Mario Batali, (New York), Daniel Boulud (New York), Wolfgang Puck (Los Angeles), Guy Savoy (Paris), Tetsuya Wakuda (Sydney) and Justin Quek (Singapore).\xa0Marina Bay Sands features signature restaurants, modern bistros and a premium food court.\n\n\n\t\t• Entertainment: Marina Bay Sands energizes the entertainment and nightlife scene in Singapore with nightclubs, world-class entertainment, a museum and a casino.\xa0The museum, which has a lotus-inspired design, will feature blockbuster exhibitions from around the world.\xa0Two state-of-the-art theaters will open with a total of about 4,000 seats. The Broadway hit The Lion King will debut in Sands Theater, with Le Theater presenting shorter-run shows such as concerts, award ceremonies and gala events.\xa0The outdoor event plaza along the promenade next to Marina Bay will host audiences for watching events on the bay or on the plaza.\xa0\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-customer-data-analytics-10111164?jobId=jobstreet-sg-job-10111164§ionRank=113&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
JOB SCOPE
[{'position': 'Data Scientist | Prediction Model #WorkNow'}, {'company_name': 'Achieve Career Consultant Pte Ltd'}, {'small_section': ['Central', 'Posted on 2-Nov-22']}, {'·\xa0\xa0\xa0\xa0\xa0MNC': '', '·\xa0\xa0\xa0\xa0\xa0Central': '', '·\xa0\xa0\xa0\xa0\xa05-day week': '', 'Up to $10k': '', 'Our client,\xa0': '', ',': '', '\xa0Data Scientist.': '', 'RESPONSIBILITIES:': 'Develop python-coded supply-demand forecasting models.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Able to use machine learning to build price forecast models.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Convert excel-based forecasting models to python-based models..Maintain and enhance existing models with changing market dynamics.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Collaborate with data engineers to ensure the data feed for forecast models is collected and processed properly ..Document methodologies, algorithms and processes to present to stakeholders regularly.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.', 'REQUIREMENTS:': 'PHD/Master/Bachelor in relevant field.5-8 years and above with relevant working experience..Preferable in an MNC setup environment..PHD in computer science/computer engineering, math, statistics, or similar subjects is preferred..Extensive data modeling and data architecture skills..', 'OTHER INFORMATION:': 'Location: Central (Raffles Place).Working days:\xa0Monday to Friday (office hour).Salary: Up to $10,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..', 'HOW TO APPLY:': '', 'Janelle Kow Jing Qi': '', 'Janelle at 6590 9964\xa0': '', 'YOUR SUCCESS IS OUR ACHIEVEMENT!': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199801996Z', 'EA No.': '05C3451', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "We're Here to Help People ACHIEVE Success!ACHIEVE is a multi-award-winning ISO 9001 recruiter that has placed more than 40,000 people in positions across industries. Established since 1990, with headquarters in Singapore and an office in Malaysia,\xa0our consultants are specialists in specific areas of specialization, and have the expertise to match candidates with the right permanent positions and contract jobs. In our 30 over years as a recruiter, we are widely recognised by jobseekers, MNCs and SMEs across the Asia Pacific region. A homegrown trusted brand, we are regularly featured in the media and have been honoured with multiple awards by the business community.\xa0In 1H 2022, we were accorded the rare honour of being conferred both the Human Capital Partnership Programme for Employment Agencies (HCP) by the Ministry of Manpower (MOM) and the Singapore Prestige Brand Award (SPBA) by the Association of Small and Medium Size Enterprises (ASME), in recognition of our business transformation efforts and push to build a Singapore core in the workforce!"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-%7C-prediction-model-worknow-10126249?jobId=jobstreet-sg-job-10126249§ionRank=114&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
· MNC
[{'position': 'Research Fellow, - (Process Control/Machine Learning), - (R00010324)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Key Responsibilities:': 'Conduct high-quality studies on data-based/model-based process monitoring and process control for complex chemical and biomolecular systems..Apply theoretical findings through computer simulations and experiments..Publish results in leading journals and conferences in related fields..Assist the PI in supervising PhD students..Attend international conferences to present the results..', 'Job Requirements:': 'Obtained a PhD degree (or will be awarded PhD degree shortly) in Process Control, Control Science And Engineering, Applied Mathematics, Machine Learning or related fields..An excellent track record of research in the corresponding fields..Extensive experience and advanced math skills in control engineering, statistics, optimization, and/or machine learning..Excellent programming skills in, for example, Python, Matlab, Julia..Good written and communication skills..Expertise in state estimation, hybrid system control, network-based control, fault diagnosis, and/or model predictive control, and experience in applying machine learning in control systems are viewed as assets..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-process-control-machine-learning-r00010324-10070252?jobId=jobstreet-sg-job-10070252§ionRank=115&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior AI Developer'}, {'company_name': 'ST Engineering Geo-Insights Pte Ltd'}, {'small_section': ['Ang Mo Kio', 'Posted on 4-Nov-22']}, {'About us': 'Develop machine learning, deep learning algorithms and graph networks using multi-modality data sources such as imagery, text and tabular data for maritime, agriculture, infrastructure and sustainability applications.Work with software team to integrate developed algorithms into geospatial system products.Work with product, business development and sales teams to develop comprehensive geospatial products roadmap.Provide pre and post sales technical support.Degree / Master / PhD in Electrical Engineering, Computer Science, Mathematics or Statistics or equivalent.At least 5-10 years of relevant work experience.Proficient in machine learning and deep learning techniques.Proficient in Python programming and experience with libraries such as PyTorch, openCV, scikit-learn, XGBoost and Prophet.Experience with Git, containerisation and software development workflow.Knowledge of cloud platforms and development would be an advantage.Knowledge of working with geospatial data would be an advantage.Knowledge of Earth Observation Satellite systems and their imaging products would be an advantage.Applicants should be motivated, proactive, able to work independently and results oriented.Location: Ang Mo Kio.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201907611C', 'Company Size': '201 - 500 Employees', 'Industry': 'Science & Technology', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tEncompassing satellite communications ground infrastructure and satellite manufacturing to earth observation and geospatial analytics, our comprehensive range of satellite solutions helps to advance and grow economies, enables tomorrow’s smart cities and shapes the future of how the world connects.\n\n\tA leading satellite communications manufacturer and solutions provider, we power many of the world’s satellite networks that keep people and businesses connected any place, any time. Our universal, multi-access, multi-orbit platform enables customers to offer unified services across any telecommunications network, speeding their time to market and driving profitability. Our breakthrough technologies and solutions enable satellite operators, service providers and network operators around the world to deliver a much wider range of services that will empower end users anywhere in the world with consistent, reliable, high quality experiences across diverse and challenging environments.\n\n\tTogether with our suite of satellite imagery and geospatial analytics services, satellite design, manufacturing and integration, satellite launch and ground operations services, we enable new possibilities and transform how businesses operate.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-ai-developer-10133787?jobId=jobstreet-sg-job-10133787§ionRank=117&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
About us
[{'position': 'Data Scientist'}, {'company_name': 'GMP Technologies - IT'}, {'small_section': ['East', 'Posted on 28-Oct-22']}, {'Data Scientist': 'To improve time-series statistical modeling forecasting accuracy over an 18 month horizon using R and Python on the Google Cloud Platform.To build machine learning models using Python to automate business processes.To analyze structured and unstructured datasets to discover trends and patterns.To dig-in, understand the data, and to use creative thinking and problem-solving skills to design scalable and robust solutions.To present\xa0complex\xa0information\xa0using\xa0data\xa0visualization\xa0techniques\xa0through\xa0dashboards\xa0and reporting such as Microsoft Power BI..Bachelors or master’s degree in Statistics or Mathematics with experience in Python, time\xa0series,\xa0with\xa0a\xa0strong\xa0understanding\xa0and\xa0knowledge\xa0in\xa0time series forecasting; univariate, multivariate, and ensemble modeling..Experience with\xa0database\xa0technologies\xa0(SQL\xa0or\xa0others)\xa0in\xa0querying,\xa0creating databases, stored procedures;\xa0.Experience with\xa0Google Cloud Platform or similar (AWS, Microsoft Azure);\xa0Microsoft Power BI.'}, {'Career Level': 'Entry Level', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '09C3051', 'EA No.': '11C3793', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\nGMP Technologies is a division of The GMP Group.\n\n\t\tFounded in 1991, The GMP Group is one of Asia’s leading staffing and human resource consultancies. Since its inception, the group has progressed to become a regional human capital solutions provider across all industries. Today, GMP is headquartered in Singapore with a branch office in Malaysia. The group’s extensive network and comprehensive services affirm GMP’s role as one of the most dynamic staffing professionals in the region.\n\nRECRUITMENT I TECHNOLOGIES I BANKING I INTERNATIONAL I CONSULTANCY I\n\nVoted on of Top 10 recruitment agencies by HR practitioners since 2006 (Human Resources magazine).\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-10110075?jobId=jobstreet-sg-job-10110075§ionRank=118&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Data Scientist
[{'position': 'Research Fellow (Machine Learning) (R00008200)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 29-Oct-22']}, {'Key Responsibilities:': 'Research on federated learning for industry 4.0.Implement deep learning algorithms.Lead a team of researchers for more efficient outcome delivery.Perform project-related works assigned by the PI.', 'Job Requirements:': 'PhD in computer science/engineering or electrical/electronic engineering..Good programming ability with python.Experience with deep learning algorithms and frameworks, like TensorFlow and Pytorch.Good leadership, responsibility and communication skills.The ability to read and write research papers and technical reports.Fluent in English (written and spoken).Interested applicants are invited to submit a cover letter and full CV in one document..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-r00008200-10053243?jobId=jobstreet-sg-job-10053243§ionRank=119&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'ML Engineer / Data Engineer'}, {'company_name': 'BlueSG Pte Ltd'}, {'small_section': ['East - Others', 'Posted on 1-Nov-22']}, {'Roles and Responsibilities:': 'Work closely with data scientists to support the analysis of data, and the development, validation, and deployment of ML models..Collaborate with DevOps and Business Intelligence teams establish a common data platform and best practices..Participate in technical discussions across the team through code reviews, RFC or architecture review sessions..', 'Requirements:': 'At least 2 years of experience working as an ML engineer or similar..Good understanding of Agile and DevOps practices: version control, CI/CD, Infrastructure-as-Code, containerization, observability/monitoring..Experience working with data scientists in end-to-end production use cases: from feature engineering through to real-time inference..Deep familiarity with data engineering systems such as Airflow, Dagster, Flyte, Spark, or similar..Familiarity with data platforms such as Sagemaker, Dataiku, Databricks, Datarobot, or similar..Familiarity with SQL (PostgreSQL preferred) and NoSQL databases (Redis, Elasticsearch preferred)..Familiarity with AWS data analytics services and databases..', 'Preferred qualifications': 'Hands-on experience supporting high-traffic consumer apps..Data science or related education or work experience..Experience with business intelligence and data warehousing processes and tools: star schema, Hadoop, Redshift, etc..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201617258W', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '12 days', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Medical, Business (e.g. Shirts), Regular hours (Monday - Friday), unless specified in the job description', 'Specific Location': 'Changi South'}, {'Company Overview': 'BlueSG car-sharing service offers a smart, convenient, flexible and affordable mobility option to all Singaporeans, complementing public transport while reducing the need for car ownership. The service’s 100% electric fleet also provides a sustainable transport solution, eliminating direct carbon dioxide emissions as compared to traditional vehicles.\xa0\xa0BlueSG members have 24/7 access to a large network of shared electric Bluecar vehicles, at self-service charging stations located in public housing, city center and commercial estates around Singapore.BlueSG is the only point to point car-sharing service in Singapore, which means there is no need to return the car to your starting point. The service is available to anyone over 20 years of age with a minimum one year’s valid driver’s license.The service launched in 2017, in partnership with the Land Transport Authority (LTA) and Economic Development Board (EDB), as part of efforts to make Singapore’s transport system more sustainable.\xa0\xa0BlueSG was previously a subsidiary of French conglomerate Bolloré Group.\xa0On October 18, 2021, The Goldbell Group, Singapore’s largest player in leasing and distribution of commercial and industrial vehicles, announced the successful finalisation of its acquisition of BlueSG and is set to invest S$40 million to grow the company over the next two years. This amount makes up 60 per cent of the S$70 million that Goldbell Group will invest in the company over the next five years as part of its growth acceleration strategy.Goldbell Group’s immediate priorities are to realise BlueSG’s potential with the expansion of its business and technical capabilities to develop a business model that will be replicated in other smart cities across the Asia Pacific region.\xa0\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/ml-engineer-data-engineer-10075368?jobId=jobstreet-sg-job-10075368§ionRank=120&token=0~401f059c-3f42-4de7-85c8-853377198317&fr=SRP%20Job%20Listing'}]
Roles and Responsibilities:
[{'position': 'Data Engineer (Remote possible)'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Data Engineer (Remote possible)': 'Competitive Remuneration Package.Remote working available.', 'About the Client': '', 'Main Duties & Responsibilities': 'Build scalable batch and real-time data pipelines to ingest data from various channels.Set up a streamlined data lake and data warehouse.Deploy production quality code and maintain data quality.Establish tools for data ingesting and building data cubes\xa0.', 'Experience and Qualifications': 'At least 4 years of experience.Bachelor/Master’s degree in Computer Science, Engineering or a related field, software engineering background preferred.Proficiency in Python, Java or Scala.Hands-on experience implementing ETL (or ELT) best practices at scale.Experience in designing data warehouse – Snowflake, Redshift or Athena.Hands-on experience working with Kubernetes.Experience with stream processing systems (Flink or Spark).Knowledge of big data technologies - Spark, Hadoop, Hive, Kafka, Flink etc. and machine learning is a plus.Familiarity with machine learning tools from AWS or GCP preferred.Knowledge of software engineering concepts will be valuable.', 'Interest & Application': '', 'Personnel Registration No R22109255': '', 'EA license No. 09C5803': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-remote-possible-10132231?jobId=jobstreet-sg-job-10132231§ionRank=123&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Data Engineer (Remote possible)
[{'position': 'Research Fellow (Mathematical AI for Molecular Data Analysis) | [R00008503] #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Responsibilities': 'Perform molecular data analysis, including molecular dynamics analysis, quantum mechanism analysis, geometric and topological modeling.Data analysis with machine learning and deep learning models.', 'Job Requirements': 'PhD in Mathematics, computer sciences, bioinformatics, computational physics/chemistry/biology, or other related areas.Previous experience on topological data analysis, machine learning and molecular data analysis is preferred.Have good training on computation, algorithm design and modeling.Research areas on applied topology, computational geometry/topology, molecular dynamics, bioinformatics, data analysis, and machine learning.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-mathematical-ai-for-molecular-data-analysis-%7C-%5Br00008503%5D-urgent-10138946?jobId=jobstreet-sg-job-10138946§ionRank=124&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Scientist (Visual Intelligence), I2R'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'JOB REQUIREMENT': 'PhD in Computer Science, Computer Engineering, Electronic Engineering or\xa0related fields;.Minimum 1 year of relevant experience in Computer Vision, Deep Learning\xa0or Machine Learning areas;.Good programming skills in Python, working experience in using deep\xa0learning techniques for computer vision applications in the area of feature\xa0representation learning and metric learning, able to at least modify and\xa0improve existing NN architecture for better performance, experienced in\xa0few-shot learning, incremental learning, deep hash embedding, or rankbased\xa0metrics would be most welcome;.Familiar with PyTorch, TensorFlow, Keras or other deep learning frameworks,\xa0computer vision open source libraries, Linux OS and GPU;.Passionate about deploying research outcomes to industry applications\xa0besides publications;.Critical thinker, self-motivated, can work both independently and in teams,\xa0with good analytical, interpersonal, presentation and communication skills..', 'JOB DESCRIPTION': '', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-visual-intelligence-i2r-10127671?jobId=jobstreet-sg-job-10127671§ionRank=125&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
JOB REQUIREMENT
[{'position': 'Solutions Architect (Data Analytics / Artificial Intelligence)'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Responsibilities:': 'Analyses, designs and develops digitalisation roadmaps and implementation plans based on a current versus future state solutions architecture.Analyses the current architecture to identify weaknesses and identifies opportunities for improvement, and performs ongoing architecture quality review activities..Leads and facilitates the solutions architecture governance processes by aligning to the enterprise architecture and manages exceptions to architectural standards at a solutions level.Assesses near-term needs to establish business priorities, analyses and develop solutions architectural requirements, and ensures alignment of architectural requirements with the IT strategy..Work with customers to identify, design and develop AI/ML solutions to address their requirements, challenges and pain points..Engage solution vendors to determine appropriate products that will meet customer DA/AI requirements.Support data analytics solutions response to RFQ and tenders, proposal development and provide post-sales support..Lead and guide project team to develop and implement the solution.Exercise and continually develop leadership, management and technical skills.', 'Requirements:': 'Bachelor’s degree in Data Science, Artificial Intelligence, Computer Science, Engineering or related disciplines..Strong technical knowledge in software architecture, have breadth across technology stacks with deep hands on skills, and passionate about working with customers to help build applications at scale..Knowledge of Continuous Integration/Continuous Delivery environment with change/version control process and methodologies..Knowledge of networking, computing platform, storage, database, security, middleware, network and systems management, and related infrastructure technologies and practices..Experience in designing and building DA/AI solutions (eg cloud native, microservices architecture using containers/Kubernetes), integrated with machine learning pipeline..Experience in all stages of the project lifecycle, e.g. planning, requirements gathering, design documentation, testing, rollout and transition to Ops..Experience in technical presentation, technical documentation..Experience in delivering projects for the defence sector will be a plus..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/solutions-architect-data-analytics-artificial-intelligence-10140456?jobId=jobstreet-sg-job-10140456§ionRank=127&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Fellow (Healthcare AI and Data Analytics)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-healthcare-ai-and-data-analytics-10113451?jobId=jobstreet-sg-job-10113451§ionRank=128&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
[{'position': 'Principal Research Scientist, (Engineering) - (R00003838)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Development of an IOT product line.Responsible for the offer plan and technical/economical decisions.D elivering new IOT solutions and communication architectures for energy utilities.', 'Job Requirements:': 'Master’s or PhD in engineering.Know-How on IoT applications for Energy Efficiency and Grid Applications.Project manment with PMP Certification.Knowledge in Artificial Intelligence applications, IOT platforms and communication.Experience in implementation of an open IoT platform.Cloud security experience.Proficient with SaaS, PaaS, and Openstack/Opensource technologies.Thought leader, and/or certicitation in modern IT/developer operations.Minimum 15 of experience.CWNA or relevant certification is advantous.'}, {'Career Level': 'Senior Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '15 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-research-scientist-engineering-r00003838-10135885?jobId=jobstreet-sg-job-10135885§ionRank=129&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Gaming Industry | Big Data Engineer | Up to $6500'}, {'company_name': 'RecruitFirst Pte. Ltd'}, {'small_section': ['Central', 'SGD\xa05,000 - SGD\xa06,500', 'Posted on 3-Nov-22']}, {'Gaming Industry | Big Data Engineer | Up to $6500': '', 'Your responsibility:': '', 'Hadoop, HiveSQL, Spark': 'Construction of Offline databases.Perform SQL development.', 'Perform SQL development': '', 'data warehouse': '', 'What we are looking for:': 'Min Degree in computer science or relevant with at least 2 years of big data exp.Proficient in Python, Java or other programming language.Proficient in Databases such as MySQL/Hive/Redis.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '13C6342', 'EA No.': '13C6342', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '13 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGrow your company with RecruitFirst!\n\n\n\tThe business environment today is a highly competitive one, which is ever evolving. Having the right human resource business partner with a strong network of consultants and candidates has become key to the success of industry leading businesses.\n\n\n\tRecruitFirst is the fastest growing human resource consultancy in the Asia Pacific. Our mission is Helping People Find Better Jobs, and Organisations Find Better People. We live by this mission by ensuring that the best candidates and employers are connected via the rigorous recruitment processes and extensive database that we are continuously developing.\n\n\n\tBe the first to recruit with us and start realising the value-add that we are able to provide to your organisation!\n\tEnjoy the expansive array of human resource solutions and network which RecruitFirst has to offer.\n\tTogether with our affiliates, we have operations in 8 countries and 10 cities across Asia Pacific – Singapore, Kuala Lumpur, Bangkok, Hong Kong, Shanghai, Beijing, Guangzhou, Taipei, Tokyo and Seoul. This geographical network gives us the strategic advantage of acquiring the best candidates to satisfy the human resource strategies of multi-national companies. In addition, with this large network of consultants, we are also able to provide for all your human resource needs, including, temporary staffing, contract staffing, executive search, payroll services, global placement or management consultancy.\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/gaming-industry-%7C-big-data-engineer-%7C-up-to-%246500-10129271?jobId=jobstreet-sg-job-10129271§ionRank=130&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Gaming Industry | Big Data Engineer | Up to $6500
[{'position': 'AI Engineer (AIAP) for AI Singapore'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-engineer-aiap-for-ai-singapore-10079367?jobId=jobstreet-sg-job-10079367§ionRank=131&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
[{'position': 'Data Science Engineer'}, {'company_name': 'HAIER SINGAPORE INVESTMENT HOLDING PTE. LTD.'}, {'small_section': ['Downtown Core', 'Posted on 3-Nov-22']}, {'KEY RESPONSIBILITIES': 'Based on group big data strategy, develop and implement the data display platform projects in South Asia and Europe, including bottom-level database structure design, data warehouse set up and front desk design & delivery..Enhance the data usage and adjust the operational strategy to save the project implementation cost in South Asia and Europe..Look after the operation and maintenance of the global reporting system..', 'KEY REQUIREMENTS': 'Degree in computer science or its equivalent.With extensive experience in business intelligence and object-oriented development within a commercial environment..Familiar with MS BI Stack and BI reporting tools, including SQL, SSAS, SSIS, SSRS, Tableau, PowerBI, Qlikview, etc..Able to demonstrate solid business understanding in complex B2B and B2C sales environment..Good people skills and able to work with people at all levels..Strong communication, presentation and interpersonal skills..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201129617G', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '20 days', 'Industry': 'Consumer Products / FMCG', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts), To be Discussed', 'Specific Location': 'Raffles Place'}, {'Company Overview': 'Founded in 1984, Haier has grown from its humble beginning as a refrigerator company facing bankruptcy to an international group with global revenues of US$29.5 billion. Its businesses have covered a great range from white goods, telecom and digital products, home solutions, logistics, finance products, real estate projects to biopharmaceutical products. Haier aims to provide innovative solutions for a better life.\n\nIn 2013, Haier ranked the #1 global major appliances brand with a 9.7 percent global market share. This is the fifth consecutive year that Haier topped the ranking.Haier also became the number one manufacture of Major Appliances in the world with 11.6% retail volume share in 2013 for the first time.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-science-engineer-10128316?jobId=jobstreet-sg-job-10128316§ionRank=132&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
KEY RESPONSIBILITIES
[{'position': 'Junior Data Analyst / Scientist'}, {'company_name': 'Dun & Bradstreet (Singapore) Pte Ltd'}, {'small_section': ['Downtown Core', 'Posted on 27-Oct-22']}, {'Responsibilities:': 'Perform data cleaning, pre-processing and feature engineering that will aid in the process of meaningful analysis..Design predictive modelling and credit risk management solution..Support machine learning operations..Monitor and design dashboards and interactive visualization for customer solution delivery..Expand the database through the collection of the data from various sources..Improve the quality of database through data integration and\xa0data analytics..', 'To succeed in this role, you are likely to have the following attributes:': 'Degree/Masters in Computer science/engineering; Data Analytics; Finance/Economics; Quantitative Analysis; or related discipline.*.Experience/Knowledge in Credit Risk would be an advantage*.Competent in SQL to query databases..R Language / Python for statistical modelling and machine learning..Proficiency in\xa0Business Intelligence (BI) tools, such as Power BI, Tableau or other BI softwares.Creative problem solver, able to provide innovative solution to business problems..Strong communication skills..A team player that is able to collaborate across different teams..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200003058W', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '23 days', 'Industry': 'Consulting (Business & Management)', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\nGrowing Relationships Through Data\n\n\t\tDun & Bradstreet (Singapore) Pte Ltd grows the most valuable relationships in business by uncovering truth and meaning from data.\n\nWe Help You Grow Relationships Through Data\n\n\t\tGrowth is the lifeblood of business, and its most fundamental driver is the relationships a company fosters with prospects, customers and partners.\n\n\t\tOver nearly two centuries of helping businesses understand this dynamic, we have honed the expertise of how data and analytics forge the relationships that lead to industry-leading performance. To activate these capabilities, we build – or co-develop with partners – solutions tailored to your role, whether you are in marketing, sales, finance, supply, compliance or information technology. And we deliver this content however you want to consume it.\n\n\t\tOur platform’s foundation is the world’s largest commercial database, with over 240 million company records we derive from 30,000 data sources and update 5 million times per day. We integrate this insight into your core systems, workflows and cloud-based apps in ways that enhance their impact, and we also integrate with your existing data and third-party data sources. Our DUNSRight® process gives us the unmatched ability to turn an enormous stream of data into the high-quality information you need to grow your most valuable relationships.\n\n\t\tWe offer a wide range of solutions for Risk & Finance, Sales and Marketing, Human Resource and Operations professionals. And some of the largest, most successful technology and service companies in the world embed Dun & Bradstreet data within their offerings. These companies include SalesForce, Oracle, KPMG and SAP.\n\nWe Have Served Diverse Organizations Locally and Globally\n\n\t\tFrom banking to high-tech, from retail to energy, more than 34,000 companies and 87% of the Fortune 500 trust Dun & Bradstreet to provide critical data and insights they need to create every-day connections with their most valuable constituents.\n\n\t\tInterested candidates, please email a detailed resume stating the position applied for in the subject matter and stating your current and expected salary via "Apply Now"\n\n\t\t* We regret that only shortlisted candidates will be notified.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/junior-data-analyst-scientist-10057989?jobId=jobstreet-sg-job-10057989§ionRank=133&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Smart Engineer'}, {'company_name': 'Lincstech Circuit Singapore Pte. Ltd.'}, {'small_section': ['East', 'SGD\xa03,100 - SGD\xa04,500', 'Posted on 7-Nov-22']}, {'Responsibilities:': '', 'Requirement:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electronics', 'Registration No.': '197201515R', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Manufacturing / Production', 'Benefits & Others': 'Dental, Medical, Parking, Casual (e.g. T-shirts), Leave and other Flexible Benefits, 12hrs shift work', 'Specific Location': 'Loyang'}, {'Company Overview': "Lincstech Circuit Singapore Pte. Ltd. is a wholly-owned subsidiary of Lincstech Co., Ltd., in Japan. Lincstech Circuit Singapore is one of the leading PCB manufacturing companies globally for high-end complex PCBs. Since our inception, we have been growing in strength and built a great reputation for our leading edge technology and product leadership in quality and reliability. We have been focusing on very high layer advanced MLB/ with sub laminations, big form factor HDI, and Backplane, providing strong technological capabilities and technology availability ahead of market needs through our wide range of customized interconnection solutions supported by our R&D.The success of Lincstech Circuit Singapore is a testimony of our strength and ability in facing challenges of the market and industry amidst globalization, and ever changing technological advances. By staying relevant to customer needs, we remain the preferred partner of choice when it comes to high-end interconnectivity needs. We offer the highest values at leading technology and competitive pricing and take pride in our business philosophy of having goals that are consistent with customers, and making their success as our own success thereby enhancing our enduring successful partnership.Being a fully owned subsidiary of Lincstech Co., Ltd., Lincstech Circuit Singapore enjoys the technological leadership and quality excellence brought about by the company's global capability and its world class R&D networks, enabling us to partner effectively with our customers for all of their electronic interconnectivity needs."}, {'url': 'http://www.jobstreet.com.sg/en/job/smart-engineer-10050951?jobId=jobstreet-sg-job-10050951§ionRank=136&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Project Officer - [Machine Learning] - [R00008199] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Key Responsibilities:': 'Research on federated learning for industry 4.0.Implement deep learning algorithms.Collaborate with other team members for more efficient outcome delivery.Perform administrative works assigned by the PI like documentation, etc.', 'Job Requirements:': 'Bachelor or above in computer science/engineering or electrical/electronic engineering..Good programming ability with python.Experience with deep learning algorithms and frameworks, like TensorFlow and Pytorch.Ability to read and write research papers and technical reports.Fluent in English (written and spoken).'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-%5Bmachine-learning%5D-%5Br00008199%5D-jobsthatmatter-10062918?jobId=jobstreet-sg-job-10062918§ionRank=137&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow (AI Technology) AI Singapore #Seekbetter'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': '', 'Duties & Responsibilities\xa0': '', 'Qualifications': '', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-ai-technology-ai-singapore-seekbetter-10111060?jobId=jobstreet-sg-job-10111060§ionRank=139&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Head\xa0of\xa0Generative Artificial Intelligence - #Worknow'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Head of Generative Artificial Intelligence': 'Golden Opportunity with\xa0Global Defence Consultancy.Career Succession to become Head of Corporate Research Lab.Around S$200k annual package.', 'About the Client': '', 'Main Duties & Responsibilities': "Reporting to the Head of Corporate Research\xa0and\xa0Engineering Centre, leading a team of principal AI Scientists\xa0and\xa0Engineers.Liaise with existing Institute of High Learning (IHLs), Academia\xa0and\xa0Corporate Research Labs for joint Data Analytics\xa0and\xa0Artificial Intelligence Research.Be involved in state-of-the-art AI\xa0and\xa0Data Analytics research, publications, patents on international journals such as IEEE.Build the group's AI\xa0and\xa0Data Analytics research roadmap particularly in Generative AI.Work\xa0with your team to develop POCs for AIDA technologies, Edge solutions, Mobility innovations, Maintenance, Repair\xa0and\xa0Overhaul (MLO).Work\xa0with the Engineering Centre to translate POCs to business products.", 'Education Backgrounds': 'PhD in Computer Science, Engineering, Mathematics\xa0or\xa0equivalent with at least 10\xa0years\xa0of proven Generative AI research\xa0and\xa0product development experience.In-depth knowledge\xa0and\xa0experience in unsupervised learning in the area of digital images, videos, audio\xa0or/and\xa0text.Experience in one of more of the following: Quantum ML, Agent\xa0Based\xa0Simulation, Computational Intelligence, Predictive Maintenance\xa0or/and\xa0Deep Learning.Experience\xa0working\xa0on at least one of the following: Mobility AI/DA, Generative AI, MLO, Edge Analytics.Experience in leading a team of PhD\xa0and\xa0Masters AI Research Scientist, Engineers\xa0and\xa0Software Developers.Prior experience in Research, Corporate Lab, Defence or Consulting industries will be highly preferred.', 'Interest &\xa0Apply': '', 'Personnel Registration\xa0No\xa0R1980978': '', 'EA license\xa0No. 09C5803': []}, {'Career Level': 'Senior Manager', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/head-of-generative-artificial-intelligence-worknow-10039174?jobId=jobstreet-sg-job-10039174§ionRank=141&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Head of Generative Artificial Intelligence
[{'position': 'Research Fellow (Machine Learning for Geothermal Energy Exploration) (R00010122)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Responsibilities': 'Develop modern machine learning techniques for seismic data analysis.Deploy seismic sensors and collect seismic data at possible geothermal sites in Singapore.Use advanced inversion theory to interpret real seismic reflection data.Publish scientific results in high-profile journals.', 'Job Requirements': 'PhD in mathematics, computer sciences, physics, geophysics, engineering or equivalent.Evidence of innovation and/or high quality publications in the area of computational mathematics, computer sciences, applied mathematics or geophysics.Enthusiasm, good communication skills, and able to conduct independent research.Experiences with seismic inversions and massive data processing are preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-for-geothermal-energy-exploration-r00010122-10047391?jobId=jobstreet-sg-job-10047391§ionRank=142&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Engineer'}, {'company_name': 'PIXL SOLUTIONS PTE.LTD.'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa08,000', 'Posted on 31-Oct-22']}, {'Job responsibilities:': '', 'ETL processing:': 'Responsible for data collection, cleaning, and conversion processing based on ElasticSearch Beats, Aws Step Function, and Aws Fluentd systems.', 'System Maintenance\u200b\u200b\u200b:': 'Responsible for data system maintenance of Elasticsearch, Athena, and Bigquery, including data maintenance, system maintenance, and routine troubleshooting.', 'Query and visualization:': 'Responsible for data query and visualization based on Esearch and Athena Bigquery systems, and can handle some data requirements of different departments..', 'Requirements:': 'Bachelor degree or above, major in mathematics, academic, computer related,.At least 1 year related work experience;.At least 1 year of experience in using Admob data analysis;.Master the relevant knowledge of statistical analysis and statistical learning methods;.Understand and master programming languages \u200b\u200b- especially Python..Possess professional data processing and analysis capabilities;.Have the ability to think independently and problems, have a certain ability to deal with work pressure, and be able to withstand work pressure;.Have good expression, communication and negotiation skills;.Data experience in the Internet advertising industry is preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201943748W', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '5 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Casual (e.g. T-shirts), perfomance bonus, Flexible'}, {'Company Overview': 'Pixl Solutions was established in 2019\xa0 and predominantly supplies very sophisticated and reliable IT services to power some of the fastest growing mobile services in the world with a strong specialty in network security and privacy protection. With tens of millions of users endorsing our capabilities, Pixl Solutions strives to help our partners achieve great success through our commitment to excellence in what we do.\xa0Pixl Solutions has its headquarters in Singapore and was set up by a group of serial entrepreneurs who are specialists in software development and marketing for the global market. Founders employs people worldwide, more than 50 percent of whom work outside Singapore as PIXL Solutions owns offices in North America, Taiwan and other countries in Asia.\xa0Combining our engineering excellence, superior product design capability and robust operational support, we help bring Internet freedom to customers over the world.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10119294?jobId=jobstreet-sg-job-10119294§ionRank=143&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Job responsibilities:
[{'position': 'Research Fellow, - (Data Analytics), - (R00005646)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Conduct research on development of data analytic methodologies using techniques such as machine learning, deep learning, artificial neural networks, etc.Summarize and analyze the human factors data collected to date from human factors studies of ambient assisted living for aging population in Asia and finalize and conclude the project with a final report.Assist to supervise one PhD student and 2 FYP students in the Design & Human Factors Lab.Summarize research results for publishing in prestigious journals.Prepare technology disclosure materials for further filing of patents.', 'Job Requirements:': 'PhD in Mechanical, Civil, Electrical and Electronic Engineering or related field.Expertise in project management and constructing report.Knowledge in machine learning and data analytics.Publication track record is an advantage.Proficiency in basics of programming languages such as Matlab and R coding language.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-analytics-r00005646-10135173?jobId=jobstreet-sg-job-10135173§ionRank=144&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Analytics'}, {'company_name': 'ST Engineering Aerospace Ltd'}, {'small_section': ['Paya Lebar', 'Posted on 28-Oct-22']}, {'Job Description': 'Perform data analytics engineering and development on unmanned air systems (UAS) and their sub-systems..Develop web-based dashboards to show results of machine learning (ML) modules..Develop ML modules and applications according to system requirements..Develop and maintain interfaces between ground control systems and machine learning models..Train and re-train ML models when necessary.Manage and train data/image annotators..Work with other members in Data Analytics group (DAG) to support projects..Maintain and update related technical documentation..', 'Requirements': "Bachelor's Degree in Computer Engineering or related technical discipline..Experience in software development using C#, C++ and/or Python..Knowledge in deep learning frameworks such as Tensorflow, PyTorch, Mxnet, Scikit-learn, Numpy, Pandas, TensorRT, IntelOpenVino..Strong problem solving, analytical and conceptual skills, with good communication skills..A good team player who is able to work independently with minimum guidance and monitoring..Preferable:.Experience in embedded platforms (e.g. Nvidia Jetson, Intel UP Squared).Experience using MLOps and ML lifecycle management platforms such as MLFlow, KubeFlow, AirFlow..Experience using Docker..Experience in software packaging, deployment, UAT, and production..Experience in MathLab..Experience in Linux-based operating systems such as Ubuntu or RedHat.\u200b\u200b\u200b\u200b\u200b\u200b\u200b."}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198105870H', 'Company Size': '501 - 1000 Employees', 'Industry': 'Aerospace / Aviation / Airline', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Airport Road'}, {'Company Overview': '\n\tBacked by 40 years of experience and track record in the global aviation industry, we provide integrated nose-to-tail services and solutions through a global network of facilities and affiliates in the U.S., Asia Pacific and Europe.\n\t\n\t\n\t\tWith proven solutions for practically every stage of an aircraft life cycle, our solutions range from design and engineering, original equipment manufacturing, aftermarket and maintenance services, assets management and leasing, to giving ageing aircraft a new lease of life through passenger-to-freighter conversion or refurbishment. We are the only freighter conversion house using original OEM engineering data on both Boeing and Airbus platforms.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-10063009?jobId=jobstreet-sg-job-10063009§ionRank=145&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Engineer/ Senior Data Engineer'}, {'company_name': 'DSBJ PTE. LTD.'}, {'small_section': ['Bishan', 'Posted on 29-Oct-22']}, {'Main Responsibilities:': 'Understand business requirements to design and implement technical solutions that address business needs while adhering to big data architectural principles..Work with the broader data engineer/IT team to ingest various types of data (e.g. structured and unstructured) in the appropriate manner (e.g. batch/real-time) from a variety of data sources..Test data pipelines thoroughly for scalability and reliability to process high data volume, variety and velocity..Develop and implement reliable data transformation and modeling solutions to achieve data curation and build a company-wide data warehouse by taking advantage of cloud-native solutions and in-house developed components..Identify and implement internal process improvements to automate data processing and ensure data integrity while meeting data security standards..Implement and monitor system performance, data security and privacy measures on existing data solutions..Develop backup data archiving systems to ensure system continuity..Perform progress checks, code reviews and documentation on the regular basis..Work with Data Scientists and the Business Analytics team to further process data in order to generate business value..Provide technical guidance and coaching to junior Data Engineer..', 'Job Requirements:': 'Bachelor’s degree in IT, Computer Science, Software Engineering, Business Analytics or equivalent. Advanced university degree would be an additional advantage..Minimum 5 years of experience in data warehousing/lake system.Experience with big data in the cloud environment (e.g. Azure, AWS, Alibaba).Expert in building and optimizing ‘big data’ data pipelines, architectures, and data sets..Expert in building curated and semantic data layer with a systematic approach..Experience in data ingestion, cleaning and enrichment..Excellent experience in data processing using Scala/Python/Java.Proficient in Big data tools and ecosystems (e.g. HIVE, HBase, Kafka, Spark, ...).Knowledge & practices of SDLC process and agile methodologies.Strong in user requirements gathering, maintenance, and support..Highly organized, self-motivated, proactive, and able to plan..Experience in data visualization and BI analytics is a plus.Experience in semiconductor/PCB manufacturing, digital supply chain is a plus..Proficiency in both English and Chinese, to liaise with the Chinese-speaking associates in China HQ office..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201907626H', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '11 days', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts), Fruits Day, Corporate Mobile Plan, Health Screening'}, {'Company Overview': "DSBJ is a leading worldwide technology partner providing critical components for loT intelligence, with a special focus on Telecommunication Equipment and Metal Precision, LED technologies and Interconnect solutions.\xa0 With a vision focused on technological breakthroughs, we constantly bring new innovative solutions, high-tech products and high-quality services that propel our customers to success.\nDSBJ takes surefooted steps forward and takes them quickly.\xa0 In April 2010, 30 years after our inception, we were listed on the Shenzhen Stock Exchange.\xa0 We've continually evolved over three decades, perpetually innovating and strategically transforming ourselves time and time again.\xa0 From a small manufacturing company to a prestigious global player, our successful journey is testament to our vision, innovative spirit and determined belief in technology.\xa0 As we embrace future challenges, we will remain steadfast in our pursuit to benefit both stakeholders and the wider society.\nTechnological innovation is in our DNA and is the cornerstone of DSBJ.\xa0 With cutting-edge production facilities and advanced technology, we constantly deliver state-of-the-art products and quality services.\xa0 Our global network of research bases and offices keeps us abreast of the latest tech breakthroughs, so we can effectively allocate resources wherever they're needed.\xa0 With an established presence in mainland China, Taiwan, South Korea, Finland, India, Sweden, Germany, Poland, Estonia, the US and Mexico, we meet customer needs quickly and competently, providing sales locally in addition to customer service and warehousing capabilities.\nWhile deeply proud of our past, we never lose focus of the future.\xa0 We believe that each and every step is a starting point.\xa0 Through investments, acquisitions and new facilities, we've streamlined our business and expanded frontiers.\xa0 In 2016 we boosted our revenue by acquiring NASDAQ-listed MFLEX, a top 5 player globally in the FPC industry, operating from the US.\xa0 In July 2018 we acquired another world-renowed company from the US: PCB solution specialists Multek.\nAt DSBJ, we embrace every opportunity while keeping up to speed with the changing landscape.\xa0 We consistently explore new avenues and seek next-generation breakthroughs.\xa0 Looking forward, we have the unwavering determination to deliver critical components and innovative solutions that advance loT development and build a smarter, more connected world.\xa0 DSBJ, building a better-connected world for tomorrow."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-senior-data-engineer-10064412?jobId=jobstreet-sg-job-10064412§ionRank=146&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Main Responsibilities:
[{'position': 'Data Architect (Transformation Office)'}, {'company_name': 'National Trades Union Congress (NTUC)'}, {'small_section': ['Central', 'Posted on 1-Nov-22']}, {'Job Description': 'Develop the organisation’s data strategy by translating business needs into data requirements, e.g. data sources, data streams and integrations.\xa0.Define the data architecture framework, standards and principles..Design an enterprise data management framework to ensure high quality data and compliance with personal data laws. This includes processes to plan, acquire, maintain, use and purge data..Develop common data models to support data sharing across software applications and other organisations..Analyse the data requirements for new applications to ensure alignment with the organisation’s data strategy.\xa0.Collaborate with the technical architecture team and digital solutions team to set up the technologies to realise the data strategy.\xa0.', 'Requirements': 'At least 6 years of experience in a similar role.Good foundation in data modelling and data management.Experience in customer relationship management systems is an advantage.Interest in applying AI techniques to enable more insightful data analysis.Enjoys the challenge of setting up a new team and new processes.Strong analytical and problem-solving skills.Able to explain data concepts simply to the business units.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': 'S64TU0450K', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '24 days', 'Industry': 'Non-Profit Organisation / Social Services / NGO', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\n\t\tThe National Trades Union Congress (NTUC) is a national confederation of trade unions as well as a network of professional associations and partners across all sectors in Singapore.\xa0 NTUC is at the heart of the Labour Movement, which comprises 58 affiliated unions, two affiliated associations, 10 social enterprises, six related organisations as well as a growing ecosystem of U Associates and enterprise partners.\n\t\t\n\t\t\n\t\t\tNTUC's objectives are to help Singapore stay competitive and working people remain employable for life; to enhance the social status and well-being of our members and working people; and to build a strong, responsible and caring labour movement.\xa0 Our vision is to be an inclusive Labour Movement for all collars, ages and nationalities.\n\n\t\t\tWe want to CARE for our working people, ensure workplace practices are FAIR for them and GROW our workforce for a better future.\n\n\n\nWe will contact only shortlisted candidates."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-architect-transformation-office-10033472?jobId=jobstreet-sg-job-10033472§ionRank=147&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Project Officer, - (Data Analytics and Software Development) - [R00004052]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Undertake software development for machine learning based parameter estimation.Develop a simulation test-bed.Help other staff and the Principal Investigator work on demos and final report.', 'Job Requirements': 'Bachelor degree in either electrical engineering, software engineering, or computer science, specialized in data analytics and software development.Expert knowledge on software development and machine learning based data analysis techniques.Good programming skills, e.g., matlab, python or C/C++/Java.Any past experience in large-scale traffic systems will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-data-analytics-and-software-development-%5Br00004052%5D-10135877?jobId=jobstreet-sg-job-10135877§ionRank=148&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Principal Research Scientist (MRO)'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Background:': '', 'Job Description:': 'Lead a team of researchers to explore and develop new or improved analytical techniques through both organic and collaborative R&D efforts.Develop POCs to demonstrate viability of DA/AI technologies for our different MRO businesses.Demonstrate research efficacy by publishing conference papers, journal articles and other means of asserting IP ownership.Work with our Group Engineering Centre and lines of businesses to translate research outcomes into commercially viable products or services.', 'Requirements:': "Master's or PhD in Science/Engineering/Mathematics with at least 6 to 10 years of working experience in research & analytical work in the MRO domain.In-depth technical knowledge and experience in any of the following:.Anomaly Detection.Forecasting.Computational Fluid Dynamics.Digital Twins.Computational Intelligence.Operations Research.Deep Learning.Social & Cognitive Computing.Knowledge Representation.Agent-based Simulation.Computer Vision.Behavioural Modelling.Interpretable/Explainable AI.", 'Job Discription': 'Good experience with end-to-end analytics process – ideation/value elicitation, requirements definition, data profiling, analytical modelling, testing, validation, visualization, and solutioning.Strong problem solving skills and passion for artificial intelligence and data science research.Experienced in SQL (any flavour), Python, R, Matlab, Java, C++/ C.Experienced in preparing research papers using standard document preparation tools such as Microsoft Word or Latex.Familiar with distributed computing, modelling & simulation, optimization, and visualization tools.Excellent coordination and time management skills to handle complex projects.Willing and enthusiastic about continuous learning.'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-research-scientist-mro-10070768?jobId=jobstreet-sg-job-10070768§ionRank=150&token=0~e4f969e5-9711-4604-8e20-2e127d0243c1&fr=SRP%20Job%20Listing'}]
Background:
[{'position': 'Data Analytics Intern - (22023748)'}, {'company_name': 'Emerson Asia Pacific Private Limited'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities:': 'Performing research and analysis of sales data gathered from past Sales orders, categorizing them in different product segments..Working with other Lifecycle services engineers, communicating with other product teams and stakeholders to ensure that the developed programs meet requirements.Developing Lifecycle Services solutions or improving existing practices through reviews and discussion with sales and proposal teams,.Communicating with supervisors to gather information about project requirements or to report progress on a project.Providing support to Lifecycle Services personnel by answering questions about specific topics or processes.Conducting technical research to identify issues and propose solutions.Analyzing data to determine possible causes of problems and suggest possible solutions.', 'Job Requirements:': 'Undergraduate student from\xa0Bachelor of Science in Business Analytics.Have basic Microsoft Office Skills.Fast learner, hardworking, highly accountable, detail-oriented, and reliable..Proactive self-starter, good team player, driven, positive attitude, motivated and eager to learn..Basic understanding of measurement automation products and instrumentation (e.g. Flowmeters, Pressure/Temperature transmitter, Analyzers, etc).'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Mechanical', 'Registration No.': '196500174M', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Manufacturing / Production', 'Benefits & Others': 'Dental, Education support, Medical, Parking, Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': 'WHY EMERSONOur Commitment to Our PeopleAcross the globe, we are united by a singular Purpose:\xa0We drive innovation that makes the world healthier, safer, smarter, and more sustainable.We invest in our employees to ensure they have the marketplace knowledge, skills, and competencies to bring this Purpose to life while competing and leading in a global economy.Our training programs focus on end-to-end development, from onboarding through senior leadership.Our success is measured by the positive impact we make on people, our communities, and the world through our unwavering focus on environmental, social, and regulatory progress.\xa0Learn more about us!Our Commitment to Diversity, Equity & InclusionAt Emerson, we are committed to fostering a culture where every employee is valued and respected for their unique experiences and perspectives.We believe a diverse and inclusive work environment contributes to the rich exchange of ideas and diversity of thoughts, that inspires innovation and brings the best solutions to our customers.This philosophy is fundamental to living our company’s values and our responsibility to leave the world in a better place.\xa0\xa0Learn more about our\xa0Culture & Values\xa0and about\xa0Diversity, Equity & Inclusion at Emerson.If you have a disability and are having difficulty accessing or using this website to apply for a position, please contact:\xa0[email\xa0protected]ABOUT EMERSONEmerson is a leading global technology, software and engineering company providing innovative solutions for customers in industrial, commercial, and residential markets.Our Automation Solutions business helps process, hybrid and discrete manufacturers maximize production, protect personnel and the environment while optimizing their energy and operating costs.Our Commercial & Residential Solutions business helps ensure human comfort and health, protect food quality and safety, advance energy efficiency and create sustainable infrastructure.We help customers in the world’s most essential industries solve the biggest challenges of modern life.Every day, our global workforce fulfills our unified Purpose and lives out the Values we hold close as an organization:\xa0Integrity, Safety & Quality, Support Our People, Customer Focus, Continuous Improvement, Collaboration, and Innovation.Our Causes –\xa0Planet, Humanity, Champion, Inclusion and Future\xa0– shape, define and fuel Emerson’s culture while inspiring our innovative spirit and driving our focus.Whether you’re an established professional looking for a career change, an undergraduate student exploring possibilities, or recently received your master’s degree, you’ll find opportunities with us. Join our team and start your journey today!No calls or agencies please.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-intern-22023748-10143278?jobId=jobstreet-sg-job-10143278§ionRank=153&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Associate, (Visual Analytics), - (R00009667)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description:': 'Research into Visual Search and Video Analytics related work, including object detection, person re-identification (reID) & tracking, and search & retrieval.Creation of large-scale datasets for research and algorithm evaluation.Be part of a research team in the execution of funded research projects.Assist in drafting of proposals for research grants in the above areas.', 'Job Requirements:': 'Masters degree in Signal Processing, Engineering, Computer Science, or related field.Research experience in Computer Vision, Pattern Recognition, Deep Learning, and working with large-scale datasets.Experience with object detection & segmentation, person re-identification, and domain adaptation & generalisation is essential.Experience with scripting with game engines (eg. Grand Theft Auto, Unity) and the creation of synthetic datasets would be highly advantageous.Proficiency in software such as PyTorch, TensorFlow, OpenCV, and programming languages such as C/C++ and Python, as well as Linux (eg. Ubuntu) is essential.Knowledge of GPU computing, CUDA programming, optimization (eg. with TensorRT), and industry experience in engineering software development would be an advantage.Good inter-personal skills, with the ability to work with people from varied backgrounds.Proficient in English.\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-visual-analytics-r00009667-10141418?jobId=jobstreet-sg-job-10141418§ionRank=155&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'PERFORMANCE PATHWAYS SCIENTIST'}, {'company_name': 'National Youth Sports Institute'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Requirements': 'A degree in Sport Science or related field.A postgraduate qualification in Physiology, Strength and Conditioning or related field is an advantage.Certified by the Australian Strength and Conditioning Association (ASCA), National Strength and Conditioning Association (NSCA) or similar.Experience utilising a variety of sport science technologies and athlete management systems.Exposure to working in a talent development environment catering to a youth population.Breadth of knowledge and/or certification in other Sport Science disciplines\xa0\xa0.Understanding of data analysis and/or statistics packages (e.g. SPSS, MATLAB, R, Python etc.).Have a passion for sport with active involvement either as an athlete, coach or volunteer.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '26 days', 'Industry': 'Education'}, {'Company Overview': 'National Youth Sports Institute (NYSI) is a central resource, expertise and management body, placed to understand the needs of high performing student-athletes across sports and to address evolving challenges in the sports ecosystem.\nNYSI will propagate tested systems, processes and best practices to the wider youth sports excellence ecosystem in Singapore to aid aspiring talented student-athletes in achieving sporting breakthroughs and win glory for Singapore.'}, {'url': 'http://www.jobstreet.com.sg/en/job/performance-pathways-scientist-10144396?jobId=jobstreet-sg-job-10144396§ionRank=156&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Requirements
[{'position': 'Scientist (Artificial Intelligence), Computing & Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Requirement': '', 'Preferred qualifications (one or more of the following)': []}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-artificial-intelligence-computing-intelligence-ihpc-10117893?jobId=jobstreet-sg-job-10117893§ionRank=157&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Requirement
[{'position': 'Research Engineer'}, {'company_name': 'ASUS Global Pte Ltd'}, {'small_section': ['East', 'Posted on 2-Nov-22']}, {'Experience / Preferred Background': 'Master degree or above in a STEM field such as CS, Engineering or Mathematics/Statistics with a strong interest in machine learning and computer vision..Excellent programming skills in some rapid prototyping environment such as Python; C++ and parallel programming (e.g., CUDA) is a plus..Clearly and effectively present research findings and developments, both verbally and in writing, both internally and externally..Experience with one or more general purpose programming languages, including but not limited to: Python, C++..Experience with machine learning systems, algorithms or applications such as: deep learning, computer vision, unsupervised/semi-supervised learning, meta-learning, or time-series analysis..Previous development experience using NVIDIA, Intel and other potential AI inference accelerators and other tools to complete projects..', 'Essential Soft skills': 'The successful individual will be confident and able to engage across all levels and all functions..Good verbal and written skills will be required..A strong character able to negotiate effectively.Able to perform effectively while “juggling” a number of tasks..Must be organized & take ownership.Team player.', 'Desirable Skills': 'Open-source projects that demonstrate relevant skills and/or publications in relevant conferences and journals (e.g. NeurIPS, ICML, ICLR, CVPR, ICCV, ECCV, ICASSP).Experience with studied the following technologies or engaged in the projects of the following technologies: Self-supervised learning, Active learning, Transformer, Meta learning, Reinforcement learning etc..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '201306935R', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '21 days', 'Industry': 'Computer/Information Technology (Hardware)', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout ASUS:\nASUS is a multinational company known for the world’s best motherboards, PCs, monitors, graphics cards and routers and driven to become the most-admired innovative leading technology enterprise. With a global workforce that includes more than 5,000 R&D professionals, ASUS leads the industry through cutting-edge design and innovations made to create the most ubiquitous, intelligent, heartfelt and joyful smart life for everyone. Inspired by the In Search of Incredible brand spirit, ASUS won thousands of prestigious awards in 2018 and ranked as one of Forbes’\xa0Global 2000 Top Regarded Companies, Thomson Reuters’ Top 100 Global Tech Leaders and Fortune’s World’s Most Admired Companies. \xa0\n關於華碩\n華碩為美國《財富》雜誌評比「世界最受推崇企業之一」,並榮登美國《富比士》雜誌「全球最受信賴企業排行榜」及英國《路透社》「全球科技100強」。產品類別橫跨主機板、顯示卡、筆記型電腦、智慧手機、螢幕、路由器及全方位的科技產品解決方案,並積極拓展電競產品及開創AIOT新領域的各種應用。華碩致力追尋無與倫比的科技創新,為全球使用者創造體貼人心的智慧生活與無所不在的幸福感,以成為「數位新世代備受推崇的科技創新領導企業」為品牌願景。華碩全球員工數約14,500人,擁有世界級研發菁英超過5,000人,產品行銷全球70多個國家,營業額超過100億美元。\n\nToday, ASUS is looking to expand its presence in Singapore and is looking for enthusiastic, aggressive and career-minded individuals to join the team.\nFor more details, please visit https://www.asus.com/sg/.\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-10037530?jobId=jobstreet-sg-job-10037530§ionRank=158&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Experience / Preferred Background
[{'position': 'Data Engineer'}, {'company_name': 'BYD (Singapore) Pte. Ltd.'}, {'small_section': ['North - Others', 'Posted on 3-Nov-22']}, {'Responsibilities:': '', 'Requirements:': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '201409518W', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '10 days', 'Industry': 'Automobile / Automotive Ancillary / Vehicle', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Carrors Cantre'}, {'Company Overview': 'BYD is one of China’s largest companies and has successfully expanded globally. Specializing in battery technologies, their green mission to “solve the whole problem” has made them industry pioneers and leaders in several High-tech sectors including High-efficiency Automobiles, Electrified Public Transportation, Environmentally-Friendly Energy Storage, Affordable Solar Power and Information Technology and Original Design Manufacturing (ODM) services.\nBYD (Singapore) Pte. Ltd. was established to develop the electrified transportation solutions for local customers, includes electric cars, buses, forklifts and new energy products.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10128752?jobId=jobstreet-sg-job-10128752§ionRank=159&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Full Stack Engineer (AI Products)'}, {'company_name': 'Mediacorp Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Description': '', 'Responsibilities': 'Design\xa0and\xa0develop prototype of AI Applications / Products\xa0.Architect\xa0and\xa0implement scalable\xa0and\xa0robust production-grade web applications on top of AI/ML systems computing on large volumes of datasets.Write\xa0and\xa0automate unit, functional, integration\xa0and\xa0performance tests in a Continuous Integration\xa0environment.Take full ownership of Technology & Engineering responsibility.Work\xa0closely with stakeholders to ensure high standards of data governance during implementation.', 'Qualifications': "Bachelor's\xa0degree\xa0in Computer Science, Computer Engineering\xa0or\xa0related fields.5+\xa0years\xa0of full-stack software development experience\xa0.Experience in developing end-to-end AI applications / products is a\xa0strong\xa0plus.Proficiency\xa0and\xa0hands on experience with web development stacks such as Angular/React with Typescript, Node.js, HTML & CSS.\xa0.Experience with Python is a\xa0strong\xa0plus.Experience with ETL\xa0and\xa0implementing efficient data pipelines\xa0.Strong\xa0Knowledge with both relational\xa0and\xa0non-relational databases.Familiar with software development skills, such as agile methodologies, testing, version control,\xa0and\xa0CI/CD.Experience with Cloud Services\xa0and\xa0Products (AWS, GCP, Azure, etc)\xa0.", 'Thank you for your interest\xa0and\xa0application to this role. Please note that only short-listed\xa0candidates\xa0will be contacted.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199201312E', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Entertainment / Media', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\nMediacorp is Singapore’s leading media company with the most complete range of platforms, spanning television, radio, newspapers, magazines, movies, digital and out-of-home media.\n\t\t\xa0\n\n\t\tIt pioneered the development of Singapore’s broadcasting industry, with the broadcast of Radio in 1936 and Television in 1963.\n\n\t\tToday, Mediacorp has over 50 products and brands in four languages (English, Mandarin, Malay and Tamil), reaching out to all adults in Singapore every week.\n\n\t\tInitiatives in the new digital space include Internet TV-on-demand, High Definition TV broadcast and Over-the-Top (OTT) interactive services.\n\t\n\tBeyond Singapore, Mediacorp is an active regional player through co-productions in TV dramas and movies, magazines publishing, as well as Channel NewsAsia International, one of the first Asian-owned English news channels.\n\t\n\t\n\t\tOur financial and strategic relationship in the region includes International Media Corporation in Vietnam, which was set up to develop and produce television entertainment and economic news content. Mediacorp also has a stake in Singapore-based retail firm Reebonz, one of the region's fastest growing luxury online retailers and a majority stake in Cubinet Interactive, a Malaysian digital games publisher.\n\t\n\tWinner of numerous international awards and accolades including Asian Television Awards' Terrestrial Broadcaster of the Year, Mediacorp’s mission is to engage, entertain and enrich audiences by harnessing the power of creativity.\n\t\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/full-stack-engineer-ai-products-10140386?jobId=jobstreet-sg-job-10140386§ionRank=160&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Principal investigator for Clinical Data Hub (BII)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 11 hours ago']}, {'Job scope and responsibilities:': 'Heading the clinical data hub division consisting of 3 other laboratories..Lead own laboratory developing secure infrastructure for our clinical data analysis pipelines..Collaborate closely with clinicians and with faculties within the Bioinformatics Institute and within the local ecosystem.Collaborate with industrial partners to translate technologies into the clinics.Lead large research grant proposals (SGD10-20million quantum).', 'Requirements:': 'Strong records in leading research departments or research divisions in clinical data management and analysis.Outstanding research outcomes with strong publication records.Excellent communication (oral and written)\xa0and presentation\xa0skills.Strong records of strategic thinking ability and strong records of leading large research proposals.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-investigator-for-clinical-data-hub-bii-10097024?jobId=jobstreet-sg-job-10097024§ionRank=161&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job scope and responsibilities:
[{'position': 'Engineer'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Description': 'Work with internal and external stakeholders including customers, partners and colleagues to solicit requirements, design, develop, test and maintain\xa0Machine Learning\xa0systems.Responsible for documentation of system specifications.Conduct technical exploration of new Machine Leaning tools, techniques and platforms.Assist to maintain Machine Learning/AI knowledge repository.Support pre-sales initiatives, proposal development and provide post-sales support for Machine Learning systems.', 'Job Requirements': 'Degree, Master’s Degree or PhD in Computer Science/Engineering, Knowledge Engineering, Information Systems, Information Technology, Mathematics or equivalent with working experience in\xa0development of Machine Learning systems.Recognized professional or industrial certifications in relevant Machine Learning technologies or competencies.At least 1-3 years of professional experiences in design and development of Machine Learning systems.In-depth technical knowledge in at least two of the below areas:.Data Modelling.Data Mining.Statistical Analysis.Simulation.Operations Research.Data Visualisation.Predictive Analytics.Technical expertise in Python, R, SQL, Java, C/C++, MATLAB, Scala etc..Knowledge of big data technologies e.g. Hadoop, Spark, Hive, HBase etc. will be an added advantage.Knowledge of cloud computing platforms e.g. AWS, Google Cloud Platform, Microsoft Azure will be an added advantage\xa0.Experience in agile development methodologies.Knowledge of\xa0MLOps best practices in model development and deployment, CI/CD, version control etc..Excellent written and verbal communications skills;.Highly organized, motivated, independent and resourceful team player.Strong analytical thinking, interpersonal and problem-solving skills.Able to work productively in an agile and fast-paced consulting environment.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/engineer-10073273?jobId=jobstreet-sg-job-10073273§ionRank=162&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Analyst'}, {'company_name': 'Central Provident Fund Board'}, {'small_section': ['Novena', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Conduct research, in particular Randomised Control Trials, to obtain insights.Deliver insights with the appropriate analytics methodologies and techniques to help departments meet business objectives.Conduct analysis and build analytic models that improve policy targeting, optimise decisions and inject predictive intelligence to business decisions.Able to interpret technical statistical results and communicate insights through storytelling\u200b.', 'Required Attributes': ''}, {'Career Level': 'Manager', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Others, Others', 'Registration No.': 'T08GB0007E', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '13 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Flexible Dress Code'}, {'Company Overview': '\n\tIn CPF Board, we believe in achieving our mission and vision through motivated people who are committed to learn, upgrade and innovate.\n\n\tPeople are important. Therefore, we create opportunities for our staff to develop their potential through our well-structured training & career development programme. We have also in place an attractive remuneration and benefits package.\n\n\tWe are looking for highly motivated, talented and committed professionals to join us in our mission to enable Singaporeans save for a secure retirement. If you have the relevant working experience, take up the challenge and apply today.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-10143408?jobId=jobstreet-sg-job-10143408§ionRank=164&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Head (Data Science), Analytics Centre of Excellence'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities': 'Key Member of Analytics Centre of Excellence (COE), a community where like-minded professionals come together to cross learn, acquire exposure and contribute to the delivery of data analytics projects across A*STAR..Work with business stakeholders/users to develop end-to-end advanced analytics solutions, from problem & use case formulation, data sourcing to develop and deploying the solution into production..Work with business users to continue improving the enterprise analytic platform, tools, and reusable assets..Work and share with Analytics COE & community to continue develop advanced analytics capabilities, adoption of best-in-class techniques and practices..Responsible for providing operational support and maintenance of the analytics infrastructure platform and system..Responsible to curate, develop and conduct training sessions/workshops to equip COE members and wider A*STAR officers with the necessary data analytics/science knowledge and skills..Assume Tech-lead role to coach junior data scientists and instill best practices.', 'Job Requirements': 'Bachelor’s/Master’s degree in computer science/engineering, information technology, business analytics, data science or artificial intelligence with strong focus in data mining, statistical / mathematical modellings, or machine learning..5+ years of experience in conceptualizing and developing advanced analytics or data science solutions to solve business problems..Familiar with analytics and machine learning platforms and how it integrates with upstream and downstream data and production systems..Experience of working with business users to gather/understand user requirements and working with tech/data team to improve analytics platform to resolve user pain points..Experience of managing complex and cross departments/domain projects..Full stack data science experience covering end-to-end problem formulation, developing training pipeline and deploying solution to production..Familiar with developing machine learning pipelines following dev practice such as versioning, branching, merging, linting, testing and writing codes in structured and modularized way..Able to analyze business needs, articulate the solution framework including the model output, business decision and potential impact to drive the adoption of the solution..Excellent problem-solving skills and strategic thinker..Excellent written, oral & inter-personal communication skills..Technical skills in SQL, Python/R, advanced analytics & visualization tools such as Tableau, QlikSense, PowerBI, SAS or MicroStrategy, ML packages and tools..Practical experience of cloud environments, especially GCC, will be an added advantage.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/head-data-science-analytics-centre-of-excellence-10123579?jobId=jobstreet-sg-job-10123579§ionRank=165&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Scientist (AI/ML, Text Analysis, CV), Computing and Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job description': '', 'The responsibilities include, but are not limited to:': 'Conducting world-class research in AI and machine learning to be recognized by local and international communities.Work with peers in IHPC and collaborators to advance research and develop innovative applications in AI and machine learning.Publish high impact papers to advance science.Propose and lead new projects leveraging state-of-the-art algorithms in both research and application domains.Execute projects to ensure timely delivery or milestones with high quality outcomes.', 'Job requirements': 'PhD in Computer Science / Electrical & Electronics Engineering / Computer Engineering or related fields.Relevant work experience in industry and/or academia in AI and machine learning.Strong programming skills, specially in Python.Familiarity with popular ML frameworks such as TensorFlow, Pytorch Keras, SKLearn, Pandas.Experience and passion on machine learning, deep learning and AI are preferable.Smart and hardworking individual who can work under pressure within a tight deadline.A good team player with can-do attitude.Solid communication and problem-solving skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-ai-ml-text-analysis-cv-computing-and-intelligence-ihpc-10124056?jobId=jobstreet-sg-job-10124056§ionRank=166&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Professional Officer (Centre for Digital Enablement -- Data Architect) 498109 #Immediate'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities': 'Collaborate with faculty and corporate divisions on the data-related LLOS projects..Supervise external parties and mentor students in the development of the projects..Analyse user requirements, research, design, write, maintain, and/or disseminate the new data operation components..Manage digital technology related resources within the division such as (but not limited to) being a system administrator for software, hardware systems, and equipment..Provide support in ad-hoc activities such as (but not limited to) promoting awareness in digital and data literacy..Develop and deliver digital skills literacy related courses or workshops to undergraduate students and staff. Development of learning activities and assessment of students is one of the responsibilities..Provide consultations to undergraduate students and staff on digital skills/technology related queries and access feasibility of potential project ideas..', 'Job Requirements': 'Holding a PhD or Master degree in Electronic Engineering or Computing science from a recognized University, with 3-5 years of relevant experience..Have published in renowned international scientific conferences and/or journals..Proficient in programming and experienced in several languages such as (but not limited to) C, C++, Java, Python..Experience in data warehouse, data lake, data analytics, and various big data platforms and tools such as (but not limited to) Apache Hadoop, Apache Attic, Apache Impala, Apache Spark..Experience in cloud platforms such as Amazon Web Services, Microsoft Azure, and or Google Cloud Platform. Holding a valid official professional certification for the platform will be an additional advantage..Experience in using statistical programming tools to manipulate data and draw insights from large data sets..Has knowledge of a variety of machine learning techniques such as (but not limited to) clustering, decision tree learning, artificial neural network, and their real-world advantages/drawbacks..Has knowledge of advanced statistical techniques and concepts such as (but not limited to) regression, properties of distributions, statistical tests, and proper usage..Keen interest to support academic project work, with demonstrated ability in developing software solutions to technical problems..Possess strong supervisory skills and project management skills..Enjoy working with students in an educational environment..Demonstrate proficiency to stay up to date on emerging technologies and new applications..Good interpersonal skills and ability to work individually or in a team and with other divisions..Innovative mindset and passion in digital technology is required..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/professional-officer-centre-for-digital-enablement-data-architect-498109-immediate-10108357?jobId=jobstreet-sg-job-10108357§ionRank=168&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': '#Professional Officer (Centre for Digital Enablement - Data Architect) 498109 #Immediate'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities': 'Collaborate with faculty and corporate divisions on the data-related LLOS projects..Supervise external parties and mentor students in the development of the projects..Analyse user requirements, research, design, write, maintain, and/or disseminate the new data operation components..Manage digital technology related resources within the division such as (but not limited to) being a system administrator for software, hardware systems, and equipment..Provide support in ad-hoc activities such as (but not limited to) promoting awareness in digital and data literacy..Develop and deliver digital skills literacy related courses or workshops to undergraduate students and staff. Development of learning activities and assessment of students is one of the responsibilities..Provide consultations to undergraduate students and staff on digital skills/technology related queries and access feasibility of potential project ideas..', 'Job Requirements': 'Holding a PhD or Master degree in Electronic Engineering or Computing science from a recognized University, with 3-5 years of relevant experience..Have published in renowned international scientific conferences and/or journals..Proficient in programming and experienced in several languages such as (but not limited to) C, C++, Java, Python..Experience in data warehouse, data lake, data analytics, and various big data platforms and tools such as (but not limited to) Apache Hadoop, Apache Attic, Apache Impala, Apache Spark..Experience in cloud platforms such as Amazon Web Services, Microsoft Azure, and or Google Cloud Platform. Holding a valid official professional certification for the platform will be an additional advantage..Experience in using statistical programming tools to manipulate data and draw insights from large data sets..Has knowledge of a variety of machine learning techniques such as (but not limited to) clustering, decision tree learning, artificial neural network, and their real-world advantages/drawbacks..Has knowledge of advanced statistical techniques and concepts such as (but not limited to) regression, properties of distributions, statistical tests, and proper usage..Keen interest to support academic project work, with demonstrated ability in developing software solutions to technical problems..Possess strong supervisory skills and project management skills..Enjoy working with students in an educational environment..Demonstrate proficiency to stay up to date on emerging technologies and new applications..Good interpersonal skills and ability to work individually or in a team and with other divisions..Innovative mindset and passion in digital technology is required..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/professional-officer-centre-for-digital-enablement-data-architect-498109-immediate-10106231?jobId=jobstreet-sg-job-10106231§ionRank=169&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Professional Officer (Centre for Digital Enablement - Data Architect) (498109) #Immediate'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities': 'Collaborate with faculty and corporate divisions on the data-related LLOS projects..Supervise external parties and mentor students in the development of the projects..Analyse user requirements, research, design, write, maintain, and/or disseminate the new data operation components..Manage digital technology related resources within the division such as (but not limited to) being a system administrator for software, hardware systems, and equipment..Provide support in ad-hoc activities such as (but not limited to) promoting awareness in digital and data literacy..Develop and deliver digital skills literacy related courses or workshops to undergraduate students and staff. Development of learning activities and assessment of students is one of the responsibilities..Provide consultations to undergraduate students and staff on digital skills/technology related queries and access feasibility of potential project ideas..', 'Job Requirements': 'Holding a PhD or Master degree in Electronic Engineering or Computing science from a recognized University, with 3-5 years of relevant experience..Have published in renowned international scientific conferences and/or journals..Proficient in programming and experienced in several languages such as (but not limited to) C, C++, Java, Python..Experience in data warehouse, data lake, data analytics, and various big data platforms and tools such as (but not limited to) Apache Hadoop, Apache Attic, Apache Impala, Apache Spark..Experience in cloud platforms such as Amazon Web Services, Microsoft Azure, and or Google Cloud Platform. Holding a valid official professional certification for the platform will be an additional advantage..Experience in using statistical programming tools to manipulate data and draw insights from large data sets..Has knowledge of a variety of machine learning techniques such as (but not limited to) clustering, decision tree learning, artificial neural network, and their real-world advantages/drawbacks..Has knowledge of advanced statistical techniques and concepts such as (but not limited to) regression, properties of distributions, statistical tests, and proper usage..Keen interest to support academic project work, with demonstrated ability in developing software solutions to technical problems..Possess strong supervisory skills and project management skills..Enjoy working with students in an educational environment..Demonstrate proficiency to stay up to date on emerging technologies and new applications..Good interpersonal skills and ability to work individually or in a team and with other divisions..Innovative mindset and passion in digital technology is required..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/professional-officer-centre-for-digital-enablement-data-architect-498109-immediate-10106296?jobId=jobstreet-sg-job-10106296§ionRank=170&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Data Analytics - FCV Internship - (22023601) #UrgentHire'}, {'company_name': 'Emerson Asia Pacific Private Limited'}, {'small_section': ['Singapore', 'Posted 5 minutes ago']}, {'Job Responsibilities:': 'Support market data analysis and data visualization projects to drive business cases and recommendations, monitoring its impact.\xa0.Collaborate with engineers, product managers, marketing and operation teams to provide statistics or business data that can help to drive business insights, and partner with local markets to draw strategic insights and provide recommendations to capture business growth opportunities..Operate analytics and reporting software to extract data according to different measurement purposes..Design logic and rules to combine data from multiple sources..Conduct data collection, and analyze and discover insights from raw data using SQL, Tableau, etc..Build dashboards using Power BI according to business needs.\xa0.Develop reports showing insights from current and historical data to identify business opportunities, forecast possible future events, and inform effective business strategy for the future.', 'Job Requirements:': 'Currently pursuing a Bachelor’s Degree in Business Analytics, Data Science, Statistics, Computer Engineering, Computer Science, or a related field..Familiar with analytic and reporting tools (eg. Power BI, SQL, Tableau) and advanced usage of Microsoft Excel.\xa0.Strong ability to analyze and interpret trends from raw data, prepare data for analysis and build dashboards that provide descriptive and predictive insights.\xa0.Ability to solve problems with an analytical and logical approach.Strong interest in user behavior analytics and marketing analytics.Understanding of the different metrics used to measure business performance.Good interpersonal, communication, and problem-solving skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '196500174M', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Manufacturing / Production', 'Benefits & Others': 'Dental, Education support, Medical, Parking, Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': 'WHY EMERSONOur Commitment to Our PeopleAcross the globe, we are united by a singular Purpose:\xa0We drive innovation that makes the world healthier, safer, smarter, and more sustainable.We invest in our employees to ensure they have the marketplace knowledge, skills, and competencies to bring this Purpose to life while competing and leading in a global economy.Our training programs focus on end-to-end development, from onboarding through senior leadership.Our success is measured by the positive impact we make on people, our communities, and the world through our unwavering focus on environmental, social, and regulatory progress.\xa0Learn more about us!Our Commitment to Diversity, Equity & InclusionAt Emerson, we are committed to fostering a culture where every employee is valued and respected for their unique experiences and perspectives.We believe a diverse and inclusive work environment contributes to the rich exchange of ideas and diversity of thoughts, that inspires innovation and brings the best solutions to our customers.This philosophy is fundamental to living our company’s values and our responsibility to leave the world in a better place.\xa0\xa0Learn more about our\xa0Culture & Values\xa0and about\xa0Diversity, Equity & Inclusion at Emerson.If you have a disability and are having difficulty accessing or using this website to apply for a position, please contact:\xa0[email\xa0protected]ABOUT EMERSONEmerson is a leading global technology, software and engineering company providing innovative solutions for customers in industrial, commercial, and residential markets.Our Automation Solutions business helps process, hybrid and discrete manufacturers maximize production, protect personnel and the environment while optimizing their energy and operating costs.Our Commercial & Residential Solutions business helps ensure human comfort and health, protect food quality and safety, advance energy efficiency and create sustainable infrastructure.We help customers in the world’s most essential industries solve the biggest challenges of modern life.Every day, our global workforce fulfills our unified Purpose and lives out the Values we hold close as an organization:\xa0Integrity, Safety & Quality, Support Our People, Customer Focus, Continuous Improvement, Collaboration, and Innovation.Our Causes –\xa0Planet, Humanity, Champion, Inclusion and Future\xa0– shape, define and fuel Emerson’s culture while inspiring our innovative spirit and driving our focus.Whether you’re an established professional looking for a career change, an undergraduate student exploring possibilities, or recently received your master’s degree, you’ll find opportunities with us. Join our team and start your journey today!No calls or agencies please.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-fcv-internship-22023601-urgenthire-10148796?jobId=jobstreet-sg-job-10148796§ionRank=172&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Executive, Data & Research,'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': 'Support administration surveys, including executing survey fieldwork, verifying cleaning survey data, post-survey administration.Support data operations, including acquiring data, managing, updating maintaining various datasets databases.Perform data analysis report findings in form reports, infographics presentations.Conduct scans, literature search collect relevant data related entrepreneurship innovation.Provide administrative data support for special or ad-hoc projects..', 'Qualifications': 'A Honours with grounding in quantitative techniques. Candidates with pos qualifications in these fields ..', 'Essential Knowledge:': 'Data literacy; grasp descriptive inferential data concepts.Familiarity with at least one statistical software such as SPSS STATA; data manipulation eadet software such as Excel.Basic survey design on platforms such as Google Forms Qualtrics.', 'Additional Knowledge Skills would be an advant:': 'Data modeling, Data visualisation, Machine Learning concepts, exposure entrepreneurship innovation concepts.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/executive-data-research-10110524?jobId=jobstreet-sg-job-10110524§ionRank=173&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Fellow, - (Data Analytics), - (R00005646) #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Conduct research on development of data analytic methodologies using techniques such as machine learning, deep learning, artificial neural networks, etc.Summarize and analyze the human factors data collected to date from human factors studies of ambient assisted living for aging population in Asia and finalize and conclude the project with a final report.Assist to supervise one PhD student and 2 FYP students in the Design & Human Factors Lab.Summarize research results for publishing in prestigious journals.Prepare technology disclosure materials for further filing of patents.', 'Job Requirements:': 'PhD in Mechanical, Civil, Electrical and Electronic Engineering or related field.Expertise in project management and constructing report.Knowledge in machine learning and data analytics.Publication track record is an advantage.Proficiency in basics of programming languages such as Matlab and R coding language.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-analytics-r00005646-worknow-10135925?jobId=jobstreet-sg-job-10135925§ionRank=174&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow (Machine Learning and Human Machine Interaction)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science & Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on image/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-machine-interaction-10055697?jobId=jobstreet-sg-job-10055697§ionRank=177&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow (Artificial Intelligence) T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted 11 hours ago']}, {'Job Description:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': 'Independent and self-motivated researcher.Good paper reading and writing skills.Excellent publication record, including top-tier journals and conference papers in the related fields..Strong in Mathematics.', 'Coding Skills:': 'Familiar with any of the major deep learning libraries, including Pytorch, TensorFlow, MatConNet.Familiar with the image processing and optimization toolboxes in Matlab.Comfortable with Linux environment, including using vim, git, tmux, bash, etc.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-t-10096597?jobId=jobstreet-sg-job-10096597§ionRank=178&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Associate (Computer Science/IT), [R00007075]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 4-Nov-22']}, {'Job Responsibilities': 'Co-evaluate business needs and objectives.Identify opportunities for data acquisition.Build data systems and pipelines.Build algorithms and prototypes.Analyze and organize raw data.Interpret trends and patterns.Conduct data analysis, working independently or with data analysts, and report on results.Prepare data for prescriptive and predictive modeling.Combine raw information from different sources.Explore ways to enhance data quality and reliability.Develop analytical tools and programs.Collaborate with data scientists and architects.', 'Job Requirements': 'Master in Computer Science, IT, or similar field.Previous experience as a data engineer or in a similar role.Technical expertise with data models, data mining, and segmentation techniques.Knowledge of programming langus\xa0 (e.g. Java and Python).Hands-on experience with SQL database design.Great numerical and analytical skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-it-%5Br00007075%5D-10134882?jobId=jobstreet-sg-job-10134882§ionRank=180&token=0~82e92811-c259-4af3-8b19-8d83f573fee5&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow (Neuroscience)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description': '', 'Qualifications': '', 'More Information': []}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-neuroscience-10114509?jobId=jobstreet-sg-job-10114509§ionRank=182&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Fellow, (Signal Processing and Machine Learning) (R00003631)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Develop signal processing and machine learning algorithms and methods.Perform software/hardware implementation and empirical studies.Prepare reports and presentations.Conduct project presentations and seminars.Help to supervise graduate students and contribute to proposal writing.Assist the PI in various research admin tasks.', 'Job Requirements': 'Ph.D. in Electrical Engineering, Computer Science, Statistics or other related fields.Solid Mathematical skills.Background in graph signal processing, probability theory and statistical signal processing.Experience in implementing algorithms for machine learning and data analytics.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-signal-processing-and-machine-learning-r00003631-10046451?jobId=jobstreet-sg-job-10046451§ionRank=183&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Sr. Data Platform Engineer- Java/ Kafka'}, {'company_name': 'Avensys Consulting Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa07,000 - SGD\xa012,000', 'Posted on 3-Nov-22']}, {'Job Responsibilities:': '', 'WHAT’S ON OFFER': '', 'CONSULTANT DETAILS': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200710657H', 'EA No.': '12C5759', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '1 day', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tAvensys is a leader in providing technology enabled business solutions and services. Since inception, Avensys has helped clients use IT more efficiently to improve their operations and profitability, focus on core competencies and achieve business results such as increased agility, innovation and profitable growth. Our in-depth technical knowledge coupled with industry experience and our unique methodologies enable us to successfully deliver and meet our customer’s expectations.'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-data-platform-engineer-java-kafka-10128964?jobId=jobstreet-sg-job-10128964§ionRank=184&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Assistant (Computer Science, Machine Learning) #Worknow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities:': 'Work on a project to conduct the research and development of semantic document representations used for search and retrieval..Integration of contextual information, topics, references, key words, tags together to form a NLU model..Development of learn to rank models to achieve Natural Language Understanding..Attend regular meetings and prepare for presentations with the project sponsor’s team.Help to draft the project report for both the funding agent and project sponsor.', 'Job Requirements:': 'BEng/BSc in Computer Science, machine learning or related discipline with specialization in deep learning, natural language processing.1+ year research experience in AI/machine learning or related fields.Good analytical, technical and problem-solving skills.Expertise in NLP Information Retrieval and Graph Representation Learning is a bonus.Experiences in contrastive learning, NLP related projects are highly preferred.Strong programming skills in programming languages such as Python/Pytorch/Transformer libraries.Good communication skills.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-machine-learning-worknow-10051503?jobId=jobstreet-sg-job-10051503§ionRank=185&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Fellow, - R00004310 T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted 11 hours ago']}, {'Key Responsibilities:': "Conduct research in human-centered AI and data science for ATM systems.Develop explainable, cognitive- and neuro-inspired algorithms for ATM problems.Improve transparency, reliability, resiliency behind AI's decisions and recommendations.Study ATCO's experiences (i.e., trust and experience) with intelligent tools.", 'Job Requirements:': 'PhD degree in computer science or electrical engineering.Strong theoretical background in machine learning, computational intelligence and optimization.Experience in real-world machine-learning and data science projects.Strong programming skills in Python, C++.Experience in the human-machine interface and aerospace engineering is a plus.Good English writing and communication skills.Independent and team player.Good publication records.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-r00004310-t-10096558?jobId=jobstreet-sg-job-10096558§ionRank=186&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist | Prediction Model'}, {'company_name': 'Achieve Career Consultant Pte Ltd'}, {'small_section': ['Central', 'SGD\xa07,000 - SGD\xa010,000', 'Posted on 28-Oct-22']}, {'·\xa0\xa0\xa0\xa0\xa0MNC': '', '·\xa0\xa0\xa0\xa0\xa0Central': '', '·\xa0\xa0\xa0\xa0\xa05-day week': '', 'Up to $10k': '', 'Our client,\xa0': '', ',': '', '\xa0Data Scientist.': '', 'RESPONSIBILITIES:': 'Develop python-coded supply-demand forecasting models.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Able to use machine learning to build price forecast models.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Convert excel-based forecasting models to python-based models..Maintain and enhance existing models with changing market dynamics.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Collaborate with data engineers to ensure the data feed for forecast models is collected and processed properly ..Document methodologies, algorithms and processes to present to stakeholders regularly.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.', 'REQUIREMENTS:': 'PHD/Master/Bachelor in relevant field.5-8 years and above with relevant working experience..Preferable in an MNC setup environment..PHD in computer science/computer engineering, math, statistics, or similar subjects is preferred..Extensive data modeling and data architecture skills..', 'OTHER INFORMATION:': 'Location: Central (Raffles Place).Working days:\xa0Monday to Friday (office hour).Salary: Up to $10,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..', 'HOW TO APPLY:': '', 'Janelle Kow Jing Qi': '', 'Janelle at 6590 9964\xa0': '', 'YOUR SUCCESS IS OUR ACHIEVEMENT!': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199801996Z', 'EA No.': '05C3451', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "We're Here to Help People ACHIEVE Success!ACHIEVE is a multi-award-winning ISO 9001 recruiter that has placed more than 40,000 people in positions across industries. Established since 1990, with headquarters in Singapore and an office in Malaysia,\xa0our consultants are specialists in specific areas of specialization, and have the expertise to match candidates with the right permanent positions and contract jobs. In our 30 over years as a recruiter, we are widely recognised by jobseekers, MNCs and SMEs across the Asia Pacific region. A homegrown trusted brand, we are regularly featured in the media and have been honoured with multiple awards by the business community.\xa0In 1H 2022, we were accorded the rare honour of being conferred both the Human Capital Partnership Programme for Employment Agencies (HCP) by the Ministry of Manpower (MOM) and the Singapore Prestige Brand Award (SPBA) by the Association of Small and Medium Size Enterprises (ASME), in recognition of our business transformation efforts and push to build a Singapore core in the workforce!"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-%7C-prediction-model-10113388?jobId=jobstreet-sg-job-10113388§ionRank=187&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
· MNC
[{'position': 'Data Operation Engineer ( Data Ops , Linux , Azure , SQL , COTS , Fresh Welcome )'}, {'company_name': 'TRUST RECRUIT PTE. LTD.'}, {'small_section': ['Central', 'SGD\xa03,500 - SGD\xa05,000', 'Posted on 5-Nov-22']}, {'Job Description:': 'Be part of a team to build and maintain data systems or pipelines..Perform setup, installation, configuration, troubleshooting and/or upgrade for COTS products..Develop or implement ways to improve data warehouses, data lakes or equivalent platforms..Involve in the creation of documentations e.g. design documents, troubleshooting guides etc..', 'Requirements:': "Diploma/Degree in Computer Engineering/Computer.Preferably 1 - 4 years' of working experience in related fields..Science/Information Technology or related technical discipline.Knowledge and/or experience in data management or data engineering.Experience with Linux commands and shell script.Knowledge and/or experience in relational (including SQL) or NoSQL database (e.g. document, graph).Knowledge and/or experience in one or more of the following will be an advantage:.Data / Search / Automation platforms such as Hadoop, Elasticsearch, Ansible respectively.Data integration tools such as Talend, DataStage, Denodo.Programming languages such as Python, Spark.Microsoft Azure Cloud services such as Azure Data Factory, Azure Synapse Analytics.Analytics platforms such as Databricks, Dataiku, Data Robot.Good problem-solving skills.Able to work independently and as a team.", 'HOW TO APPLY:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201935022Z', 'EA No.': '19C9950', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '5 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tTrust Recruit is Singapore’s leading relationship-based human resource and recruitment firm. With more than 20 years of collective consulting experience, we provide personalized workforce solutions for our corporate clients, ranging from multinational corporations to the public sector, as well as small and medium enterprises.\n\n\n\tAt Trust Recruit, integrity and reliability permeates every level of our recruitment process. TRUST is our currency of interactions; be it with our valued clients, talented job-seekers or our own employees. Through our premium staffing services, we are committed to connecting and developing quality relationships between candidates and companies.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-operation-engineer-data-ops-linux-azure-sql-cots-fresh-welcome-10137130?jobId=jobstreet-sg-job-10137130§ionRank=188&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Project Officer, (Data Science) (R00009420)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Key Responsibilities:': '', 'Job Requirements:': 'Bachelor degree in Data Analysis, Aviation, Business, or relevant fields..Minimum 1-year production experience with spatial and temporal data; 1-year production experience in Python (these may be proven via portfolios or GitHub user page or similar).\xa0.Experience in managing own project plans, designing of experiments, delivering a research or development product to clients..Experience in the following computing skills are advantages: Machine Learning, Big Data (distributed computing), relational databases, XML, cartography, Linux..Experience in rapidly learning new subject domain matters is an advantage..Experience in aviation in particular Air Traffic Management is an advantage..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-data-science-r00009420-10070320?jobId=jobstreet-sg-job-10070320§ionRank=189&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow, (Computer Science) - (R00008247)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Conduct research and development in Artificial Intelligence, Machine Learning and Deep Learning as applied to Computer Vision and Anomaly Detection.Generate Intellectual property in the form of Technical disclosures and patents.Publish research papers.Provide research leadership as well as mentorship to the project team.Manage research project.', 'Job Requirements:': 'PhD in Computer Science or related disciplines.At least one year of experience in machine learning and deep learning or related areas.Good knowledge of Pytorch and Tensorflow.Good spoken and written English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-r00008247-10076005?jobId=jobstreet-sg-job-10076005§ionRank=190&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow, - (Process Control/Machine Learning) - R00010324'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key Responsibilities:': 'Conduct high-quality studies on data-based/model-based process monitoring and process control for complex chemical and biomolecular systems..Apply theoretical findings through computer simulations and experiments..Publish results in leading journals and conferences in related fields..Assist the PI in supervising PhD students..Attend international conferences to present the results..', 'Job Requirements:': 'Obtained a PhD degree (or will be awarded PhD degree shortly) in Process Control, Control Science And Engineering, Applied Mathematics, Machine Learning or related fields..An excellent track record of research in the corresponding fields..Extensive experience and advanced math skills in control engineering, statistics, optimization, and/or machine learning..Excellent programming skills in, for example, Python, Matlab, Julia..Good written and communication skills..Expertise in state estimation, hybrid system control, network-based control, fault diagnosis, and/or model predictive control, and experience in applying machine learning in control systems are viewed as assets..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-process-control-machine-learning-r00010324-10046444?jobId=jobstreet-sg-job-10046444§ionRank=192&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Scientific Officer (Bioinformatics) - NPHL - (615BR)'}, {'company_name': 'Tan Tock Seng Hospital'}, {'small_section': ['Singapore', 'Posted 11 hours ago']}, {'Job Requirements': 'Ph.D in Computer Science, bioinformatics or life sciences.Experience in bioinformatics in whole genome sequencing of pathogens for at least 4-6 years.Strong command of English Language.Good oral and written communication skills.Work effectively in teams.Highly proficient in Microsoft word.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '199003683N', 'Company Size': 'More than 5000 Employees', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Uniform/ Office Attire, Depending on Job Position'}, {'Company Overview': '\n\tTTSH is one of Singapore’s largest multi-disciplinary hospitals with more than 174 years of pioneering medical care and development. The hospital has 45 clinical and allied health departments, 16 specialist centres. It also has three institutes that are spearheading care, research and innovations in geriatric medicine, infectious diseases and ophthalmology. Powered by more than 8,000 healthcare staff, TTSH sees over 2,500 patients at its specialist clinics and some 460 patients at its emergency department every day. TTSH is part of the National Healthcare Group, providing holistic and integrated patient care.\xa0 With a strong quality culture steeped in patient safety, TTSH constantly challenges itself to provide faster, better, cheaper and safer care for patients. To achieve this, the hospital keeps abreast and believes in investing in its staff, facilities, medical technology and system improvements.\n\n\n\tMore information is available at www.ttshhr.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/scientific-officer-bioinformatics-nphl-615br-10098058?jobId=jobstreet-sg-job-10098058§ionRank=193&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Job Requirements
[{'position': 'Research Fellow (Data Restoration), R00003935 T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted 11 hours ago']}, {'Job Responsibilities': 'The Research Fellow will work on a project to conduct the research on the development of Data Analysis of Recovered Data from Flash Memory for image and video data. The roles of this position include:.Development of image and video data restoration algorithms and software development in Android System.Develop image and video recovery methods of corrupted zip file.Recovery of encrypted data in Android system.', 'Job Requirements': 'PhD in Electrical and Electronic Engineering, Computer Science or related field specialization in Data Restoration.At least 3 years research experience in research institute or university in related area is required.Expertise in video algorithms and machine learning.Good publication track record is required.Proficiency in basics of programming languages such as C, C++ and Python.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-restoration-r00003935-t-10096189?jobId=jobstreet-sg-job-10096189§ionRank=196&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Assistant (Computer Science and Data Science) (R00006992)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 6-Nov-22']}, {'Key Responsibilities': 'The Research Assistant(RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning. The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data. This includes:.Conduct literature study.Design and implement new algorithms and machine learning models.Collect datasets and conduct experiments on the datasets.Write research papers and present the results at conferences.', 'Job Requirements': 'Bachelor degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal data.Programming skills, and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-and-data-science-r00006992-10138945?jobId=jobstreet-sg-job-10138945§ionRank=197&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Data Engineer (Python/SQL)'}, {'company_name': 'Good Job Creations (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa07,000', 'Posted on 4-Nov-22']}, {'[Order Number: ': '', '2208-62898': '', ']': '', 'Responsibilities': 'Support Technology Development Work project.Strong hands-on experience of SQL skills in any RDBMS (experience with Snowflake is a plus)..Strong understanding and experience of DBA knowledge and Excel..Strong hands-on experience in using Python to perform ETL/backend and stay up to date with the latest libraries..Experience in automation testing and CICD pipelines..', 'Requirements': 'Python.SQL.Excel.CICD scripts.', 'cv_may(AT)goodjobcreations.com.sg': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200618166E', 'EA No.': '07C5771', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '7 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGood Job Creations Singapore (License Number: 07C5771) provides total HR solutions with core values of customer focus, teamwork, professionalism and contribution to the society and our clients. Our vision is to create opportunities for Asian talents in Singapore and across the region. For more information, visit us at www.goodjobcreations.com.sg\n\n\tGOOD JOB CREATIONS (SINGAPORE) PTE. LTD.\n\n\tEA License No.: 07C5771\n\tKimiya Shibazaki\n\tRegistration NO.: \u200bR1325719\n\n\tWe agree to protect all personal information and contact details sent to us via your resume according to the Personal Data Protection Act (PDPA) with effect from 2nd July 2014.\n\tAll information collected is strictly for the purpose of processing your job application and internal administrative use.\xa0\xa0\n\tBy sending your resume to us, you acknowledge your consent to the collection and use of your personal data for the above purposes only.\xa0\xa0\xa0\xa0\n\n\tOur Company’s Privacy Policy:\n\thttp://www.goodjobcreations.com.sg/en/privacy/\n\n\tDo not hesitate to contact our officer if you have further queries with regards to the Personal Data Protection Act.\n\tData Protection Officer: Mr. Kimiya Shibazaki\n\tContact: +65 6258 8051\n\n\t[*PDPA clause]\n\n\tYour data may be used by our affiliated companies under WILL Group Asia Pacific (https://willgroup.co.jp/en/index.html) for the sole purpose of recruitment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-python-sql-10134986?jobId=jobstreet-sg-job-10134986§ionRank=198&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
[Order Number:
[{'position': 'Data Scientist, Quantitative Strategy #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'How do we work:\xa0': '', 'Outcome Driven ': '', 'Start Small and Move Fast': '', 'Ownership': '', 'Continuous Learning': '', 'We are in this Together': '', 'Job Overview': '', 'What you will be working on:': 'Facilitate discussions with stakeholders to understand their business challenges, sharpen the business use cases and translate them into data science projects..Perform data cleaning, pre-processing, feature engineering, and build data science models to address the use case..Present findings, solicit feedback and prioritize refinements to the analysis in close iteration with stakeholders while managing overall project timeline..Communicate the data insights in a clear and compelling narrative, supported with impactful visuals, to influence key decision makers..Depending on the use case, design of dashboards and interactive visualizations as tools for data exploration and storytelling may be expected..Opportunities to be deployed to another government agency as the core data science team for a sustained period of 2-3 years, to build up data science capabilities at the agency. This will involve formulating and implementing strategies to build strong pipeline of impactful projects at the agency and executing these projects..', 'What we are looking for:': "A Bachelor's Degree or higher in Data Science, Computer Science, Statistics, Economics, Quantitative Social Science, or related disciplines. We will also factor in relevant certifications (e.g., Coursera)..At least 2 years of relevant experience, in data science and/or public sector..Capable of translating business use cases into analytical problems, and identifying appropriate data sources to tackle these problems..Proficient in writing scripts for data preparation and analysis, using modern analysis tools & programming methodologies..Proficient cleaning, imputing and correcting anomalies in the collected structured or unstructured data to ensure a high standard of quality in data sets to be used in the analysis work..Proficient in exploring and analyzing datasets, applying probability and statistical methodologies and techniques to discover insights from the data..Proficient in building machine learning models to identify, recognize patterns and make predictions..Proficient in design principles and use of visualizations to best convey the intended information..Capable of developing data visualization from standalone graphs and charts on to highly customized tools and apps while tightly integrated to the data systems for real time visualization of information..Capable of translating results from analysis work into actionable recommendations for stakeholders..Capable of communicating results from analysis work in a coherent data story for stakeholders..", 'Preferred requirements:': 'Experience in model deployment\xa0.Experience in stakeholder management\xa0.Experience in agile project management\xa0.Experience in developing capability in others.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-quantitative-strategy-jobsthatmatter-10052795?jobId=jobstreet-sg-job-10052795§ionRank=199&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
How do we work:
[{'position': 'Research Engineer II - (Computer Science/Electronics/Science/Mathematics) T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 11 hours ago']}, {'Key Responsibilities:\xa0': 'Using and procuring image capture equipment (camera, lighting, etc.) and relevant image processing software to help create datasets.Leverage image capturing techniques to process images in line with our research objectives.Create reports and help with milestone presentations.', 'Job Requirements:\xa0': "Possess bachelor's/master's degree in any discipline (preferably in Engineering (computer science or electronics)/Science/Mathematics or related disciplines)..Basic knowledge in photography and image editing..Programming knowledge in Python or C++ will be an added advantage."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-ii-computer-science-electronics-science-mathematics-t-10097060?jobId=jobstreet-sg-job-10097060§ionRank=201&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow (Machine Learning and Human Machine Interaction) - [R00008643] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on im/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-machine-interaction-%5Br00008643%5D-jobsthatmatter-10051653?jobId=jobstreet-sg-job-10051653§ionRank=203&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Innovation Manager, Artificial Intelligence Lab, School of Computing'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Innovation Manager, Artificial Intelligence Lab, School of Computing (2 year contract)': "Design, implement and oversee strategic initiatives, programs, and projects by \xa0working with faculty members, research scientists and engineers, students, and other partners and collaborators to plan and manage the scope, schedule, cost and resources involved.\xa0.Monitor and facilitate successful delivery and implementation of strategic initiatives, programs and projects, ensuring that they are completed on time while meeting the requirements, such as schedule and cost constraints.\xa0.Establish and improve program and innovation management practices, such as protocols, processes, tools, and documents as necessary.\xa0.Develop strong relationships across various stakeholders, including project teams, internal management, external collaborators and partners..Perform horizon scanning and identify new opportunities for novel initiatives, programs, and projects in AI to create social and economic impact..Bachelors or master's degree in a quantitative/technical field, e.g., Computer Sciences, Engineering, or equivalent. Experience in Artificial Intelligence (AI) or Data Science is highly desirable.\xa0.Experience and a proven track record in program management or managing multidisciplinary, cross-functional projects.\xa0.Solid understanding of project management processes and practices. Project management certification (e.g., PMP, PRINCE2) is desirable but not required.\xa0.Familiarity with R&D projects and government/industry R&D funding schemes\xa0.Excellent communication and presentation skills, able to articulate complex issues to different stakeholders verbally and in writing.\xa0.Strong interpersonal and leadership skills, effective in fostering teamwork with members of diverse background. \xa0.Occasional travel is expected.\xa0."}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/innovation-manager-artificial-intelligence-lab-school-of-computing-10115442?jobId=jobstreet-sg-job-10115442§ionRank=204&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Innovation Manager, Artificial Intelligence Lab, School of Computing (2 year contract)
[{'position': 'Manager/Assistant Manager, Data & Analytics'}, {'company_name': 'Resorts World at Sentosa Pte Ltd'}, {'small_section': ['Central', 'Posted on 6-Nov-22']}, {'Job Description:': 'Supports the design, implementation and maintenance of data flow channels and data processing systems that support the collection, storage, batch and real-time processing, and analysis of information in a scalable, repeatable, and secure manner..Keep abreast of latest technologies and products in database and data processing software, and technologies..Recommend solutions to improve new and existing data platforms including migration..Experiment with, select, and implement cutting edge Big Data tools and frameworks required to provide requested capabilities..Build, deploy and manage big data tools with solid DevOps functions. Be able to manage CI/CD pipelines..Develop codes and scripts to process structured and unstructured data in real-time from a variety of data sources..Implement and monitor data security and privacy measures on data solutions..Maintenance and support of batch job processing in Data warehouse / data platform.Automate and optimize the data collection and analysis processes, data releasing and reporting tools..Gather requirements for data warehouse projects, conducting UAT and to provide training for end users, as and when required..Mentoring junior team members through code review and enablement training.', 'Job Requirements': 'Degree in Computer Science/Information Systems or equivalent with minimum 4 years of hands-on experience in the maintaining and supporting an enterprise level data platform..Must have hands-on ETL/ELT experience, specifically on Microsoft SSIS / Azure Data Factory, strong working experience ETL / ELT experience will also be acceptable..Proficiency in SQL and deep understanding of DWH architecture and data/table formats such as parquet/json/csv in distributed data processing and storage systems..Possess good understanding of software development life cycles..Ability to analyze large datasets, data model and interpret data pattern..Working experience in handling projects involving Data Analytics related work is a plus..Knowledgeable on cloud systems like Alicloud, Azure.Experienced in managing Tableau Servers is a plus..Good experience with programming languages like Python, R, and scripting languages such as PowerShell and bash is a plus..Experience in machine learning operations, or setting up environments for data scientists/machine learning engineers would be advantageous.Strong communication and interpersonal skills..Have a positive attitude and willingness to learn and adapt to a changing environment..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200502573D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Hotel / Hospitality', 'Benefits & Others': '-, -'}, {'Company Overview': '\n\tResorts World Sentosa (RWS), Asia’s premium lifestyle destination resort, is located on Singapore’s resort island of Sentosa. Spanning 49 hectares, RWS is home to world-class attractions including Universal Studios Singapore, S.E.A. Aquarium, Dolphin Island and Adventure Cove Waterpark. Complementing the adventure and adrenaline of its theme parks and attractions are six unique luxury hotels, the world-class Resorts World Convention Centre, a casino and the Asian flagship of a world-renowned destination spa. RWS offers award-winning dining experiences and exciting cuisines from around the world across its many renowned celebrity chef restaurants, establishing itself as a key player in Singapore’s vibrant and diverse dining scene and a leading gourmet destination in Asia for epicureans. The integrated resort also offers world-class entertainment, from original resident productions to concerts and public shows such as Lake of Dreams. RWS has been named “Best Integrated Resort” since 2011 for nine consecutive years at the TTG Travel Awards which recognises the best of Asia-Pacific’s travel industry.\n\n\tRWS is wholly owned by Genting Singapore, a company of the Genting Group. For more information, please visit www.rwsentosa.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-assistant-manager-data-analytics-10113006?jobId=jobstreet-sg-job-10113006§ionRank=205&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Fellow, - (Geometry, Probability, & Deep Learning) (R00009871)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Responsibilities': 'Obtaining mathematical results in the area of Geometry, Probability, and Deep Learning.Designing, implementing, and testing algorithms.Engaging in scientific exchange with collaboration partners of the project.Guiding junior researchers in the team.Preparing reports, scientific papers, and presentations.Helping with academic self-administration.', 'Job Requirements': 'PhD in Mathematics or related areas.Experience in geometry, probability and/or deep learning. Some more specific research areas of particular interest are infinite-dimensional Riemannian or metric geometry, infinite-dimensional probability or stochastic analysis, statistical learning theory, coding theory, inverse problems, and harmonic analysis. Moreover, some applications of particular interest are mathematical finance and biomedical image or shape analysis..Good publication record.Good communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-geometry-probability-deep-learning-r00009871-10127710?jobId=jobstreet-sg-job-10127710§ionRank=206&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow, - (Geometry, Probability, and Deep Learning) - (R00009869)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Responsibilities': 'Obtaining mathematical results in the area of Geometry, Probability, and Deep Learning.Designing, implementing, and testing algorithms.Engaging in scientific exchange with collaboration partners of the project.Guiding junior researchers in the team.Preparing reports, scientific papers, and presentations.Helping with academic self-administration.', 'Job Requirements': 'PhD in Mathematics or related areas.Experience in geometry, probability and/or deep learning..Some more specific research areas of particular interest are infinite-dimensional Riemannian or metric geometry, infinite-dimensional probability or stochastic analysis, statistical learning theory, coding theory, inverse problems, and harmonic analysis. Moreover, some applications of particular interest are mathematical finance and biomedical image or shape analysis..Good publication record.Good communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-geometry-probability-and-deep-learning-r00009869-10127713?jobId=jobstreet-sg-job-10127713§ionRank=207&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Lead Data Scientist'}, {'company_name': 'BlueSG Pte Ltd'}, {'small_section': ['West - Others', 'Posted on 31-Oct-22']}, {'Roles and Responsibilities': 'Work with senior management and multi-functional teams to determine how data science can support the business and enrich our customer experiences..Grow and lead a team of data scientists, data engineers, and analysts..Guide technology and algorithm choices, taking into account deadlines and budgets..Participate in technical discussions across the team through code reviews, RFC or architecture review sessions..Design product experiments and interpret the results yielding impactful conclusions..Design, develop and maintain machine learning models to support business and operational processes..Develop the pipelines to train, validate and deploy these models across various environments..', 'Requirements': 'At least 5 years of experience working as a Data Scientist, or 3 years working experience and a doctoral degree in a related field (computer science, statistics or mathematics, economics, etc).\xa0.Deep knowledge of data science fundamentals and statistics, with a focus on time series forecasting, optimization, pricing strategies..Good understanding of Agile development practices..Experience applying data science in end-to-end production use cases: from feature engineering through to real-time inference..Good understanding of experimental design and methodologies such as A/B testing or multi-arm bandits..', 'Preferred qualifications': 'Past technical leadership experience..Hands-on experience with ride-hailing/car-sharing use cases, consumer apps, or adtech/martech use cases..Experience with business intelligence and data warehousing processes and tools..In-depth knowledge of AWS data analytics services..'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201617258W', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '12 days', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Medical, Business (e.g. Shirts), Regular hours (Monday - Friday), unless specified in the job description', 'Specific Location': 'Kent Ridge'}, {'Company Overview': 'BlueSG car-sharing service offers a smart, convenient, flexible and affordable mobility option to all Singaporeans, complementing public transport while reducing the need for car ownership. The service’s 100% electric fleet also provides a sustainable transport solution, eliminating direct carbon dioxide emissions as compared to traditional vehicles.\xa0\xa0BlueSG members have 24/7 access to a large network of shared electric Bluecar vehicles, at self-service charging stations located in public housing, city center and commercial estates around Singapore.BlueSG is the only point to point car-sharing service in Singapore, which means there is no need to return the car to your starting point. The service is available to anyone over 20 years of age with a minimum one year’s valid driver’s license.The service launched in 2017, in partnership with the Land Transport Authority (LTA) and Economic Development Board (EDB), as part of efforts to make Singapore’s transport system more sustainable.\xa0\xa0BlueSG was previously a subsidiary of French conglomerate Bolloré Group.\xa0On October 18, 2021, The Goldbell Group, Singapore’s largest player in leasing and distribution of commercial and industrial vehicles, announced the successful finalisation of its acquisition of BlueSG and is set to invest S$40 million to grow the company over the next two years. This amount makes up 60 per cent of the S$70 million that Goldbell Group will invest in the company over the next five years as part of its growth acceleration strategy.Goldbell Group’s immediate priorities are to realise BlueSG’s potential with the expansion of its business and technical capabilities to develop a business model that will be replicated in other smart cities across the Asia Pacific region.\xa0\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-scientist-10032961?jobId=jobstreet-sg-job-10032961§ionRank=208&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Roles and Responsibilities
[{'position': 'Research Fellow, - (Data Analytics) - (R00005646)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Conduct research on development of data analytic methodologies using techniques such as machine learning, deep learning, artificial neural networks, etc.Summarize and analyze the human factors data collected to date from human factors studies of ambient assisted living for aging population in Asia and finalize and conclude the project with a final report.Assist to supervise one PhD student and 2 FYP students in the Design & Human Factors Lab.Summarize research results for publishing in prestigious journals.Prepare technology disclosure materials for further filing of patents.', 'Job Requirements:': 'PhD in Mechanical, Civil, Electrical and Electronic Engineering or related field.Expertise in project management and constructing report.Knowledge in machine learning and data analytics.Publication track record is an advantage.Proficiency in basics of programming languages such as Matlab and R coding language.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-analytics-r00005646-10076132?jobId=jobstreet-sg-job-10076132§ionRank=209&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Scientist (AI), Computing & Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Scientist (Artificial Intelligence)': '', 'Responsibilities': 'Conduct cutting-edge R&D in machine learning, with focus on federated learning, split learning, and privacy-presvering machine learning related topics..Publish papers on top-tier conferences and journals, such as CVPR, ICCV, ICML, NeurIPS, ICLR, AAAI, KDD, IJCAI, etc..Apply distributed privacy-preserving algorithms to develop various decentralized and trusted computing systems and platforms such as for domains like healthcare, digital economy, supply chain, agritech, advanced manufacturing and engineering, as well as the Smart Nation initiative..', 'Qualifications': 'PhD degree in Computer Science/Electrical & Electronics Engineering/Computer Engineering or equivalent..Familiar with one or more areas in machine learning and deep learning such as computer vision, natural language processing, semi/self-supervised learning, domain aaptation, adversarial learning, graph neural networks, contrastive learning, continual learning, meta learning, etc..Published papers at top AI-related conferences like CVPR, ICCV, ICML, NeurIPS, ICLR, AAAI, IJCAI, KDD, or journals such as TPAMI, TNNLS, TIP, TMI, Neurocomputing, JMLR, IJCV..Proficient programming skill in Python, familiar with open source tools such as PyTorch..Self-driven, collaborative, with good communication and presentation skills..', 'Preferred qualifications': 'Familiar with distributed machine learning, federated learning, split learning..Familiar with the recent advance in the field of deep learning, e.g., generative models, transformers..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-ai-computing-intelligence-ihpc-10125490?jobId=jobstreet-sg-job-10125490§ionRank=210&token=0~5f9535cd-3630-4b63-9120-6808f99d1666&fr=SRP%20Job%20Listing'}]
Scientist (Artificial Intelligence)
[{'position': 'Data Analytics Lead'}, {'company_name': 'Hays Specialist Recruitment Pte Ltd'}, {'small_section': ['Central', 'SGD\xa07,000 - SGD\xa08,000', 'Posted on 5-Nov-22']}, {'Your new company': '', 'Your new role': 'Lead the design and delivery of data solutions at Group level for the various business units..Interact with business users and stakeholders to identify business needs and then translate them into technical requirements.Define group wide Data strategies and solutions for deployment, working with other Data Engineers, Data Analysts and Data Architects.Implement effective data management and governance tools, to ensure quality and consistency of data.Keep updated on latest data technologies in the market to be integrated..', "What you'll need to succeed": 'At least 5 years of Data Analytics experience with 1 year of leadership and technical direction management.Strong knowledge working with various data tools such as ETL tools, data warehousing, and business intelligence tools..Business analysis skills to partner with users and translate technical requirements.Experience in designing data solutions and data structure classifications.', "What you'll get in return": '', 'What you need to do now': []}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200609504D', 'EA No.': '07C3924', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Miscellaneous allowance, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Central Area'}, {'Company Overview': 'WORKING FOR YOUR TOMORROW\xa0At Hays we invest in lifelong partnerships that empower people and businesses to succeed. With over 50 years’ success under our belts and a workforce of 10,000+ people across 33 countries, we’ve evolved to put our customers at the heart of everything we do.\xa0So much more than a specialist recruitment business, what really sets us apart is our knowledge through scale, deep understanding and our ability to meaningfully innovate for our customers. By providing advice, insights and expertise on issues you face today in the fast-paced world of work, we help you make the right decisions for tomorrow.\xa0Offering an unrivalled suite of recruitment and workplace solutions, whether you’re looking for what’s next in your career, or have gap to fill, we’ll help get you get where you want to go.\xa0\xa0You can rely on us to deliver today and help you plan for tomorrow.\xa0In Singapore, our recruiting experts are available to you in the following specialisms:Accountancy & FinanceBanking & Financial ServicesConstructionEngineeringHuman ResourcesInsuranceLegalLife SciencesMarketing & DigitalOffice ProfessionalsProcurementPropertySalesSupply ChainTechnologyTo connect with a recruiting expert at Hays, visit us at www.hays.com.sg or follow Hays on LinkedIn - The #1 Recruiter on LinkedIn globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-lead-10135865?jobId=jobstreet-sg-job-10135865§ionRank=212&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Your new company
[{'position': 'Data Platform Engineer _ Kafka, Java, data processing'}, {'company_name': 'Avensys Consulting Pte Ltd'}, {'small_section': ['East', 'SGD\xa09,000 - SGD\xa011,000', 'Posted on 1-Nov-22']}, {'Sr. Data Platform Engineer': '', 'Experience & Skills:': '', 'Job Responsibilities:': '', 'Experience': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '7 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200710657H', 'EA No.': '12C5759', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '1 day', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tAvensys is a leader in providing technology enabled business solutions and services. Since inception, Avensys has helped clients use IT more efficiently to improve their operations and profitability, focus on core competencies and achieve business results such as increased agility, innovation and profitable growth. Our in-depth technical knowledge coupled with industry experience and our unique methodologies enable us to successfully deliver and meet our customer’s expectations.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-platform-engineer-_-kafka-java-data-processing-10123860?jobId=jobstreet-sg-job-10123860§ionRank=213&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Sr. Data Platform Engineer
[{'position': 'Senior Manager, AI/IOT Lead (5744)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities:': 'Understand the business requirements from the business users (eg Operations / Engineering / Commercial teams) and recommend a technical architecture / solution that help solve their problem statements. You are required to:-\xa0.Design IoT applications for prototyping / proof-of-concept..Design AI applications such as video analytics, object detection and other AI/ML algorithms..Work with the team, including IOT Engineer, Full stack developer and data engineer, to develop the IOT and AI Minimal Viable Products using Agile Methodology. This includes create prototypes and/or scripts from scratch or leveraging reusable components..Adopt the agile approach: Develop, test, analyze and iterate the applications with the end objectives and key results in mind..Able to lead and coach other team members, including an IOT specialist and a Data Engineer.\xa0.Act as an IOT/AI evangelist in Changi, which includes taking part in educating, sharing best practices, presenting at brownbag talks and running internal workshops.', 'Requirements:': 'A bachelor’s degree in a relevant Computer Science / Computer Engineering discipline or experience in a related field..10-12 years in-depth knowledge and experience of IoT, Sensors, Machine Learning development..Excellent programming skills and a solid foundation in computer science with strong competencies in data structures, algorithms, databases, and software design..Excellent programming and development skills in Python or other languages..Experience architecting/operating IOT/AI solutions built on AWS. Relevant AWS Cloud certification will be an added advantage.\xa0.Knowledge and working experience in Deep Learning frameworks like PyTorch / Tensorflow is a plus..'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-manager-ai-iot-lead-5744-10144188?jobId=jobstreet-sg-job-10144188§ionRank=214&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Principal Research Scientist, (Engineering) (R00003838)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Development of an IOT product line.Responsible for the offer plan and technical/economical decisions.D elivering new IOT solutions and communication architectures for energy utilities.', 'Job Requirements:': 'Master’s or PhD in engineering.Know-How on IoT applications for Energy Efficiency and Grid Applications.Project manment with PMP Certification.Knowledge in Artificial Intelligence applications, IOT platforms and communication.Experience in implementation of an open IoT platform.Cloud security experience.Proficient with SaaS, PaaS, and Openstack/Opensource technologies.Thought leader, and/or certicitation in modern IT/developer operations.Minimum 15 of experience.CWNA or relevant certification is advantous.'}, {'Career Level': 'Senior Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '15 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-research-scientist-engineering-r00003838-10072802?jobId=jobstreet-sg-job-10072802§ionRank=215&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Project Officer (Data Analytics and Software Development) - [R00004052]- #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Undertake software development for machine learning based parameter estimation.Develop a simulation test-bed.Help other staff and the Principal Investigator work on demos and final report.', 'Job Requirements': 'Bachelor degree in either electrical engineering, software engineering, or computer science, specialized in data analytics and software development.Expert knowledge on software development and machine learning based data analysis techniques.Good programming skills, e.g., matlab, python or C/C++/Java.Any past experience in large-scale traffic systems will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-data-analytics-and-software-development-%5Br00004052%5D-jobsthatmatter-10137884?jobId=jobstreet-sg-job-10137884§ionRank=216&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Senior/ Professional Officer (Software Engineering for ML/DL/AI) - [498101] #Urgent'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities': 'Design and teach labs & practice modules..Mentor students in Capstone Projects and the Integrated Work Study Programme (IWSP)..Lead or co-lead innovation projects with industry..Manage labs and equipment to support academic programmes and applied research..Ensure safety in labs.', 'Job Requirements': 'A Postgraduate Degree in Computer Science, Data Science, or a related field, or equivalent levels of industry experience..Proven working experience related to Machine Learning or AI, with good knowledge of industry practices and technological applications in the field. Familiarity with practical ML, including standard frameworks and libraries..Basic to advanced level competence in programming languages such as C/C++, Python and Java. Should be able to handle OOP..Good grasp and understanding of data structures, data modelling and software architecture as well as a firm competence in mathematics..Motivation to be involved in applied research and academic project work, with demonstrated ability in developing software solutions to technical problems..Proven supervisory skills and the ability to work well with others..Demonstrated proficiency to keep abreast of developments in the field, and pursue professional certification programs. Possession of industrial certifications in relevant areas will be an advantage..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-professional-officer-software-engineering-for-ml-dl-ai-%5B498101%5D-urgent-10105351?jobId=jobstreet-sg-job-10105351§ionRank=217&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Data Engineer'}, {'company_name': 'NTUC LearningHub Pte Ltd'}, {'small_section': ['Central - Others', 'Posted on 28-Oct-22']}, {'Job Description': '·T support and ensure the smooth running of the data infrastructure and fine-tuning of the database. To co-develop ETL with vendor during implementation To enable LHUB to be more self-sufficient for Enterprise Data Hub maintenance and position the team.Design, develop, implement, support and maintain old and new data models, data warehouses, cubes, ETL packages and core data infrastructure crucial to the needs of the business..Retrieve, cleanse, validate and analyse data using different techniques in order to retain the data integrity and availability for Business Supports..Work closely with internal stakeholders to collect and understand business requirements then build, design and manage interpret solutions for either reporting or dashboard solutions required ).Work with management and stakeholders to prioritize business and information needs.Transform business requirement to data requirement, data analysis and profiling.Design data models for use cases and data warehousing.Perform data cleaning and ensure data quality and integrity in data warehouse.Root cause analysis of data issues and coming up with stable long terms solutions.Support data store’s inbound and/or outbound development.Perform data acceptance testing together with users.Implement and build a reliable data warehouse which meets the business needs of all stakeholders and according to data warehouse architecture guidelines.Identify data from different source systems and build the target data models.Ensure business rules and data definition are standardised across users and reports/dashboards.Ensure company’s data policy, data security standard and data governance guidelines are adhered to.', 'Requirements': 'Strong experience with Talend Studio and related tools.Diploma/BS in any relevant field (e.g., Statistics, mathematics, computer science or information technology)..At least 3-5 years relevant working experience as Data Engineer/Business Intelligence..Highly proficient in composing, maintaining and optimising complex SQL queries..Strong analytical skills with the ability to collect, organize, analyze, and disseminate significant amounts of information with attention to detail and accuracy..Strong knowledge of and experience on data management, structure, retrieval and ETL processes (structured and unstructured data sources).Knowledge of ODS an advantage.Ability to present information in a meaningful and structured manner (report and dashboard).Familiarity with programming languages such as Java, Python and its libraries.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200409359E', 'Company Size': '201 - 500 Employees', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts), Flexi Benefits, Family Care Leave', 'Specific Location': '73 Bras Basah'}, {'Company Overview': 'NTUC LearningHub Private Limited was corporatised in 2004 with the mission to enhance the lifelong employability of Singapore’s workforce by providing high quality, innovative products and affordable learning. The training programmes provided by NTUC LearningHub comprise Infocomm Technology, Professional IT Certificates, Soft Skills & Literacy, Workplace Safety & Health, Employability Skills System, Customer Service Training, Trades, Cleaning, WSQ Security and Manufacturing Skills. To date, it has trained close to 800,000 executives and working adults, and has worked with more than 10,000 companies to identify training needs, define curriculum roadmaps and deliver contemporary training programmes. The organization has evolved to meet the burgeoning training needs of Singaporeans to continuously keep pace with the dynamic business economy.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10023351?jobId=jobstreet-sg-job-10023351§ionRank=218&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Associate, - (Process Control/Machine Learning) R00010323'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Conduct high-quality research on machine learning-based modeling and process monitoring with application to manufacturing processes.Program using Python and/or Matlab and test theoretical findings via computer simulations.Process data as needed for next-step research.Test the methods via computer simulations lab experiments.If the results are scientifically sound, publish the results in a top-tier journal.', 'Job Requirements:': "A master's degree in control engineering/machine learning.An excellent track record of research in the corresponding fields.Extensive experience and advanced math skills in machine learning and process modeling.Excellent programming skills in, for example, Python, Matlab.Good written and communication skills.Records of publication in related fields."}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-process-control-machine-learning-r00010323-10053722?jobId=jobstreet-sg-job-10053722§ionRank=219&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Analyst, Allied Health Division'}, {'company_name': 'Singapore General Hospital'}, {'small_section': ['Outram', 'Posted on 3-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '198703907Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '16 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Leave benefits, 42 hours'}, {'Company Overview': "\nSingapore General Hospital is Singapore's largest flagship tertiary hospital with an 10,000-strong multi-generation diversified workforce and a rich 190 years history. Every year, the SGH Campus caters to over 1 million patients, providing advanced medical care under its 36 clinical specialties.\nAs an academic hospital, SGH plays a key role in nurturing doctors, nurses and allied health professionals and is committed to innovative translational and clinical research to provide the best care and outcomes to patients.\nWe offer a challenging, family-friendly and conducive work environment with enormous scope and opportunities to meet your career aspirations, advancement and personal development.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-allied-health-division-10128341?jobId=jobstreet-sg-job-10128341§ionRank=221&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
[{'position': 'Digital Transformation Office – Associate Data Analyst'}, {'company_name': 'Singapore National Eye Centre'}, {'small_section': ['Outram', 'Posted on 8-Nov-22']}, {'You will be required to:': '', 'Requirements': []}, {'Career Level': 'Entry Level', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198900840W', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\nSingapore National Eye Centre (SNEC) was incorporated on 3 March 1989 and commenced operation in October 1990. It is the designated national centre for ophthalmology within Singapore’s public sector healthcare network, with a faculty of close to 80 ophthalmologists and more than 800 staff.\xa0SNEC spearheads and coordinates the provision of specialised ophthalmological services with emphasis on quality education and research.\xa0\nSNEC manages more than 330,000 patient visits and performs over 35,000 surgeries and laser procedures annually.\xa0 The centre offers a full spectrum of subspecialties addressing every part of the eye – Cataract, Corneal & External Eye Disease, General Cataract & Comprehensive Ophthalmology, Glaucoma, Neuro-ophthalmology, Ocular Inflammation & Immunology, Oculoplastic, Paediatric Ophthalmology and Adult Strabismus, Refractive Surgery, Surgical and Medical Retina.\nSingapore Eye Research Institute (SERI) was established in 1997 as Singapore’s national research institute for ophthalmic and vision research. It is the research arm of SNEC, and affiliated to the National University of Singapore (NUS) and the Duke-NUS Medical School, as part of the SingHealth-Duke-NUS Academic Medical Centre.\nOver the years, SERI has invested considerable resources into its research infrastructure and in the training of the next generation of clinician-scientists, clinician-researchers and scientists. In two decades, SERI has grown from a founding team of 5 to over 200 researchers, doctors and support staff, and is the largest eye research institute in the Asia-Pacific region.\nA global leader in eye research, SERI ranks ahead of its counterparts in the US, UK and Japan in terms of ophthalmology publications per capita. Tapping on its close affiliation to SNEC, SERI is in the unique position to translate basic research into cutting edge clinical care by enabling the development of new treatments for a variety of eye diseases.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/digital-transformation-office-associate-data-analyst-10144343?jobId=jobstreet-sg-job-10144343§ionRank=222&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
You will be required to:
[{'position': 'Research Associate (Computer Science/Machine Learning) (R00009389)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Responsible for conducting research on the theory, methods, and application of machine learning techniques to develop AI for software security tools.Responsible for conducting the network interpretability for the decision making in software security.Responsible for writing high-quality research papers based on research results.', 'Job Requirements:': 'Master’s degree in Computer Science, Machine Learning, or other related areas.Strong knowledge and demonstrated ability in AI for security and software engineering.Familiarity with deep learning and different neural network architectures.Excellent communication and writing skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-machine-learning-r00009389-10051437?jobId=jobstreet-sg-job-10051437§ionRank=223&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Development Scientist (Data Analysis and Modelling), ARTC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities:': "Take a data-driven approach to develop a sustainable manufacturing/supply chain evaluation framework by integrating operational research solutions, heterogeneous enterprise systems\xa0and\xa0bespoke solutions, to increase resiliency, flexibility,\xa0and\xa0sustainability of manufacturing\xa0and\xa0supply chains operations..Understand data requirements to design and implement the industrial data management system for digital twin and sustainability applications..Create APIs\xa0and\xa0web apps using agile methodologies, launching proofs of concept that translate academic research into real world applications..Develop a deep understanding of the sustainability challenges faced by MNCs and SMEs in the manufacturing and supply chain domains..Evangelize the\xa0Singapore\xa0public-private ecosystem on ARTC's virtual\xa0and\xa0physical testbeds for smart\xa0and\xa0sustainable manufacturing\xa0and\xa0supply chain domains..", 'Job requirements': 'Doctoral/ Master\xa0degree\xa0in Mechanical engineering, Computer science, Electronics, Electrical\xa0or\xa0Network engineering..Excellent publication track record in Industry 4.0-related topics, e.g., machine learning/deep learning, robotics, additive manufacturing, etc..Strong\xa0modelling, analytical\xa0and\xa0problem-solving skills using machine learning techniques..Strong\xa0programming abilities in modern machine learning frameworks, e.g., TensorFlow/Pytorch..Prior experience with data-driven optimization (e.g., scheduling, sequencing) is preferrable..Prior experience with warehouse robot solutions (e.g., AGV navigation, path planning) is preferrable..Team player\xa0and\xa0good\xa0in interpersonal\xa0and\xa0communication (verbal & written) skills..', 'The above eligibility criteria are\xa0not\xa0exhaustive. A*STAR may include additional selection criteria\xa0based\xa0on its prevailing recruitment policies. These policies may be amended\xa0from\xa0time to time without notice. We regret that only shortlisted\xa0candidates\xa0will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/development-scientist-data-analysis-and-modelling-artc-10124051?jobId=jobstreet-sg-job-10124051§ionRank=224&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Fellow, - (Process Control/Machine Learning), - R00010324'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Conduct high-quality studies on data-based/model-based process monitoring and process control for complex chemical and biomolecular systems..Apply theoretical findings through computer simulations and experiments..Publish results in leading journals and conferences in related fields..Assist the PI in supervising PhD students..Attend international conferences to present the results..', 'Job Requirements:': 'Obtained a PhD degree (or will be awarded PhD degree shortly) in Process Control, Control Science And Engineering, Applied Mathematics, Machine Learning or related fields..An excellent track record of research in the corresponding fields..Extensive experience and advanced math skills in control engineering, statistics, optimization, and/or machine learning..Excellent programming skills in, for example, Python, Matlab, Julia..Good written and communication skills..Expertise in state estimation, hybrid system control, network-based control, fault diagnosis, and/or model predictive control, and experience in applying machine learning in control systems are viewed as assets..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-process-control-machine-learning-r00010324-10053721?jobId=jobstreet-sg-job-10053721§ionRank=226&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Machine Learning Engineer (21WD54341) #UrgentHire'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted 2 hours ago']}, {'Position Overview': '', 'Responsibilities': 'Research, design and building machine learning and deep learning solutions to new problems.Lead machine learning based research with cross-functional teams to discover new business opportunities.Advocate and implement the best practices, in terms of knowledge, technology and process, to ensure the team is working effectively to deliver customer value while also constantly learning to remain up to date in a rapidly changing domain.Collaborate effectively with product management, engineering, design and other stakeholders to deliver products that have a quantifiable impact on Autodesk’s business.', 'Minimum Qualifications': 'A degree in a related field (Data Science, Computer Science, Statistics or a quantitative-related field) or equivalent professional experience..Proven track record overseeing machine learning projects at all stages, from initial conception to implementation and optimization.Collaborative, respectful, and inclusive engineer who is interested to work in a diverse and global team.', 'Preferred Qualifications': 'Bachelors/MS/Ph.D. in a related field (Data Science, Computer Science, Statistics, or a quantitative-related field).3+ years’ experience in developing and shipping machine learning, natural language processing or deep learning models.Experience in Python.Experience in deep learning libraries, such as PyTorch and TensorFlow.Experience working with big data platforms (Hadoop, Spark, Hive) and orchestration frameworks (Airflow) and analytic environments (SageMaker).Experience working with AWS services like ECR, S3 & Lambda.Experience in data preprocessing and building ML pipelines.Strong communicator who can explain complex topics to both a technical and non-technical audience.Excellent communication skills, project management skills, and technical management skills.Familiarity with CAD systems will be advantageous.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-machine-learning-engineer-21wd54341-urgenthire-10148004?jobId=jobstreet-sg-job-10148004§ionRank=228&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Machine Learning Engineer, TikTok Ads Vertical Solutions'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', "What You'll Do:": "Apply state-of-the-art machine learning techniques optimize advertisers' marketing strategies..Connect with businesses directly to understand and develop solutions for their Jobs-to-be-done..Collaborate with Product Managers, Designers, and other disciplines to explore the next generation of shopping experiences on TikTok..Capitalize on the organic shopping behaviours on TikTok today and facilitate retentive behaviours to provide more people value and business value..", 'Qualifications': '', 'Minimum Qualifications:': 'Solid programming skills, proficient in C/C++..Familiarity with at least one mainstream deep learning programming framework (TensorFlow/Caffe/MXNet) and its architecture and implementation mechanism..Familiarity with deep learning algorithms (CNN/RNN/LSTM, etc.)..Team-player with strong communication skills who can also work independently..', 'Preferred Qualifications:': 'Familiarity with main components for Ads systems, including bidding, ranking, and auction..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-tiktok-ads-vertical-solutions-10144979?jobId=jobstreet-sg-job-10144979§ionRank=229&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Engineer - (Visual Analytics) (R00010454)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Description:': 'Research into Visual Search and Video Analytics related work, including object detection, person re-identification (reID) & tracking, and search & retrieval.Creation of large-scale datasets for research and algorithm evaluation.Be part of a research team in the execution of funded research projects.Assist in drafting of proposals for research grants in the above areas.', 'Job Requirements:': 'Bachelors degree in Computer Science and/or Engineering, Data Science & Analytics, Mathematics, or related field.Research experience in Computer Vision, Pattern Recognition, Deep Learning, and working with large-scale datasets, in particular in a university or research lab.Experience with object detection & segmentation, domain adaptation, and adversarial learning is essential.Proficiency in software such as Caffe, PyTorch, TensorFlow, TensorRT, OpenCV, and programming languages such as C/C++ and Python, as well as Linux (eg. Ubuntu) is essential.Knowledge of GPU computing, CUDA programming, optimization (eg. with TensorRT), and industry experience in engineering software development would be an advantage.Good inter-personal skills, with the ability to work with people from varied backgrounds.Proficient in English.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-visual-analytics-r00010454-10130695?jobId=jobstreet-sg-job-10130695§ionRank=230&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Machine Learning Engineer - TikTok Ads Vertical Solutions'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', "What You'll Do:": "Apply state-of-the-art machine learning techniques optimize advertisers' marketing strategies..Connect with businesses directly to understand and develop solutions for their Jobs-to-be-done..Collaborate with Product Managers, Designers, and other disciplines to explore the next generation of shopping experiences on TikTok..Capitalize on the organic shopping behaviours on TikTok today and facilitate retentive behaviours to provide more people value and business value..", 'Qualifications': '', 'Minimum Qualifications:': 'Solid programming skills, proficient in C/C++..Familiarity with at least one mainstream deep learning programming framework (TensorFlow/Caffe/MXNet) and its architecture and implementation mechanism..Familiarity with deep learning algorithms (CNN/RNN/LSTM, etc.)..Team-player with strong communication skills who can also work independently..', 'Preferred Qualifications:': 'Familiarity with main components for Ads systems, including bidding, ranking, and auction..Experience in resource management and task scheduling with large-scale distributed software (such as Spark and TensorFlow)..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-tiktok-ads-vertical-solutions-10145559?jobId=jobstreet-sg-job-10145559§ionRank=231&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Machine Learning Engineer, TikTok Ads Vertical Solutions #UrgentHire #URGENT*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', "What You'll Do:": "Apply state-of-the-art machine learning techniques optimize advertisers' marketing strategies..Connect with businesses directly to understand and develop solutions for their Jobs-to-be-done..Collaborate with Product Managers, Designers, and other disciplines to explore the next generation of shopping experiences on TikTok..Capitalize on the organic shopping behaviours on TikTok today and facilitate retentive behaviours to provide more people value and business value..", 'Qualifications': '', 'Minimum Qualifications:': 'Solid programming skills, proficient in C/C++..Familiarity with at least one mainstream deep learning programming framework (TensorFlow/Caffe/MXNet) and its architecture and implementation mechanism..Familiarity with deep learning algorithms (CNN/RNN/LSTM, etc.)..Team-player with strong communication skills who can also work independently..', 'Preferred Qualifications:': 'Familiarity with main components for Ads systems, including bidding, ranking, and auction..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-tiktok-ads-vertical-solutions-urgenthire-urgent*-10143785?jobId=jobstreet-sg-job-10143785§ionRank=232&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist (Quantitative Strategy) #WorkNow #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job overview:': '', 'What to expect:': 'Facilitate discussions with stakeholders to understand their business challenges, sharpen the business use cases and translate them into data science projects.Perform data cleaning, pre-processing, feature engineering, and build data science models to address the use case.Depending on the use case, design of dashboards and interactive visualizations as tools for data exploration and storytelling may be expected.Present findings, solicit feedback and prioritize refinements to the analysis in close iteration with stakeholders while managing overall project timeline.Communicate the data insights in a clear and compelling narrative, supported with impactful visuals, to influence key decision makers.Potentially deployed to another government agency for a sustained period of 2-3 years, to build up data science capabilities at the agency. This will involve formulating and implementing strategies to build strong pipeline of impactful projects at the agency and executing these projects.', 'How to succeed:': '', 'Specific criteria to succeed (other than those listed above):': 'Disciplines in Data Science, Computer Science, Statistics, Economics, Quantitative Social Science, or related degrees. We will also factor in relevant certifications (e.g. Coursera).Minimum 2 years of experience working in public sector or data science field.Knowledgeable in data science techniques and concepts, with sound understanding of their potentials and limitations when applied to business use cases.Training and relevant experience in one or more of the following areas:.Data science tools such as R, Python.Visual analytics tools like Tableau, Qlik.', 'Preferred (Additional requirements which are not necessary pre-requisites):': 'Experience in model deployment.Experience in project management.Experience in developing capability in others.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-quantitative-strategy-worknow-jobsthatmatter-10052859?jobId=jobstreet-sg-job-10052859§ionRank=233&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Job overview:
[{'position': 'Manager/Assistant Manager, Data Engineering'}, {'company_name': 'Resorts World at Sentosa Pte Ltd'}, {'small_section': ['Central', 'Posted on 4-Nov-22']}, {'Job Description:': 'Supports the design, implementation and maintenance of data flow channels and data processing systems that support the collection, storage, batch and real-time processing, and analysis of information in a scalable, repeatable, and secure manner..Keep abreast of latest technologies and products in database and data processing software, and technologies..Recommend solutions to improve new and existing data platforms including migration..Experiment with, select, and implement cutting edge Big Data tools and frameworks required to provide requested capabilities..Build, deploy and manage big data tools with solid devops functions. Be able to manage CI/CD pipelines..Develop codes and scripts to process structured and unstructured data in real-time from a variety of data sources..Implement and monitor data security and privacy measures on data solutions..Maintenance and support of batch job processing in Data warehouse / data platform.Automate and optimize the data collection and analysis processes, data releasing and reporting tools..Gather requirements for data warehouse projects, conducting UAT and to provide training for end users, as and when required..Mentoring junior team members through code review and enablement training.', 'Job Requirements': 'Degree in Computer Science/Information Systems or equivalent with minimum 4 years of hands-on experience in the maintaining and supporting an enterprise level data platform..Must have hands-on ETL/ELT experience, specifically on Microsoft SSIS / Azure Data Factory, strong working experience ETL / ELT experience will also be acceptable..Proficiency in SQL and deep understanding of DWH architecture and data/table formats such as parquet/json/csv in distributed data processing and storage systems..Possess good understanding of software development life cycles..Ability to analyze large datasets, data model and interpret data pattern..Working experience in handling projects involving Data Analytics related work is a plus..Knowledgeable on cloud systems like Alicloud, Azure.Experienced in managing Tableau Servers is a plus..Good experience with programming languages like Python, R, and scripting languages such as PowerShell and bash is a plus..Experience in machine learning operations, or setting up environments for data scientists/machine learning engineers would be advantageous.Strong communication and interpersonal skills..Have a positive attitude and willingness to learn and adapt to a changing environment..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200502573D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Hotel / Hospitality', 'Benefits & Others': '-, -'}, {'Company Overview': '\n\tResorts World Sentosa (RWS), Asia’s premium lifestyle destination resort, is located on Singapore’s resort island of Sentosa. Spanning 49 hectares, RWS is home to world-class attractions including Universal Studios Singapore, S.E.A. Aquarium, Dolphin Island and Adventure Cove Waterpark. Complementing the adventure and adrenaline of its theme parks and attractions are six unique luxury hotels, the world-class Resorts World Convention Centre, a casino and the Asian flagship of a world-renowned destination spa. RWS offers award-winning dining experiences and exciting cuisines from around the world across its many renowned celebrity chef restaurants, establishing itself as a key player in Singapore’s vibrant and diverse dining scene and a leading gourmet destination in Asia for epicureans. The integrated resort also offers world-class entertainment, from original resident productions to concerts and public shows such as Lake of Dreams. RWS has been named “Best Integrated Resort” since 2011 for nine consecutive years at the TTG Travel Awards which recognises the best of Asia-Pacific’s travel industry.\n\n\tRWS is wholly owned by Genting Singapore, a company of the Genting Group. For more information, please visit www.rwsentosa.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-assistant-manager-data-engineering-10133498?jobId=jobstreet-sg-job-10133498§ionRank=234&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Associate (NLP research for ML and AI automation)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-nlp-research-for-ml-and-ai-automation-10115240?jobId=jobstreet-sg-job-10115240§ionRank=235&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
[{'position': 'Backend Software Engr. - Machine Learning Systems #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'Join the Dynamic Team!': 'Develop and maintain the machine learning system and platform, including training, inference, pipeline orchestration, to support core products;.Build the large scale systems for ML integrating with GPU, RDMA network and storage system;.Enrich the end to end machine learning experience, and provide machine learning resources for all the products of TikTok and its affiliates..', 'Qualifications': '', 'To be successful in this role, you have': "Bachelor's degree or above, majoring in Computer Science, Engineering or related fields..Programming experience with at least one modern language such as C/C++, Golang, Python.Experience contributing to the large scale distributed systems, multi-tenant systems (architecture, reliability and scaling).Experience contributing to Kubernetes / Kubeflow / YARN / Mesos orchestrations.Strong analytical abilities and problem solving.Good communication, self-motivation, engineering practice, documentation, etc..", 'Preferred': 'Familiar with GPU architecture, GPU cluster.Familiar with at least one deep learning framework (TensorFlow, PyTorch, MXNet, or other).Familiar with the back-end technologies, such as Django / Flask, etc..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/backend-software-engr.-machine-learning-systems-immediate-10143860?jobId=jobstreet-sg-job-10143860§ionRank=236&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Machine Learning Engineer, Risk Data Mining, BRIC #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': 'Build machine learning solutions to respond to and mitigate business risks in ByteDance products/platforms. Such risks include and are not limited to abusive accounts, fake engagements, spammy redirection, scraping, fraud, etc..Improve modeling infrastructures, labels, features and algorithms towards robustness, automation and generalization, reduce modeling and operational load on risk adversaries and new product/risk ramping-ups..Uplevel risk machine learning excellence on privacy/compliance, interpretability, risk perception and analysis..', 'Qualifications': 'Master or above degree in computer science, statistics, or other relevant, machine-learning-heavy majors..Solid engineering skills. Proficiency in at least two of: Linux, Hadoop, Hive, Spark, Storm..Strong machine learning background. Proficiency or publications in modern machine learning theories and applications such as deep neural nets, transfer/multi-task learning, reinforcement learning, time series or graph unsupervised learning..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-risk-data-mining-bric-urgenthire-10144662?jobId=jobstreet-sg-job-10144662§ionRank=237&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Machine Learning Engineer, E-Commerce Risk Control'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics..Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..Solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-e-commerce-risk-control-10145239?jobId=jobstreet-sg-job-10145239§ionRank=238&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Machine Learning Engr. (Search), - TikTok e-Commerce'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'Job Description': 'Participate in building e-Commerce recommendation algorithms and systems, including commodity search algorithm in TikTok shop..Design & build query understanding models, analyze and extract relevant information from query of TikTok creators..Design, develop, evaluate and iterate on predictive models for ranking (e.g. Click Through Rate), including but not limited to building real-time data pipelines, feature engineering, model optimization and innovation..Design and build supporting/debugging tools as needed..', 'Qualifications': '', 'Requirements': "Bachelor's degree or higher in Computer Science or related fields..Strong programming and problem-solving ability..Experience in applied machine learning, familiar with one or more of the algorithms such as Collaborative Filtering, Matrix Factorization, Factorization Machines, Word2vec, Logistic Regression, Gradient Boosting Trees, Deep Neural Networks, Wide and Deep etc..Experience in Deep Learning Tools such as Tensorflow/Pytorch..Experience with at least one programming language like C++/Python or equivalent..", 'Preferred Qualifications': 'Experience in recommendation system, online advertising, information retrieval, natural language processing, machine learning, large-scale data mining, or related fields..Publications at KDD, NEURIPS, WWW, SIGIR, WSDM, ICML, IJCAI, AAAI, RECSYS and related conferences/journals, or experience in data mining/machine learning competitions such as Kaggle/KDD-cup etc..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engr.-search-tiktok-e-commerce-10144734?jobId=jobstreet-sg-job-10144734§ionRank=240&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Site Reliability Engr., - Applied Machine Learning #URGENT'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'About Tiktok': '', 'About the Role': '', 'Qualifications': '', 'Minimum Qualifications': 'Bachelor’s degree in Computer Science or equivalent with 3+yrs relevant experience..Proven experience in analyzing and troubleshooting distributed systems..Prior experience designing and maintaining large-scale systems..Experience programming in at least one of the following languages: Python or C/C++..', 'Preferred Qualifications': 'Ability to thrive in a fast-paced environment.\xa0.Strong understanding of code optimizing and routine tasks automation..Proficiency in at least one machine learning framework: TensorFlow, PyTorch, MXNet or PaddlePaddle..Solid background of algorithms and data structures..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/site-reliability-engr.-applied-machine-learning-urgent-10144730?jobId=jobstreet-sg-job-10144730§ionRank=242&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Machine Learning Engr. - (Recommendation) - TikTok e-Commerce #Immediate #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': 'Work on recommendation systems, involving contents of various forms ranging from products, short videos to live streams, with each unified recommendation model fulfilling heterogeneous E-commerce scenarios/goals across multiple countries..Optimize e-commerce recommendation models at massive scales, using deep learning/transfer learning/multi-task learning techniques..Data mining and analysis to improve the quality of recommended contents..Conduct research on various topics, which aim to optimize content recommendation circulation, ranging from ensuring diversity and new discovery in recommendation contents, to cold-start problem for new users/items and discovery of high-quality products/live streamers..Develop innovative and state-of-the-art e-commerce models and algorithms.', 'Qualifications': 'Strong in data structures and algorithms, with excellent problem-solving ability and programming skills.Experience in applied machine learning, familiar with one or more of the algorithms such as Collaborative Filtering, Matrix Factorization, Factorization Machines, Word2vec, Logistic Regression, Gradient Boosting Trees, Deep Neural Networks etc..Experience in working with main components of recommendation systems(recall, sort, reranking, cold-start problem), with good understanding of mainstream recommendation models used in the industry.Experience in C++ and Python; at least one of the Big Data tools (For eg. Hive sql/Spark/Mapreduce; at least one of the Deep Learning tools(For eg. Tensorflow/Pytorch).Possess strong communication skills, positive mindset, good teamwork skills, and eagerness to learn/implement new technology and experiment.', 'Preferred Qualifications': 'Experience in personalized recommendation, online advertising, information retrieval or related fields..Publications at KDD、NeurIPS、WWW、SIGIR、WSDM、CIKM、ICLR、ICML、IJCAI、AAAI、RecSys and related conferences.Excellent performance in data mining, machine learning, or ACM-ICPC/NOI/IOI competitions.Developed widely-recognized machine learning project(s) on github or personal webpage.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engr.-recommendation-tiktok-e-commerce-immediate-urgenthire-10144185?jobId=jobstreet-sg-job-10144185§ionRank=243&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Analyst/Engineer'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['North-East', 'Posted on 4-Nov-22']}, {'Job Overview': '', 'Job Responsibilities': '', 'Requirements': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-engineer-10104659?jobId=jobstreet-sg-job-10104659§ionRank=244&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Job Overview
[{'position': 'Machine Learning Engineer - TikTok'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': '', 'Team Intro': 'Build industry leading recommendation system, develop highly scalable classifiers and tools leveraging machine learning.Understand product objectives and machine learning techniques, improve model and recommendation strategy.Understand user behavior and apply Machine Learning algorithms to optimize push notification and production experience.Work with TikTok cross functional teams to grow TikTok in important regional markets.', 'Qualifications': "Bachelor's degree (or more) in computer science or a related technical discipline.Solid experience with data structures or algorithms.Software development experience through hands on coding in a general purpose programming language.Experience in one or more of the following areas: machine learning, recommendation systems, data mining or other related areas.Strong communication and teamwork skills.Passion about technologies and solving challenging problems.", 'Preferred Qualification': 'Minimum 3 years relevant work experience from a large-scale internet business..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-tiktok-10133641?jobId=jobstreet-sg-job-10133641§ionRank=245&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow - (Data Scientist-AI) #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Key Responsibilities:\xa0': 'Develop and implement ML algorithms and tools to build machine learning and analytics platform..Contribute in AI/ML projects from design, data processing, development, implementation, documentation, validation and optimization..Explore new technologies for data implementation AI adoption..Develop visualization, dashboards and report formats according to project requirements..Generating IP/Patents and publish high quality papers in journal and conferences.', 'Job Requirements:\xa0': 'PhD in electrical/electronics/computer engineering or related fields..Masters and Bachelors hers may apply and will be considered for suitable job grades.At least 2-5 of relevant experience with machine learning algorithms, platforms and APIs.Strong foundation in mathematics, as well as familiarity with signal analysis and estimation..Programming skills in Python, R, C++, and Matlab.Strong background in handling data and programming.Independent analytical problem-solving skills\xa0\xa0.Highly motivated, independent and able to work as a team.Willingness and ability to develop new skills.Good communication, interpersonal and critical skill..'}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-scientist-ai-worknow-10062905?jobId=jobstreet-sg-job-10062905§ionRank=246&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Intern, Data Scientist (DPE-SPG-Engineering) #JobsThatMatter#UrgentHire'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted 40 minutes ago']}, {'Position Overview': '', 'Responsibilities': 'Data Analysis.Data Engineering.Developing code using machine learning models.', 'Minimum Qualifications': 'Undergraduate in Computer Science/ Computer Engineering/ Electrical Engineering.', 'Preferred Qualifications': 'Knowledge of data science and machine learning concepts.Strong programming skills.Able to navigate a steep learning curve.', 'Learning Benefits': 'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.', 'About Autodesk': '', 'Are you an existing contractor or consultant with Autodesk? Please search for open jobs and apply internally (not on this external site). If you have any questions or require support, contact ': '', 'Autodesk Careers': '', '.': []}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/intern-data-scientist-dpe-spg-engineering-jobsthatmatter-urgenthire-10148602?jobId=jobstreet-sg-job-10148602§ionRank=248&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Machine Learning Engineer - Recommendation'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': 'Build industry leading recommendation system; develop highly scalable classifiers and tools leveraging machine learning;.Understand product objectives and machine learning techniques; improve model and recommendation strategy;.Understand user behavior and apply ML algorithms to optimize content consumption and production experience;.Understand content security strategy and apply ML algorithms to improve content audit process;..Work with cross functional teams to grow ByteDance product in important regional markets..', 'Qualifications': "Bachelor's degree in computer science or a related technical discipline, with at least 2 years of related work experience;.Solid experience with data structures or algorithms;.Software development experience through hands on coding in a general purpose programming language;.Experience in one or more of the following areas: machine learning, recommendation systems, data mining or other related areas;.Strong communication and teamwork skills;.Passion about technologies and solving challenging problems..", 'Preferred Qualification': 'Minimum 3 years relevant work experience from a large-scale internet business.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-recommendation-10131748?jobId=jobstreet-sg-job-10131748§ionRank=250&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Anaylst, Strategy Management and Analytics (Organisation Planning and Performance)'}, {'company_name': 'Singapore General Hospital'}, {'small_section': ['Outram', 'Posted on 3-Nov-22']}, {'Requirements': 'Collaborate with stakeholders to understand business problems and derive solutions via a data-driven approach.Perform relational trending and forecasting based on historical information to establish meaningful analysis of operational and clinical data sets.Generate workload trends for Management Reporting.Ensure analytic transformation projects are well planned, implemented, and insights are accurately presented.Map business requirements with clear data logics, proper data access work flow.Extraction of data sets, or work with enterprise data warehouse team to execute data platform projects or visualization requirements for stakeholders’ business reporting.Degree in Mathematics, Statistics, Information Technology, Business Analytics or Data Science is preferred.2 years relevant experience in a healthcare environment will be an advantage\xa0.Strong analytical and communication skills.Proficient Microsoft Excel skills (pivot tables, macros).Conversant in one of the following – R, Python.Conversant in Tableau or other data visualization tools.Ability to work under tight deadline.Knowledge/ skills in data mining and/or operations research, either present or in the process of gaining such knowledge and skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198703907Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '16 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Leave benefits, 42 hours'}, {'Company Overview': "\nSingapore General Hospital is Singapore's largest flagship tertiary hospital with an 10,000-strong multi-generation diversified workforce and a rich 190 years history. Every year, the SGH Campus caters to over 1 million patients, providing advanced medical care under its 36 clinical specialties.\nAs an academic hospital, SGH plays a key role in nurturing doctors, nurses and allied health professionals and is committed to innovative translational and clinical research to provide the best care and outcomes to patients.\nWe offer a challenging, family-friendly and conducive work environment with enormous scope and opportunities to meet your career aspirations, advancement and personal development.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-anaylst-strategy-management-and-analytics-organisation-planning-and-performance-10128347?jobId=jobstreet-sg-job-10128347§ionRank=251&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Requirements
[{'position': 'Research Engineer (Machine Learning), - (R00005411) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Conduct research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data processing & mining, and perform analytics for future ATM systems.Provide support on the implementation and verification of an AI-based Digital Tower Control assistance system.', 'Job Requirements:': "Bachelor's degree in Computer Science/Aerospace Engineering/Applied Mathematics.Deep understanding and experience in the theory and application of AI and Machine Learning techniques.Programming Experience: knowledge of Python, Matlab, R and/or C++.Good English writing and communication skills.Independent and team player.", 'Preferred Job Requirements:': 'Minimum 1 year of related research experience.Demonstrated project experience related to Airport or Air Traffic Management.Software Engineering Experience: Understanding and experience of sound Software Engineering practices, including data management, software version control and database design.Understanding of statistical methods and/or probability theory.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-r00005411-seekbetter-10142604?jobId=jobstreet-sg-job-10142604§ionRank=252&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Machine Learning Engineer - Content Safety'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': "Build industry-leading content safety systems for TikTok;.Develop highly-scalable classifiers, tools, models and algorithms leveraging cutting-edge machine learning, computer vision and data mining technologies;.Understand product objectives and improve trust and safety strategy and model's performance;.Work with cross-functional teams to protect TikTok globally..", 'Qualifications': 'Major in computer science or a related technical discipline;.At least 3 years of experience in at least one of the following areas: machine learning, pattern recognition, NLP, data mining, or computer vision..Experience in the recommendation, search, advertising, or other related projects..Published papers in the top AI conferences or journals is a plus, including KDD, IJCAI, WWW, WSDM, ICML, NeurIPS, CVPR, ECCV, ICCV, ACL, etc.;.Competition experience in machine learning, data mining, CV, NLP and others..Experience in content moderation or trust & safety is a plus;.Well understanding of data structures and algorithms;.Great communication and teamwork skills;.Passion for techniques and solving challenging problems..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-content-safety-10131867?jobId=jobstreet-sg-job-10131867§ionRank=254&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Machine Learning Engineer, Recommendation - TikTok'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Responsibilities': 'Build industry leading recommendation system; develop highly scalable classifiers and tools leveraging machine learning;.Understand product objectives and machine learning techniques; improve model and recommendation strategy;.Understand user behavior and apply ML algorithms to optimize content consumption and production experience;.Understand content security strategy and apply ML algorithms to improve content audit process;.Work with TikTok cross functional teams to grow TikTok in important regional markets..', 'Qualifications': "Bachelor's degree in computer science or a related technical discipline, with at least 2 years of related work experience;.Solid experience with data structures or algorithms;.Software development experience through hands on coding in a general purpose programming language;.Experience in one or more of the following areas: machine learning, recommendation systems, data mining or other related areas;.Strong communication and teamwork skills;.Passion about technologies and solving challenging problems.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-recommendation-tiktok-10130301?jobId=jobstreet-sg-job-10130301§ionRank=255&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Engineer'}, {'company_name': 'Xtremax Pte Ltd'}, {'small_section': ['Singapore', 'Posted 2 hours ago']}, {'Roles & Responsibilities': '', 'Job Overview': '', 'Job Responsibilities:': 'Integrates\xa0and\xa0collates data silos\xa0in\xa0a manner which\xa0is\xa0both scalable\xa0and\xa0compliant.Collaborates with Project Manager, Developers\xa0and\xa0Infrastructure team\xa0to\xa0build scalable data-driven products.Works closely with fellow developers through pair programming\xa0and\xa0code review process..Drives enterprise data foundation requirements\xa0of\xa0Data Warehousing, Data Lake.Acquires, stores, governs\xa0and\xa0processes large datasets\xa0of\xa0structured/unstructured data.Identifies\xa0and\xa0implements\xa0the\xa0right\xa0architecture components for specific tasks.Monitors\xa0and\xa0optimises infrastructure\xa0and\xa0pipeline.Implements\xa0and\xa0improves ETL / ELT / Streaming big data pipelines.', 'Requirements:': 'Motivated\xa0and\xa0meticulous individual who thrives under pressure\xa0and\xa0enjoy\xa0working\xa0in\xa0a fast-paced dynamic\xa0environment\xa0and\xa0industry..Strong\xa0communication with\xa0good\xa0interpersonal skills\xa0and\xa0is\xa0an independent\xa0and\xa0effective manager..Possess a\xa0diploma/degree\xa0in\xa0information management, computer science, or related major..Good\xa0knowledge\xa0of\xa0big data technology landscape and concepts related\xa0to\xa0distributed storage\xa0and\xa0computing..Fluent\xa0in\xa0both complex SQL query performance tuning\xa0and\xa0database performance tuning..Experience with batch\xa0and\xa0ETL jobs\xa0to\xa0ingest\xa0and\xa0process data..Experience with Data Warehouses such as Redshift, BigQuery, Snowflake, etc..Experience with Cloud environments such as AWS\xa0and/or\xa0Azure..Experience with other NoSQL databases such as Elasticsearch, DynamoDB, Cassandra, etc..Programming experience with SQL, Python, R, Scala..Passionate about technology\xa0and\xa0are\xa0always\xa0looking\xa0to\xa0improve\xa0yourself..Strong\xa0communication\xa0and\xa0problem-solving skills..Ability\xa0to\xa0understand business processes and systems and understand its impact on\xa0the\xa0data ingestion\xa0and\xa0transformation process..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200310257R', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Medical, Casual (e.g. T-shirts), Training & Development, 10am-7pm Monday - Friday'}, {'Company Overview': 'Established in 2003, Xtremax Pte Ltd is a multitalented web design and web development company. We are not only committed to develop interactive web design but also to focus on providing simple solutions to complex real word problems, using latest software technology. We excel in the areas of web design, system integration, content management system (CMS), SEO and SEM services (Search Engine Optimization and Search Engine Marketing).\nBesides working on customized Systems Integration projects, Xtremax develops web design and products for the commercial market. To date, Xtremax supports an e-marketing system (iMessage.to) and an expansive content management system (CMS) for companies, schools and government agencies defined within the web design. Xtremax has worked with several government agencies, private and listed companies and implemented many successful projects of web design and web development. We firmly believe in the win-win principle, and seek to collaborate with our clients to produce simple, effective solutions with high return on investment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10148197?jobId=jobstreet-sg-job-10148197§ionRank=256&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Roles & Responsibilities
[{'position': 'Machine Learning Engineer, Content Safety'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': "Build industry-leading content safety systems for TikTok;.Develop highly-scalable classifiers, tools, models and algorithms leveraging cutting-edge machine learning, computer vision and data mining technologies;.Understand product objectives and improve trust and safety strategy and model's performance;.Work with cross-functional teams to protect TikTok globally..", 'Qualifications': 'Major in computer science or a related technical discipline;.Solid experience in at least one of the following areas: machine learning, pattern recognition, NLP, data mining, or computer vision..Experience in the recommendation, search, advertising, or other related projects..Published papers in the top AI conferences or journals is a plus, including KDD, IJCAI, WWW, WSDM, ICML, NeurIPS, CVPR, ECCV, ICCV, ACL, etc.;.Competition experience in machine learning, data mining, CV, NLP and others..Experience in content moderation or trust & safety is a plus;.Well understanding of data structures and algorithms;.Great communication and teamwork skills;.Passion for techniques and solving challenging problems..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-content-safety-10132830?jobId=jobstreet-sg-job-10132830§ionRank=257&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate, - (Machine Learning) - R00008645'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Job Responsibilities': 'Conduct research and system development on advanced machine learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks..Collaborate with other researchers and industry partners..Publish research in top journals and conferences.', 'Job Requirements': 'Master degree in Electrical Engineering, Robotics, Computer Science & Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in machine learning and human-machine interaction.Relevant experience and/or publications on image/video processing and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-machine-learning-r00008645-10144004?jobId=jobstreet-sg-job-10144004§ionRank=261&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Site Reliability Engineer - Applied Machine Learning'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': '', '[About Tiktok]': '', '[About the Role]': '', 'Qualifications': '', 'Minimum Qualifications': 'Bachelor’s degree in Computer Science or equivalent with 3+yrs relevant experience..Proven experience in analyzing and troubleshooting distributed systems..Prior experience designing and maintaining large-scale systems..Experience programming in at least one of the following languages: Python or C/C++..', 'Preferred Qualifications': 'Ability to thrive in a fast-paced environment.\xa0.Strong understanding of code optimizing and routine tasks automation..Proficiency in at least one machine learning framework: TensorFlow, PyTorch, MXNet or PaddlePaddle..Solid background of algorithms and data structures..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/site-reliability-engineer-applied-machine-learning-10133474?jobId=jobstreet-sg-job-10133474§ionRank=262&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Machine Learning Engineer - TikTok Search'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': "Optimize the searching quality to provide TikTok's users the best search experience.Combine your understanding of product objectives and take full advantage of modern machine learning, NLP and Multimodal techniques to improve the search ranking algorithms, including query understanding, video understanding and various levels of result ranking..", 'Qualifications': 'Bachelor degree or above in the field of computer science or a related technical discipline.Must have relevant experience in search / recommendation.Proficient coding skills and strong algorithm & data structure using C++/Python/Java.Experience in one or more of the following areas: NLP, Ranking, Ads, Search engine, Recommender System, and Machine Learning.Effective communication and teamwork skills..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-tiktok-search-10132868?jobId=jobstreet-sg-job-10132868§ionRank=264&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Engineer - (Engineering/Computer Science) - #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Play a leading role in the development of AI/Machine learning models and algorithms for the predictive fault detection and classifications for Li Ion battery energy storage system (ESS) by a companion team for improved operation safety.Work closely with senior team members in coding/building machine learning algorithms, RNN, LSTM, GNN etc for data driven ESS models for purposes of fault/failure prediction.Work closely with the AI/machine learning team to deliver the overall project KPIs.Responsible for the acquisition and uploading of ESS operation data from the test-bed ESS.Assist in the preparation and compilation of regular progress reports and presentations.General support to the ESS research team’s activities.', 'Job Requirements:': "Master's degree in Engineering/Computer Science.Candidates with Bachelor's degree in Engineering/Computer Science are welcome to apply.Minimum 3 years of working experience in machine learning data driven modelling and related areas.Working knowledge in machine learning model development tools/platform such as Tensorflow, Keras, Pytorch, Scikit-learn etc.Working knowledge in machine learning algorithms, like neural network, SVM, deep learning.Knowledge on battery energy storage systems operating condition monitoring and analysis.Working knowledge of data acquisition and communication with battery management system (BMS).Independent problem solver with the ability to co-operate and work in a team."}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-engineering-computer-science-urgent-10135661?jobId=jobstreet-sg-job-10135661§ionRank=265&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Machine Learning Engineer Intern (Content Safety) - 2022'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About the team': '', 'Responsibilities': "Build industry-leading content safety systems for TikTok;.Develop highly-scalable classifiers, tools, models and algorithms leveraging cutting-edge machine learning, computer vision and data mining technologies;.Understand product objectives and improve trust and safety strategy and model's performance;.Work with cross-functional teams to protect TikTok globally..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in computer science or a related technical discipline;.Solid experience in at least one of the following areas: machine learning, pattern recognition, NLP, data mining, or computer vision;.Experience in recommendation, search, advertising, or other related projects;.Published papers in the top AI conferences or journals is a plus, including KDD, IJCAI, WWW, WSDM, ICML, NeurIPS, CVPR, ECCV, ICCV, ACL, etc.;.Competition experience in machine learning, data mining, CV, NLP, etc.;.Good understanding of data structures and algorithms;.Passion for techniques and solving challenging problems..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-intern-content-safety-2022-10129990?jobId=jobstreet-sg-job-10129990§ionRank=266&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
About the team
[{'position': 'Research Fellow / [Computer Science] [R00007173]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Conduct research and development related to Machine Learning and Deep Learning and spatial-temporal data mining.', 'Job Requirements:': 'PhD in Computer Science or related disciplines.At least 2 of experience in machine learning and spatial-temporal data mining and data manment.Good knowledge of and machine learning applications.Excellent publication records.Good spoken and written English.Strong research ability.Strong leadership quality.Good interpersonal skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-%5Bcomputer-science%5D-%5Br00007173%5D-10072433?jobId=jobstreet-sg-job-10072433§ionRank=269&token=0~8c76be1d-f310-447b-a65b-d736bfb1d6dc&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Big Data Developer'}, {'company_name': 'Talent Trader Group Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa07,000', 'Posted on 30-Oct-22']}, {'Responsibilities:': 'Design, develop and support the real time data platform.Conceptualize, evaluate and build proof of concepts on new models, tools and techniques.Collaborate, peer review, cross skill and share expertise with other team members.Performance tuning of the system and work on new ways to increase efficiency.A passion to solve interesting problems in metadata management and Big Data.Strong hands-on experience in Core Java (Ideally have the knowledge of Java 8).Good knowledge in JMS (Active MQ, Kafka, Rabbit MQ).Good knowledge in Apache Camel.Familiar with Linux operation system.Strong knowledge in SQL (Oracle, MySQL, MariaDB).Big Data exposure with Hadoop, HIVE, Spark, Impala, Sqoop, Oozie.', 'APPLY': []}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201230353E', 'EA No.': '13C6305', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '30 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tOur business philosophy stems from our belief that Mid management are vital to all organisations.We thus focused our specialisation to the placement of these professionals and we are now among Singapore’s leading Mid management recruitment firms.\n\tOur understanding of Mid recruitment spans the following areas:\n\t\n\n\t\t\tIndustry knowledge\n\n\t\t\tCandidate psychology\n\n\t\t\tPre-recruitment analysis\n\n\t\t\tRecruitment\n\n\t\t\tPost recruitment maintenance\n\n\n\tWe are fully committed to achieving excellence in every assignment through leveraging our vast candidate pool, industry connections and strategic insights.\n\tFor candidate who applied for the advertised position is deemed to have consented to us that we may collect, use or disclose your personal information for purpose in connection with the services provided by us.\n\tMOM License No. 13C6305http://talenttradergroup.com/\n\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-developer-10064060?jobId=jobstreet-sg-job-10064060§ionRank=272&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Project Officer, (Algorithms in Machine Learning/Finance) - #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Develop and implement machine learning/gradient descent type of Algorithms.Provide convergence analysis of these algorithms.Provide complexity analysis of these algorithms.Apply it to problems in finance, insurance, or optimal sampling in data science.', 'Job Requirements': 'Bachelor degree in mathematics, statistics, or related topics.Worked on a research project related to the development of a machine learning/gradient descent type of algorithms and their theoretical convergence analysis.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-algorithms-in-machine-learning-finance-urgenthire-10140865?jobId=jobstreet-sg-job-10140865§ionRank=274&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Engineer (1 Year Contract)'}, {'company_name': 'Thales Solutions Asia Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {}, {'Career Level': 'Entry Level', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '199306768W', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Parking, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\nThales Group\n\tEverywhere it matters, Thales is there. In all its markets — aerospace, space, ground transportation, defence and security, and digital security\xa0 — our solutions help customers to make the right decisions at the right time and act accordingly.\n\n\tThe combined expertise of our 80,000 employees, world-class technology, and operations in 68 countries have made Thales a key player in keeping the public safe and secure, guarding vital infrastructure and protecting the national security interests of countries around the globe.\n\nThales Solutions Asia\n\tThales people architect solutions that enable two-thirds of planes to take off and land safely. We create in-flight entertainment systems that engross 50 million fliers every year and we develop the avionics that control the world’s largest commercial aircrafts. Our simulators train the next generation of pilots for fighter jets, transporters and search and rescue helicopters. And, together, each and every member of our aerospace team makes a difference.\n\n\tThales established its presence in Singapore in 1973 to support the expansion of aerospace-related activities in the Asia-Pacific region. Throughout the last four decades, the company grew from strength to strength and is today involved in the primary businesses of Aerospace (including Air Traffic Management), Defence & Security, Ground Transportation and Digital Identity & Security. Thales today employs over 2,100 people in Singapore across all its business areas.\n\nAward\n\tBest Staff Referral Programme (Silver) at Asia Recruitment Awards 2017'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-1-year-contract-10145740?jobId=jobstreet-sg-job-10145740§ionRank=275&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
[{'position': 'Scientist (AI/ML, Text Analysis), Computing and Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job description': '', 'The responsibilities include, but are not limited to:': 'Conducting world-class research in text analysis to be recognized by local and international communities.Work with peers in IHPC and collaborators to advance research and develop innovative applications in text analysis.Publish high impact papers to advance science.Propose and lead new projects leveraging state-of-the-art algorithms in both research and application domains.Execute projects to ensure timely delivery or milestones with high quality outcomes.', 'Job requirements': 'PhD in Computer Science / Electrical & Electronics Engineering / Computer Engineering or related fields.Relevant work experience in industry and/or academia in text analysis and NLP.Strong programming skills, specially in Python.Knowledge and demonstrable experience in open-source NLP packages such as NLTK, Word2Vec, SpaCy, Gensim, Stanford CoreNLP will be a differential.Familiarity with popular ML frameworks such as TensorFlow, Pytorch Keras, SKLearn, Pandas.Experience in developing text analysis solutions involving Named Entity Recognition, Relationship Extraction, chatbots, and Question and Answering systems is a bonus.Experience and passion on machine learning, deep learning and AI are preferable.Smart and hardworking individual who can work under pressure within a tight deadline.A good team player with can-do attitude.Solid communication skills and problem-solving skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-ai-ml-text-analysis-computing-and-intelligence-ihpc-10124057?jobId=jobstreet-sg-job-10124057§ionRank=276&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Assistant Principal Data Engineer, Product, Smart Enterprise Platform, GEC'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Description for Principal Data Engineer - Product': '', 'Key Responsibilities': 'Participate in the design, development, and testing of an open architecture, open source based, and cloud native data analytics platform product.Explore and evaluate modern data management and MLOps components for continuous improvement of data analytics platform product.Contribute to the design and integration of data management & data governance capabilities for the product.Establish best practices and guidelines to be followed by engineers working on data pipelines.Assist in the setup and maintenance of big data, machine learning and Kubernetes clusters.Work with Data Scientists, Data Analysts, and other internal stakeholders to assist with data-related technical issues and support their data pipeline infrastructure and data preparation needs.', 'Job Requirements': 'Bachelor or Master’s degree computer science, software engineering, information systems or related field.\xa0.The candidate should have at least 8 years of technical experience in Information Technology with at least 4 years, preferably 6 years in Big Data, Data Warehousing or Business Intelligence technology with knowledge of analytics and AI technologies.Broad knowledge of various aspects of Big Data with good understanding and hands-on experience in Hadoop based technologies such as HDFS, Hive, Spark, Kafka etc.\xa0.Deep understanding of relational, NoSQL, NewSQL database technologies such as PostgreSQL, Oracle DB, CitusDB, SingleStore, Cassandra, MongoDB, Neo4J etc..Good knowledge of programming languages such as Java, Python or Scala on Linux/Windows platforms.\xa0.Experienced in Kubernetes and Kubeflow is a plus point.Familiar with visualization and reporting software.\xa0.Experienced in designing production grade ETL/BI solutions.\xa0.Experienced in DevOps and DataOps.Familiar with Linux/UNIX system administration.Experienced in operational support for Big Data solutions.\xa0.Effective oral and written communication with strong analytical, problem solving, multitasking and project management skills are essential on the job.\xa0.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-principal-data-engineer-product-smart-enterprise-platform-gec-10071057?jobId=jobstreet-sg-job-10071057§ionRank=277&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Job Description for Principal Data Engineer - Product
[{'position': 'Research Fellow, - (Machine Learning) - (R00008200) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Research on federated learning for industry 4.0.Implement deep learning algorithms.Lead a team of researchers for more efficient outcome delivery.Perform project-related works assigned by the PI.', 'Job Requirements:': 'PhD in computer science/engineering or electrical/electronic engineering..Good programming ability with python.Experience with deep learning algorithms and frameworks, like TensorFlow and Pytorch.Good leadership, responsibility and communication skills.The ability to read and write research papers and technical reports.Fluent in English (written and spoken).Interested applicants are invited to submit a cover letter and full CV in one document..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Mechanical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-r00008200-seekbetter-10142225?jobId=jobstreet-sg-job-10142225§ionRank=278&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow - (Air Traffic Management/Machine Learning) (R00005121) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Undertake research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data mining, doing analytics, and building high quality strategic planning system for future for Air Traffic Management systems.Provide expertise on algorithmic concepts for the broader applied analytics of ATM and inspire the adoption of advanced analytics and data science across the entire breadth of ATM system..', 'Job Requirements:': 'PhD Degree in Computer Science/Aerospace Eng/Operation Research.Good programming skill (Python / MATLAB / C++).Good English writing and communication skills.Independent and team player.Good publication records.Demonstrated relevant experience in Artificial Intelligence / Machine Learning.Publication track record in peer-reviewed and reputed journals/conferences related to Artificial Intelligence / Machine Learning / AI&ML applied to ATM.Hands-on experience in using machine learning libraries such as Scikit-learn, etc..Hands-on experience in using deep learning library (either TensorFlow or PyTorch).', 'Experiences in at least two of the following areas is a strong plus:': 'Tempo-spatial data mining and analysis,.Time series analysis and prediction,.Generative models.Reinforcement Learning and/or Inverse Reinforcement Learning.Probabilistic Modeling / Bayesian Machine Learning.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-air-traffic-management-machine-learning-r00005121-seekbetter-10140360?jobId=jobstreet-sg-job-10140360§ionRank=279&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'SAR Algorithm Developer'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Title': '', 'About us': '', 'Job Responsibilities:': 'Familiar with SAR interferometry, polarimetry processing and applications.Familiar with SAR commercial satellite systems and imaging products.Able to perform basic SAR image interpretation.Experience in ingesting and processing SAR products.Develop Synthetic Aperture Radar (SAR) processing algorithms to generate value-added products from various SAR imaging modes and various SAR image product levels.Develop state-of-the-art computer vision algorithms for remote sensing applications..Bridge the technology development team with business and sales team and to lead the technical discussions with business prospects..Bridge the technology development team with the geospatial analyst team and create cutting-edge technology in geospatial products..Provide regular development progress updates to company’s stakeholders.Support the technology development team in product creation and contribute to product UI/UX design.', 'Job Requirements': 'PhD / Masters / Degree in Electrical Engineering, Computer Science, Mathematics or Statistics..At least 4-7 years of relevant work experience in data science or remote sensing field.Proficient in python programming and to be familiar with libraries such as libraries such as openCV and Scikit-learn..Experience with Git, containerisation, and software development workflow..Knowledge on cloud platforms and development on cloud would be an advantage..Knowledge on satellites and satellites orbital mechanics would be an advantage..Knowledge on geospatial data processing at scale would be an advantage.Applicants should be motivated and proactive, able to work independently, and results oriented..Location: Ang Mo Kio.', 'Job Specializations': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/sar-algorithm-developer-10074207?jobId=jobstreet-sg-job-10074207§ionRank=280&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Job Title
[{'position': 'Research Associate, (Data Analyst and Machine Learning Specialist) - [R00008084]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Able to develop software codes for autonomous simultaneous localization and mapping of moving equipment..Should be able to develop framework for multi accesses edge computing..Train machine learning and deep learning models on a computing cluster to perform visual recognition tasks such as segmentation, detection, self-supervised depth estimation and end-to-end control..Multi sensor fusion based software integration from physical system to virtual environment..Prepare reports and documentations for the research programs, and support data analysis..Test and validate developed autonomous codes against physical systems..Program development for sensor systems and dashboard visualization..Creating lab scale setups and fixtures in tune to vehicle level performance..Formulating process experimental plans both lab level and real field level..Running experiments and troubleshooting systems..Developing potential improvements to the health monitoring system and testing potential solutions..', 'Job Requirements:': 'Master’s degree in computer science engineering/Electronics Engineering. Related degree preferred. Related experience would be given high priority..Experience with signal processing..Strong python programming, software development best practices, debugging and profiling..Knowledge on at least one mainstream deep learning framework such as Pytorch , Tensorflow and CNN..Familiarity with data science tool kit such as Jupyter, pandas, Linux environment..Familiarity of AWS or Azure..Solid understanding of algorithms, linear algebra, machine learning, computer systems/architecture, neural network..Basic Knowledge with sensor system, interface, data conversion and software programming..Effective communication and report writing skills..Experience in use of applicable business software applications..Prior experience and knowledge in Data analysis and Machine learning algorithms development..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-analyst-and-machine-learning-specialist-%5Br00008084%5D-10140131?jobId=jobstreet-sg-job-10140131§ionRank=281&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Site Reliability Engineer, Applied Machine Learning'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': '', 'About Tiktok': '', 'About the Role': '', 'Qualifications': '', 'Minimum Qualifications': 'Bachelor’s degree in Computer Science or equivalent with 1+yrs relevant experience..Proven experience in analyzing and troubleshooting distributed systems..Experience programming in at least one of the following languages: Python or C/C++..', 'Preferred Qualifications': 'Ability to thrive in a fast-paced environment..Strong understanding of code optimizing and routine tasks automation..Proficiency in at least one machine learning framework: TensorFlow, PyTorch, MXNet or PaddlePaddle..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/site-reliability-engineer-applied-machine-learning-10131792?jobId=jobstreet-sg-job-10131792§ionRank=282&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Computer Vision Research Scientist, - Intelligent Creation #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted 21 hours ago']}, {'Responsibilities': 'Conduct fundamental research on computer vision, deep learning and AI problems, including but not limited to the deep learning for 3D object/human modeling, graphics, object and human interaction recognition, computer vision, self-supervised learning, multi-modality learning;\xa0.Research on long-term research goals;.Publish impactful research work on top conferences and journals;.', 'Qualifications': 'Work experience in a university, industry, or government lab(s), in a role with primary emphasis on AI research;.Hold a Ph.D. degree in computer science, electrical engineering, statistics, applied mathematics, data science or other related disciplines;.First-author publications at peer-reviewed AI conferences (e.g. CVPR, ECCV, ICCV, NeurIPS, ICML, SIGGRAPH) and journals (e.g., TPAMI, JMLR).Knowledge in one of the differentiable programming frameworks, e.g., PyTorch, TensorFlow, JAX;.Track record of high impact research;.(Preferred) Received best paper or equivalent awards in the aforementioned conferences;.(Preferred) Winner of international academic competitions..'}, {'Career Level': 'Entry Level', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/computer-vision-research-scientist-intelligent-creation-immediate-10146653?jobId=jobstreet-sg-job-10146653§ionRank=284&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow - (Machine Learning) - (R00008200) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Research on federated learning for industry 4.0.Implement deep learning algorithms.Lead a team of researchers for more efficient outcome delivery.Perform project-related works assigned by the PI.', 'Job Requirements:': 'PhD in computer science/engineering or electrical/electronic engineering..Good programming ability with python.Experience with deep learning algorithms and frameworks, like TensorFlow and Pytorch.Good leadership, responsibility and communication skills.The ability to read and write research papers and technical reports.Fluent in English (written and spoken).Interested applicants are invited to submit a cover letter and full CV in one document..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-r00008200-urgenthire-10141523?jobId=jobstreet-sg-job-10141523§ionRank=285&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Software Engineer / Tech Lead (AICET) 1'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description': '', 'Qualifications': '', 'The candidate should possess:\xa0': 'A or post .\xa0.A team player with excellent communication, interpersonal and leadership skills, and the ability to build a collaborative working relationship with people at all levels.\xa0.Has experience leading a small team of software engineers.\xa0.Familiarity with web development with modern tech stacks and technologies like Ruby on Rails, nodejs, Golang, React, and JavaScript/TypeScript.\xa0.Experience with AI and/or ed-tech platforms and system will be a bonus.\xa0 \xa0.', 'More Information': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-software-engineer-tech-lead-aicet-1-10114701?jobId=jobstreet-sg-job-10114701§ionRank=286&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Scientist, Computing & Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Research Scientists (Artificial Intelligence)': '', 'Requirement': 'PhD degree in Computer Science/Electrical & Electronics Engineering/Computer Engineering or equivalent.Solid programming skills in Python or C/C++.Experience in one or more areas of AI, such as Machine Learning, Computer Vision, Natural Language Processing.', 'Preferred qualifications (one or more of the following)': 'Experience in applying AI to real-world problems.Relevant work experience in industry and/or academia.Expertise in one or more areas/topics of AI, such as Machine Learning, Computer Vision, Natural Language Processing, Deep Learning, etc..Strong track record of research in AI (e.g., publications in related conferences like ICML, NeurIPS, ICLR, AAAI, ACL, CVPR, ICCV, SIGIR, SIGMOD, HPCA, ISCA, and DAC, or journals such as JMLR, AIJ, IJCV, IEEE Transactions and ACM Transactions).', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-computing-intelligence-ihpc-10123550?jobId=jobstreet-sg-job-10123550§ionRank=287&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Research Scientists (Artificial Intelligence)
[{'position': 'Research Fellow (Machine Learning and Human-Robot Collaboration)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on im/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-robot-collaboration-10141063?jobId=jobstreet-sg-job-10141063§ionRank=288&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Machine Learning Engineer - E-Commerce Risk Control'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..At least 5 years with solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-e-commerce-risk-control-10131968?jobId=jobstreet-sg-job-10131968§ionRank=289&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow (Artificial Intelligence) R00010346 #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 6-Nov-22']}, {'Job Description:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': 'Independent and self-motivated researcher.Good paper reading and writing skills.Excellent publication record, including top-tier journals and conference papers in the related fields..Strong in Mathematics.', 'Coding Skills:': 'Familiar with any of the major deep learning libraries, including Pytorch, TensorFlow, MatConNet.Familiar with the image processing and optimization toolboxes in Matlab.Comfortable with Linux environment, including using vim, git, tmux, bash, etc.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-r00010346-urgent-10138903?jobId=jobstreet-sg-job-10138903§ionRank=290&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Manager, Data Science (R00010964)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 2 hours ago']}, {'Key responsibilities:': 'Engage business stakeholders to identify, design, and implement analytics/data science projects, including problem scoping, use case formulation, data sourcing, development, and maintenance of analytical models..Support the development of NTU’s data strategy and in-house analytics capabilities..Provide guidance to business units on the application of analytics/data science to help drive business initiatives e.g., improving the students’ journey and University operations..Conduct data-driven analysis to drive process improvements or draw out actionable insights, including designing and building data visualisation to support management decision making..Apply analytical techniques such as data mining, statistical analysis, machine learning etc, and build predictive models to address business challenges..Work closely with relevant teams to productionize analytical models, including tracking and improving its performance..', 'Requirements:': 'Minimally 3 years of in-depth experience in implementing end-to-end analytics/data science solutions..Proficient in analytical and data visualisation tools such as Qilk Sense, Power BI, R, Python, SQL etc..Ability to work collaboratively across teams and quickly breakdown problems and find innovative solutions..Experience with analytical modelling, predictive analytics, AI and machine learning would be an added advantage..Experience in DevOps or DataOps would be an added advantage..Degree in Mathematics, Statistics, Operations Research, Computer Science or other related discipline..Specialisation in Data Analytics or Data Science preferred..Ability to deploy solutions in a cloud environment..Ability to implement Analytics/Data Science solutions..Ability to communicate data-driven findings and ideas to technical and non-technical stakeholders..Good communication, written and presentation skills..Good analytical, problem solving and critical thinking skills and meticulous attitude..Ability to work independently or in a team with minimal supervision..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-data-science-r00010964-10148022?jobId=jobstreet-sg-job-10148022§ionRank=291&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Key responsibilities:
[{'position': 'Research Fellow, - (Machine Learning), - (R00007432)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Job Responsibilities': 'Develop/improve machine learning algorithms for robotic arm to pick up wheel-bearings.After the robotic arm has learned to pick up one kind of wheel-bearings, use transfer learning to train the robotic arm to pick up a different kind of wheel-bearings; and/or\xa0\xa0.After the robotic arm has learned to pick up one kind of wheel-bearings, use transfer learning to train a different model of robotic arm to pick up the same kind of wheel-bearings.', 'Job Requirements': 'PhD in Electrical and Electronic Engineering, Computer Science, or related field, with strong background in machine learning.Proficiency in AI programming langus such as Python.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-r00007432-10145756?jobId=jobstreet-sg-job-10145756§ionRank=293&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Engineer (Machine Learning/Computer Vision) (R00005729)-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Conduct research on deep learning and visual scene understanding.Develop novel algorithms for visual recognition and scene understanding.Develop computer vision systems.Write technical reports and research papers.', 'Job Requirements:': 'Master’s degree in Computer Science, Computer Engineering or related subjects.Research experience in visual recognition, scene understanding and deep learning.Excellent computer programing skills for machine learning and computer vision systems.Familiar with deep learning frameworks such as PyTorch.Strong responsibility for research/work.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-computer-vision-r00005729-jobsthatmatter-10136807?jobId=jobstreet-sg-job-10136807§ionRank=295&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'System Engineer | C++ | AI'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Key Responsibilities:': 'Conduct user requirements, application development, system integration, deployment as well as troubleshooting.Improving Computer Generated Forces (CGF)\xa0behaviours by scripting of realistic behaviours in CGF entities.Development of scenario planning tools\xa0and\xa0Conduct testing to evaluate software.Maintain and improve\xa0existing codebase and review code changes.Investigate and using new technologies to improve current workflow.Good technical documentation skills.', 'Key Requirements:': 'Diploma or Degree in Software Engineering, Computer Science, Computing or related fields.Have relevant experience in scripting or modding.Knowledge of scripting languages using C++ and Lua..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/system-engineer-%7C-c-%7C-ai-10139717?jobId=jobstreet-sg-job-10139717§ionRank=296&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Assistant, - (Computer Science, Machine Learning), - (R00008149) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities:': 'Work on a project to conduct the research and development of semantic document representations used for search and retrieval..Integration of contextual information, topics, references, key words, tags together to form a NLU model..Development of learn to rank models to achieve Natural Language Understanding..Attend regular meetings and prepare for presentations with the project sponsor’s team.Help to draft the project report for both the funding agent and project sponsor.', 'Job Requirements:': 'BEng/BSc in Computer Science, machine learning or related discipline with specialization in deep learning, natural language processing.1+ year research experience in AI/machine learning or related fields.Good analytical, technical and problem-solving skills.Expertise in NLP Information Retrieval and Graph Representation Learning is a bonus.Experiences in contrastive learning, NLP related projects are highly preferred.Strong programming skills in programming languages such as Python/Pytorch/Transformer libraries.Good communication skills.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-machine-learning-r00008149-seekbetter-10142098?jobId=jobstreet-sg-job-10142098§ionRank=297&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Assistant, - (Computer Sci., - Machine Learning), - (R00008149)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities:': 'Work on a project to conduct the research and development of semantic document representations used for search and retrieval..Integration of contextual information, topics, references, key words, tags together to form a NLU model..Development of learn to rank models to achieve Natural Language Understanding..Attend regular meetings and prepare for presentations with the project sponsor’s team.Help to draft the project report for both the funding agent and project sponsor.', 'Job Requirements:': 'BEng/BSc in Computer Science, machine learning or related discipline with specialization in deep learning, natural language processing.1+ year research experience in AI/machine learning or related fields.Good analytical, technical and problem-solving skills.Expertise in NLP Information Retrieval and Graph Representation Learning is a bonus.Experiences in contrastive learning, NLP related projects are highly preferred.Strong programming skills in programming languages such as Python/Pytorch/Transformer libraries.Good communication skills.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-sci.-machine-learning-r00008149-10141370?jobId=jobstreet-sg-job-10141370§ionRank=298&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Associate, (Data Analyst and Machine Learning Specialist) - [R00008084] #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Able to develop software codes for autonomous simultaneous localization and mapping of moving equipment..Should be able to develop framework for multi accesses edge computing..Train machine learning and deep learning models on a computing cluster to perform visual recognition tasks such as segmentation, detection, self-supervised depth estimation and end-to-end control..Multi sensor fusion based software integration from physical system to virtual environment..Prepare reports and documentations for the research programs, and support data analysis..Test and validate developed autonomous codes against physical systems..Program development for sensor systems and dashboard visualization..Creating lab scale setups and fixtures in tune to vehicle level performance..Formulating process experimental plans both lab level and real field level..Running experiments and troubleshooting systems..Developing potential improvements to the health monitoring system and testing potential solutions..', 'Job Requirements:': 'Master’s degree in computer science engineering/Electronics Engineering. Related degree preferred. Related experience would be given high priority..Experience with signal processing..Strong python programming, software development best practices, debugging and profiling..Knowledge on at least one mainstream deep learning framework such as Pytorch , Tensorflow and CNN..Familiarity with data science tool kit such as Jupyter, pandas, Linux environment..Familiarity of AWS or Azure..Solid understanding of algorithms, linear algebra, machine learning, computer systems/architecture, neural network..Basic Knowledge with sensor system, interface, data conversion and software programming..Effective communication and report writing skills..Experience in use of applicable business software applications..Prior experience and knowledge in Data analysis and Machine learning algorithms development..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-analyst-and-machine-learning-specialist-%5Br00008084%5D-seekbetter-10142134?jobId=jobstreet-sg-job-10142134§ionRank=299&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Assistant, - (Computer Science, - Machine Learning), - (R00008149)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities:': 'Work on a project to conduct the research and development of semantic document representations used for search and retrieval..Integration of contextual information, topics, references, key words, tags together to form a NLU model..Development of learn to rank models to achieve Natural Language Understanding..Attend regular meetings and prepare for presentations with the project sponsor’s team.Help to draft the project report for both the funding agent and project sponsor.', 'Job Requirements:': 'BEng/BSc in Computer Science, machine learning or related discipline with specialization in deep learning, natural language processing.1+ year research experience in AI/machine learning or related fields.Good analytical, technical and problem-solving skills.Expertise in NLP Information Retrieval and Graph Representation Learning is a bonus.Experiences in contrastive learning, NLP related projects are highly preferred.Strong programming skills in programming languages such as Python/Pytorch/Transformer libraries.Good communication skills.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-machine-learning-r00008149-10140283?jobId=jobstreet-sg-job-10140283§ionRank=300&token=0~b247f823-4d8c-4ddd-bf5c-968586162849&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Data Analytics'}, {'company_name': 'Up Devlabs Pte. Ltd.'}, {'small_section': ['West - Others', 'SGD\xa03,500 - SGD\xa04,900', 'Posted on 5-Nov-22']}, {'Job Description': 'Collecting and interpreting data Analysing results..Reporting the results back to the relevant members of the business..Identifying patterns and trends in data sets..Working alongside teams within the business or the management team to establish business needs..Defining new data collection and analysis processes..', 'Job Requirements': 'Minimum 1 years of native Data Analyst experience.Candidate must possess at least a Bachelor’s Degree in Computer Science, mathematics, statistics, economics..Experience in data models and reporting packages.Ability to analyse large datasets.Ability to write comprehensive reports.Strong verbal and written communications skills as Data Analyst do communicate with the wider business..An analytical mind and inclination for problem-solving.Attention to details as data analysis and reporting must be precise..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '202114701H', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Retail / Merchandise', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts), Performance Bonuses', 'Specific Location': 'One North'}, {'Company Overview': "\n\tWe are a team of passionate and creative solutionist who aim to deliver innovative solutions that bridge the gap between bleeding-edge technologies and complicated user experiences.\n\n\n\tAt UP DevLabs brings robust, user-centric solutions to our customer's most complex problems.\n\tWe work closely with all our customers to intimately understand their needs and their user's needs to deliver delightful experiences on top of state-of-the-art technology stacks.\n\n\n\tOur business activities includes:Machine learning & Data ScienceBlockchainUI/UX OptimizationCloud SolutionsSoftware\xa0Engineering\n\n\n\tJoin us now to grow together!\n\t\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-10107876?jobId=jobstreet-sg-job-10107876§ionRank=2&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Analyst'}, {'company_name': 'Shimizu Corporation'}, {'small_section': ['Kallang', 'SGD\xa02,800 - SGD\xa04,000', 'Posted on 6-Nov-22']}, {'Job Description:': 'Coordinating collection and consolidating of data.Conduct data cleaning and vetting, check and verify data to ensure data input is accurate.Apply analytical, statistical and operational research knowledge to transform data into insights to facilitate decision making..Prepare daily, weekly and monthly reports.Report critical issues observed through information analysis.Troubleshooting, researching and fixing issues.To look into continuous improvement of data and business processes to improve efficiency and productivity.Understanding internal department user needs and build, maintain and optimize systems & process together through the data acquired.Recommend IT tools, digital transformation ideas for productivity improvement.Other duties as assigned.', 'Requirements:': 'Minimum Diploma with 2 years of experience in Data Analysis would be an added advantage.SQL coding background will be advantageous.Construction background or Quantity Surveying experience will be an added.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': 'S73FC2334H', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '27 days', 'Industry': 'Construction / Building / Engineering', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Insurance coverage, Depends on work location'}, {'Company Overview': 'Shimizu\'s more than 200-year history began in 1804, when founder Kisuke Shimizu launched a carpentry business in the Kanda Kajicho district in Edo (now Tokyo). During its early years, Shimizu appointed Eiichi Shibusawa, a renowned industrialist of the Meiji Era (1868-1912), as senior advisor and based its management style on his "Rongo to Soroban" ("The Analects and the Abacus"). This work set forth the concept of how businesses can contribute to society based on a firm union between ethics and economics, thereby achieving fair returns and attractive growth.\nConstruction technologies and methods have advanced rapidly since that time. Still, the approach of striving to ensure growth based on quality products that satisfy customers remains the unchanging foundation for all Shimizu activities. Today, society is in the midst of dramatic, fast-paced change.\n\nCustomer needs for buildings and other structures continue to change and diversify. These needs include responses to global environmental issues, measures against earthquakes and other natural disasters, and contributions to customer business activities.\n\nShimizu seeks to increase customer satisfaction and contribute to society by providing value that surpasses all expectations. Each structure Shimizu builds incorporates ideas that are drawn from a wide range of parties while centering on the needs of our customers. Shimizu identifies these ideas and applies them in a way that breathes new life into its structures.\nBy applying such passion to each and every project, Shimizu is ensuring that generations to come can be proud of the work we do today.\nOur lines of business:\n\nContracting for building, civil engineering and other construction works;\nInvestigation, planning, research, evaluation, diagnosis, soil investigation, surveying, design, supervision, management and consulting in connection with construction works.\n\t\xa0\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-10111418?jobId=jobstreet-sg-job-10111418§ionRank=3&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Data Analyst (QlikSense)'}, {'company_name': 'D L Resources Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Requirements:': 'Collaborate with diverse business users and stakeholders to understand the business needs, define key metrics, and articulate the substantive clearly..Design, develop and deliver end to end data visualisation of reports and dashboards for management, business, and operations users..Maintain the dashboards and reports to ensure accuracy, timeliness and consistency in reporting and metrics from data source such data-mart..Be the subject matter expert in data visualisation using tools like Qlik Sense. To harness all the capabilities and features of the platform to enable the business users in getting the right data-driven insights..Drive adoption and self-service analytics through initiatives such as conducting basis users training and sharing best practices..Work closely with the Data Management Team to develop data pipelines to automate data acquisition, cleansing and transformation..Create and maintain the documentation that includes the design, requirements and user manuals for the organisation..Diploma/Degree in Finance/Banking, Computer Science, or related discipline with at least 3 years working experience in business and data analytics..Experience in analyzing large volume of data and building dashboards from scratch with excellent grasp of Data Storytelling..Hands – on experience with data visualization and analytical tools such as Qlik Sense, SQL, and Python is mandatory..Understanding of Data Architecture, Data Model and Business Intelligence requirements gathering, UAT testing and implementation of technology platforms..Aptitude for system related work, experience in end-user maintenance..Experience with use of Data Analytics platforms and workflows..Driven and resourceful problem-solver who can be relied upon to deliver the results with minimal supervision..Fast learner and resourceful, enjoy analytical work with attention to details and proactive in providing solutions..Proven ability to manage multiple tracks in tight timeline and is adaptable to evolving business needs and challenges..Excellent communication skills who can articulate analytical findings and has good interpersonal skills to effectively interact with the stakeholders, fostering collaboration internally/externally with vendors and staff..', '\xa0APPLY NOW': '', 'D L Resources Pte Ltd': '', 'We regret that only short-listed candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199600101K', 'Company Size': '51 - 200 Employees', 'Industry': 'Consulting (IT, Science, Engineering & Technical)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts), Others'}, {'Company Overview': '\nD L Resources Pte Ltd is an established Information Technology Services Company. The company is focused on providing Information Technology Professional Services and Outsourcing Services to our clients in Singapore, consisting of financial institutions, banks and Multi-National Companies.\nWe have immediate vacancies for CONTRACT positions to be based in Singapore:\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-qliksense-10107480?jobId=jobstreet-sg-job-10107480§ionRank=4&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Job Requirements:
[{'position': 'Data Engineer'}, {'company_name': 'Olea Global Pte. Ltd.'}, {'small_section': ['Central - Others', 'SGD\xa04,000 - SGD\xa06,000', 'Posted on 3-Nov-22']}, {'Role summary:': '', 'Role requirements:': 'Source data and exploration of alternate external data sources.Design data consumption processes.Create and manage reference data.Update data schema design and dictionary documentation.Build data pipeline in collaboration with our technology team.Manage and monitor the health of existing data pipeline.Understand upstream platform changes and its impact to downstream data systems.Update existing or build new ETL as necessary.Perform UAT and UVT for identified impact to the downstream data systems.Build analytics data views using SQL for consumption by business.Assist analytic team on their data requirements for modelling, and reporting.Partner with internal and external teams to create and build data products and analytic solutions.', 'Role specific competencies and traits:': 'Strong analytical mindset.Ability to approach any problem in a logical manner.Good reasoning and problem-solving skills.Experience in using AWS technologies e.g., Amazon S3.Experience in using open-source projects e.g., Apache Airflow, Presto.Experience in building data pipelines for structured and unstructured dataset.Experience in building web scrapping solutions.Experience in integrating internal system with external API.Good understanding of relational and time series data database design.Must be proficient with SQL, Python, Git, JIRA.(training, licences, memberships, and certifications):.Bachelor or master’s degree with technical degree preferred (statistics, mathematics, computer science, etc.).Any certification related to data engineering will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '202138286N', 'Company Size': '1 - 50 Employees', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)', 'Specific Location': 'Marina One'}, {'Company Overview': 'Olea is a fully digitized trade finance platform that brings businesses requiring supply chain financing with investors who invest in trade finance assets as an alternative asset class. It is a joint venture between Standard Chartered Bank and Linklogis, a leading technology company in China. It combines Standard Chartered’s expertise in trade, risk management and investor network with the technological proficiency of Linklogis. Headquartered in Singapore, Olea’s ambition is to become a leading global platform in empowering sustainable trade. Visit www.olea.net to find out more.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10130492?jobId=jobstreet-sg-job-10130492§ionRank=5&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Role summary:
[{'position': 'Associate Director, Risk Analytics'}, {'company_name': 'Olea Global Pte. Ltd.'}, {'small_section': ['Central', 'SGD\xa06,000 - SGD\xa012,000', 'Posted on 4-Nov-22']}, {'Responsibilities:\xa0': '', '\xa0': 'Develop targeted bespoke analytics models to help the venture extract value from, and monetise, data on our platforms, where such value extraction could include the likes of better client decisioning, pricing and opportunity identification..Research, design, implement and validate cutting-edge analytics and data visualization techniques to achieve targeted outcomes, such as bringing predicted outcomes closer to experience while ensuring consistency with the model ecosystem, while identifying opportunities for solutions to be leveraged across applications to broaden their scope of use and improve risk analysis..Collaborate with partner technology teams in setting up an effective model lifecycle platform on the cloud, with possible roles to play in cloud architecture and platform engineering..', 'Essential Skills:': 'At least five years’ experience in a predictive analytics or Artificial Intelligence / Machine-learning role, or in modelling complex systems..Strong degree or postgraduate qualification in any discipline with substantial quantitative component (e.g. Physics, Mathematics, Statistics, Actuarial Sciences, Biostatistics, Meteorology, etc.)..Expertise in statistical and predictive modelling concepts, machine-learning approaches, clustering and classification techniques, and recommendation and/or optimization algorithms..Expertise in analytical programming with a focus on Python libraries e.g. pandas, and experience in data handling..Experience in cloud architecture or machine-learning platform engineering would be strongly advantageous..Experience with managing complex data projects would be advantageous..Understanding of trade and supply chain concepts would be advantageous..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Corporate Finance/Investment', 'Registration No.': '202138286N', 'Company Size': '1 - 50 Employees', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'Olea is a fully digitized trade finance platform that brings businesses requiring supply chain financing with investors who invest in trade finance assets as an alternative asset class. It is a joint venture between Standard Chartered Bank and Linklogis, a leading technology company in China. It combines Standard Chartered’s expertise in trade, risk management and investor network with the technological proficiency of Linklogis. Headquartered in Singapore, Olea’s ambition is to become a leading global platform in empowering sustainable trade. Visit www.olea.net to find out more.'}, {'url': 'http://www.jobstreet.com.sg/en/job/associate-director-risk-analytics-10041886?jobId=jobstreet-sg-job-10041886§ionRank=6&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Analyst'}, {'company_name': 'ACAMS SINGAPORE'}, {'small_section': ['Central', 'Posted on 5-Nov-22']}, {'Scope of employment shall include:': '', 'Job Specific': '', 'Job Requirements': []}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '201716827D', 'Company Size': '201 - 500 Employees', 'Industry': 'Consulting (Business & Management)'}, {'Company Overview': '\nThe Association of Certified Anti-Money Laundering Specialists (ACAMS®) seeks for an Operations Executive for its Singapore office.\xa0 ACAMS is a global association of professionals in the Anti-Money Laundering/Financial Crime field.\xa0 It has over 76,000 members working in financial institutions, regulatory bodies and law enforcement agencies in over 175 countries/ regions.\xa0 ACAMS provides a tiered approach to training and education in AML/Financial Crime, including its flagship program - the Certified Anti-Money Laundering Specialist (CAMS®) qualification - and also organizes in-person training seminars and web seminars, conferences and other AML training events. ACAMS has established the ACAMS Singapore Chapter, Hong Kong Chapter, South India Chapter, Macau Chapter and Philippine Chapter, and is in the process of forming chapters in other Asian financial centers.\xa0 Since the opening of offices in different countries/ regions, including the Regional Head Office in Hong Kong, regional offices in Japan, Singapore, China, Taiwan etc., ACAMS has signed a number of partnerships in Asia to promote the CAMS® certification and AML education and training.\xa0 Additional information on ACAMS can be found at www.acams.org or www.acams.org.cn .\xa0 We are looking for an Operations Executive in Singapore office to meet the needs of our regional expansion.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-10109406?jobId=jobstreet-sg-job-10109406§ionRank=7&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Scope of employment shall include:
[{'position': 'Data Science Engineer'}, {'company_name': 'HAIER SINGAPORE INVESTMENT HOLDING PTE. LTD.'}, {'small_section': ['Downtown Core', 'Posted on 3-Nov-22']}, {'KEY RESPONSIBILITIES': 'Based on group big data strategy, develop and implement the data display platform projects in South Asia and Europe, including bottom-level database structure design, data warehouse set up and front desk design & delivery..Enhance the data usage and adjust the operational strategy to save the project implementation cost in South Asia and Europe..Look after the operation and maintenance of the global reporting system..', 'KEY REQUIREMENTS': 'Degree in computer science or its equivalent.With extensive experience in business intelligence and object-oriented development within a commercial environment..Familiar with MS BI Stack and BI reporting tools, including SQL, SSAS, SSIS, SSRS, Tableau, PowerBI, Qlikview, etc..Able to demonstrate solid business understanding in complex B2B and B2C sales environment..Good people skills and able to work with people at all levels..Strong communication, presentation and interpersonal skills..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201129617G', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '20 days', 'Industry': 'Consumer Products / FMCG', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts), To be Discussed', 'Specific Location': 'Raffles Place'}, {'Company Overview': 'Founded in 1984, Haier has grown from its humble beginning as a refrigerator company facing bankruptcy to an international group with global revenues of US$29.5 billion. Its businesses have covered a great range from white goods, telecom and digital products, home solutions, logistics, finance products, real estate projects to biopharmaceutical products. Haier aims to provide innovative solutions for a better life.\n\nIn 2013, Haier ranked the #1 global major appliances brand with a 9.7 percent global market share. This is the fifth consecutive year that Haier topped the ranking.Haier also became the number one manufacture of Major Appliances in the world with 11.6% retail volume share in 2013 for the first time.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-science-engineer-10128316?jobId=jobstreet-sg-job-10128316§ionRank=8&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
KEY RESPONSIBILITIES
[{'position': 'Data Architect (Transformation Office)'}, {'company_name': 'National Trades Union Congress (NTUC)'}, {'small_section': ['Central', 'Posted on 1-Nov-22']}, {'Job Description': 'Develop the organisation’s data strategy by translating business needs into data requirements, e.g. data sources, data streams and integrations.\xa0.Define the data architecture framework, standards and principles..Design an enterprise data management framework to ensure high quality data and compliance with personal data laws. This includes processes to plan, acquire, maintain, use and purge data..Develop common data models to support data sharing across software applications and other organisations..Analyse the data requirements for new applications to ensure alignment with the organisation’s data strategy.\xa0.Collaborate with the technical architecture team and digital solutions team to set up the technologies to realise the data strategy.\xa0.', 'Requirements': 'At least 6 years of experience in a similar role.Good foundation in data modelling and data management.Experience in customer relationship management systems is an advantage.Interest in applying AI techniques to enable more insightful data analysis.Enjoys the challenge of setting up a new team and new processes.Strong analytical and problem-solving skills.Able to explain data concepts simply to the business units.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': 'S64TU0450K', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '24 days', 'Industry': 'Non-Profit Organisation / Social Services / NGO', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\n\t\tThe National Trades Union Congress (NTUC) is a national confederation of trade unions as well as a network of professional associations and partners across all sectors in Singapore.\xa0 NTUC is at the heart of the Labour Movement, which comprises 58 affiliated unions, two affiliated associations, 10 social enterprises, six related organisations as well as a growing ecosystem of U Associates and enterprise partners.\n\t\t\n\t\t\n\t\t\tNTUC's objectives are to help Singapore stay competitive and working people remain employable for life; to enhance the social status and well-being of our members and working people; and to build a strong, responsible and caring labour movement.\xa0 Our vision is to be an inclusive Labour Movement for all collars, ages and nationalities.\n\n\t\t\tWe want to CARE for our working people, ensure workplace practices are FAIR for them and GROW our workforce for a better future.\n\n\n\nWe will contact only shortlisted candidates."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-architect-transformation-office-10033472?jobId=jobstreet-sg-job-10033472§ionRank=9&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Scientist (AI)'}, {'company_name': 'Mediacorp Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Description': '', 'Responsibilities': 'Lead the continuous development of advanced analytics\xa0and\xa0AI/ML capabilities with a focus of NLP\xa0and\xa0Computer\xa0Vision..Implement scalable\xa0and\xa0robust AI/ML systems computing on large volumes of datasets using a variety of open source\xa0and\xa0proprietary Data Science technologies.End to end involvement in AI/ML projects\xa0from\xa0design, data processing, development, implementation, documentation, validation\xa0and\xa0optimization.Conduct research on AI/ML publications\xa0and\xa0be able to validate\xa0and\xa0implement according to\xa0local\xa0data\xa0and\xa0business needs.Work\xa0closely with stakeholders to ensure high standards of data governance during implementation.', 'Requirements': "Bachelor's\xa0degree\xa0in Computer Science, Computer Engineering\xa0or\xa0related fields.3+\xa0years\xa0of hands on Data Scientist experience on building production-grade ML models and products.Excellence in algorithms, data structure, discrete math,\xa0and\xa0distributed computing.Excellence software development capabilities,\xa0preferably\xa0in Python.Strong\xa0knowledge on Cloud Infrastructure, Kubernetes, Docker, GPU, TensorFlow, PyTorch or other Opensource AI/ML framework\xa0and\xa0libraries.Strong\xa0knowledge on SQL\xa0and/or\xa0NoSQL database.Experience\xa0working\xa0in NLP\xa0or\xa0Computer\xa0Vision\xa0areas is a\xa0strong\xa0plus.Experience\xa0working\xa0in Media & Entertainment industry is a\xa0strong\xa0plus.Self-directed, ability to\xa0work\xa0independently\xa0and\xa0research innovative solutions to technical\xa0and\xa0business problems..", 'Thank you for your interest\xa0and\xa0application to this role. Please note that only short-listed\xa0candidates\xa0will be contacted.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199201312E', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Entertainment / Media', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\nMediacorp is Singapore’s leading media company with the most complete range of platforms, spanning television, radio, newspapers, magazines, movies, digital and out-of-home media.\n\t\t\xa0\n\n\t\tIt pioneered the development of Singapore’s broadcasting industry, with the broadcast of Radio in 1936 and Television in 1963.\n\n\t\tToday, Mediacorp has over 50 products and brands in four languages (English, Mandarin, Malay and Tamil), reaching out to all adults in Singapore every week.\n\n\t\tInitiatives in the new digital space include Internet TV-on-demand, High Definition TV broadcast and Over-the-Top (OTT) interactive services.\n\t\n\tBeyond Singapore, Mediacorp is an active regional player through co-productions in TV dramas and movies, magazines publishing, as well as Channel NewsAsia International, one of the first Asian-owned English news channels.\n\t\n\t\n\t\tOur financial and strategic relationship in the region includes International Media Corporation in Vietnam, which was set up to develop and produce television entertainment and economic news content. Mediacorp also has a stake in Singapore-based retail firm Reebonz, one of the region's fastest growing luxury online retailers and a majority stake in Cubinet Interactive, a Malaysian digital games publisher.\n\t\n\tWinner of numerous international awards and accolades including Asian Television Awards' Terrestrial Broadcaster of the Year, Mediacorp’s mission is to engage, entertain and enrich audiences by harnessing the power of creativity.\n\t\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-ai-10141717?jobId=jobstreet-sg-job-10141717§ionRank=10&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Data Scientist, Data Analysis Manager'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'About Us': '', 'Job Description': 'Provide customized research and analysis to identify, qualify, cultivate, solicit and steward donors and prospects.Conduct financial or biographical research and compose profiles on individuals, corporations and foundations to identify, qualify, and prioritize prospective donors; independently research, select sources for research and ensures accuracy of reports.Conduct web-based research of publicly available information and monitor news and publicly-available information from professional publications, press releases and major newspapers on prospects and potential prospects to provide comprehensive reports of personal, financial and relationship based information and for solicitation strategy recommendations.Work collaboratively with and as a liaison to fundraisers and senior leaders, work to increase the pool of potential leadership gift donors and provides highly customized and strategic information that helps build increase in giving..Analyze prospective donor information and succinctly present results as reports, charts, tables, dashboards and other visual aids.Process ad-hoc requests for research as they are received and ensure all requests are completed accurately and in a timely manner.Evaluate research tools and emerging technologies and keep abreast of research trends and data management trends in the field of prospect research and management.Assist in developing best practices in prospect research and management in order to recommend ways to create efficiencies..Utilizes and broadens knowledge of prospect research methodologies, sources, and results.', 'Qualifications': 'Proficiency in using Business Intelligence tools (e.g. Power BI, Tableau or Qlik Sense).Knowledge of database, ETL and data API concepts..Proficiency in statistical computer languages (R, Python, MATLAB) to manipulate data and draw insights from large data sets..Experience using in one or more of the following techniques/methods: statistical and predictive modelling techniques, clustering and classification techniques, text analytics, and optimization methods..Knowledge of a second programming language (e.g. C++, C#/.NET, Java) is highly favourable..', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-data-analysis-manager-10114702?jobId=jobstreet-sg-job-10114702§ionRank=11&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
About Us
[{'position': 'Data Scientist, Data Analysis Mgr.'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'About Us': '', 'Job Description': 'Provide customized research and analysis to identify, qualify, cultivate, solicit and steward donors and prospects.Conduct financial or biographical research and compose profiles on individuals, corporations and foundations to identify, qualify, and prioritize prospective donors; independently research, select sources for research and ensures accuracy of reports.Conduct web-based research of publicly available information and monitor news and publicly-available information from professional publications, press releases and major newspapers on prospects and potential prospects to provide comprehensive reports of personal, financial and relationship based information and for solicitation strategy recommendations.Work collaboratively with and as a liaison to fundraisers and senior leaders, work to increase the pool of potential leadership gift donors and provides highly customized and strategic information that helps build increase in giving..Analyze prospective donor information and succinctly present results as reports, charts, tables, dashboards and other visual aids.Process ad-hoc requests for research as they are received and ensure all requests are completed accurately and in a timely manner.Evaluate research tools and emerging technologies and keep abreast of research trends and data management trends in the field of prospect research and management.Assist in developing best practices in prospect research and management in order to recommend ways to create efficiencies..Utilizes and broadens knowledge of prospect research methodologies, sources, and results.', 'Qualifications': 'Proficiency in using Business Intelligence tools (e.g. Power BI, Tableau or Qlik Sense).Knowledge of database, ETL and data API concepts..Proficiency in statistical computer languages (R, Python, MATLAB) to manipulate data and draw insights from large data sets..Experience using in one or more of the following techniques/methods: statistical and predictive modelling techniques, clustering and classification techniques, text analytics, and optimization methods..Knowledge of a second programming language (e.g. C++, C#/.NET, Java) is highly favourable..', 'More Information': []}, {'Career Level': 'Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '7 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-data-analysis-mgr.-10111289?jobId=jobstreet-sg-job-10111289§ionRank=12&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
About Us
[{'position': 'Data Scientist'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'About the Client': '', 'Main Duties & Responsibilities': 'Perform time series analysis and optimize forecasting accuracy using R/Python.Derive actionable insights from datasets and develop robust solutions.Build reports and dashboards using visualization tools such as Power BI, communicating insights with relevant stakeholders.Automate business processes by building machine learning models using Python.Collaborate with regional stakeholders to support analytics capabilities.', 'Experience and Qualifications': 'Bachelor’s degree in Statistics, Mathematics or any other related field of studies.0-2 years of working experience in a related role.Proficient with either R, Python or SQL.Strong knowledge of statistical time series forecasting is essential.Experience in database technologies such as SQL for querying and creation of databases.Familiarity with GCP or similar (eg. AWS, Azure) preferred.Experience with Power BI.Knowledge of machine learning tools and big data technologies – Spark, Hadoop etc is valuable.', 'Interest & Application': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-10107496?jobId=jobstreet-sg-job-10107496§ionRank=13&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
About the Client
[{'position': 'Data Scientist | Permanent | Regional'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Responsibilities:': 'Improve time-series statistical modeling forecasting accuracy over an 18 month horizon using R and Python on the Google Cloud Platform.Build machine learning models using Python to automate business processes.Analyze structured and unstructured datasets to discover trends and patterns.Ability to dig-in, understand the data, and to use creative thinking and problem-solving skills to design scalable and robust solutions.Present complex information using data visualization techniques through dashboards and reporting such as Microsoft Power BI..', 'Requirements:': "Bachelors or master's degree in Statistics or Mathematics.Experience in Python.Experience in time series, with a strong understanding and knowledge in time series forecasting; univariate, multivariate, and ensemble modeling..Experience with database technologies (SQL or others) in querying, creating databases, stored procedures, etc.Experience in Google Cloud Platform or similar (AWS, Microsoft Azure).Experience with Microsoft Power BI.", 'Next Step:': '', 'expected package': '', 'reasons for leaving': '', '.': '', '[email\xa0protected]': []}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-%7C-permanent-%7C-regional-10090254?jobId=jobstreet-sg-job-10090254§ionRank=14&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Scientist (life sciences) #Urgent'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Data Scientist (Life Sciences)': '', 'Responsibilities:': 'In-depth data analysis\xa0with machine learning and statistical methods.Identify novel DNA/RNA/ncRNA biomarkers.Develop models for multi-marker diagnostic test.Facilitate the design and execution of the experiment, the process set up and quality control set up with statistical insights\xa0.', 'Requirements:': 'MSc or PhD in life science or equivalent..Experienced in machine learning or other bioinformatics tools..Experienced in data related to (proteomics, transcriptomics, genomics, metabolomics, lipidomics, and epigenomics etc.).Past publication record as first-author in relevant scientific journals..', 'To Apply:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-life-sciences-urgent-10108861?jobId=jobstreet-sg-job-10108861§ionRank=15&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Data Scientist (Life Sciences)
[{'position': 'Azure Data Engineer'}, {'company_name': 'SMRT Corporation Ltd'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Job Purpose': '', 'Responsibilities': 'Understand the data landscape to formulate and complete end-to-end data strategy that includes data gathering, data processing, analysis, ongoing scaled deliverables, and presentations to facilitate decision-making and forward planning.\xa0.Identify opportunities for data acquisition, work with system owners to automate data connection..Analyze and organize raw data, combine raw information from different sources, build data systems and data pipelines, perform extract transform and load (ETL) to prepare for prescriptive and predicted modeling.\xa0.Able to analyze, implement and integrate the right services in cloud based on different data formats (structured, semi-structured and unstructured).Evaluate business needs and objective, interpret trends, patterns, and conduct complex data analysis and report on results..Build algorithms and prototypes, explore ways to enhance data quality and reliability; Develop analytical tools and programs.Collaborate with data scientists and architects on several projects..', 'Qualifications & Work Experience': 'Degree in Computer Science, IT, or similar engineering field; a Master is a plus.Previous experience as a data engineer, or in a similar role..Data engineering certification is a plus..', 'Skills': '', 'Technical skills include:': 'Strong analytical skills with the ability to collect, clean, organize, analyze and disseminate significant amounts of information with attention to detail and accuracy.Technical expertise with data models, data mining, and segmentation techniques.Knowledge of programming languages (Python, SQL, R & Java).Experience in Azure Data Factory.Expertise in working with Dedicated and Serverless SQL pool in Azure Synapse Analytics.Design, Build and Secure API Endpoints and follow Industry best practices to manage APIs.Experience in Azure Functions, Azure IOT Hub, and Azure API Management.Knowledge in other Azure Cloud Technologies, (i.e., Azure Analysis Service (AAS), Azure SQL DB, Event Hub, Azure Logic Apps and ARM Templates).Familiarity with the technology stack available in the industry for metadata management: Data Governance, Data Quality, MDM, Lineage, Data Catalog, etc.Hands-on experience with SQL database design.Great numerical and analytical skills, experience with data visualisation tools such as Power BI, Tableau, Qliksense, etc., would be an advantage.Nice to have skills: Containerization, Kubernetes, COSMOS DB, Spark SQL, and Azure Data Bricks.', 'Generic skills include:': 'Critical thinking and problem-solving skills.Team Player.Good time-management skills.Great interpersonal and communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200001855H', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Transportation / Logistics'}, {'Company Overview': '\nSMRT Corporation Ltd (SMRT) is a public transport services provider. Our primary business is to manage and operate train services on the North-South Line, the East-West Line, the Circle Line, the new Thomson East-Coast Line and the Bukit Panjang Light Rail Transit. This is complemented by our bus, taxi and private hire vehicle services.\n\n\tAn exciting and rewarding career is waiting for you at SMRT. Join us and embark on a journey that matters. You Matter – we take care of you and your well-being. Your Work Matters – your ideas and contributions work towards building the future of our transport system and create positive impacts to the community. Your Development Matters – we offer diverse careers and learning opportunities for our people to grow you to the fullest of your potential.\n\n\tCome onboard the SMRT journey today.'}, {'url': 'http://www.jobstreet.com.sg/en/job/azure-data-engineer-10098890?jobId=jobstreet-sg-job-10098890§ionRank=16&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Job Purpose
[{'position': 'Data Scientist (life sciences)'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities:': 'In-depth data analysis\xa0with machine learning and statistical methods.Identify novel DNA/RNA/ncRNA biomarkers.Develop models for multi-marker diagnostic test.Facilitate the design and execution of the experiment, the process set up and quality control set up with statistical insights\xa0.', 'Requirements:': 'MSc or PhD in life science or equivalent..Experienced in machine learning or other bioinformatics tools..Experienced in data related to (proteomics, transcriptomics, genomics, metabolomics, lipidomics, and epigenomics etc.).Past publication record as first-author in relevant scientific journals..', 'To Apply:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-life-sciences-10132467?jobId=jobstreet-sg-job-10132467§ionRank=17&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Senior Data Scientist'}, {'company_name': 'Mediacorp Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Job Responsibilities': 'Serve as primary source of data insights supporting internal\xa0and\xa0external constituencies.Analyse\xa0and\xa0translate data findings into meaningful, actionable insights – including synthesising relevant insights\xa0from\xa0different customer touch points\xa0and\xa0data sources.Lead, design\xa0and\xa0implement quantitative analytical frameworks, including scalable predictive models, customer segmentation\xa0and\xa0advertising optimisation that improve business performance\xa0and\xa0customer engagement.Institute\xa0and\xa0adopt best practices in data science, platforms\xa0and\xa0approaches..Establish internal organisational standards and benchmarks.Work\xa0with other teams in Mediacorp to understand business needs, document data and data integration requirements, and resolve conflicting business/data architecture rules. Ensure compliance with internal customer contact governance policies and drive closed-loop measurement through smart data capture..Become an internal authority on Mediacorp’s data tools\xa0and\xa0resources.Support ad-hoc business intelligence\xa0and\xa0other strategic initiatives.', 'Requirements': 'PhD\xa0or\xa0MS\xa0degree\xa0in Statistics, Mathematics, Machine Learning, Operations Research, Computer Science\xa0or\xa0related field..Minimum 5\xa0years\xa0hands-on experience in data science, including developing and productionising data science models.Demonstrated expertise in developing\xa0and\xa0implementing a full range of analytical techniques to address commercial challenges. Proficiency in at least one statistical analysis tool..Demonstrated experience with distributed databases\xa0and\xa0query\xa0languages. Proficiency in at least one programming\xa0language\xa0(preferably\xa0Java, C++, Python)..Must possess exceptional business judgment to identify core business objectives; synthesise\xa0and\xa0interpret disparate quantitative information,\xa0and\xa0develop commercial insights for key stakeholders.', 'Thank you for your interest\xa0and\xa0application to this role. Please note that only shortlisted\xa0candidates\xa0will be contacted.': []}, {'Career Level': 'Senior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199201312E', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Entertainment / Media', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\nMediacorp is Singapore’s leading media company with the most complete range of platforms, spanning television, radio, newspapers, magazines, movies, digital and out-of-home media.\n\t\t\xa0\n\n\t\tIt pioneered the development of Singapore’s broadcasting industry, with the broadcast of Radio in 1936 and Television in 1963.\n\n\t\tToday, Mediacorp has over 50 products and brands in four languages (English, Mandarin, Malay and Tamil), reaching out to all adults in Singapore every week.\n\n\t\tInitiatives in the new digital space include Internet TV-on-demand, High Definition TV broadcast and Over-the-Top (OTT) interactive services.\n\t\n\tBeyond Singapore, Mediacorp is an active regional player through co-productions in TV dramas and movies, magazines publishing, as well as Channel NewsAsia International, one of the first Asian-owned English news channels.\n\t\n\t\n\t\tOur financial and strategic relationship in the region includes International Media Corporation in Vietnam, which was set up to develop and produce television entertainment and economic news content. Mediacorp also has a stake in Singapore-based retail firm Reebonz, one of the region's fastest growing luxury online retailers and a majority stake in Cubinet Interactive, a Malaysian digital games publisher.\n\t\n\tWinner of numerous international awards and accolades including Asian Television Awards' Terrestrial Broadcaster of the Year, Mediacorp’s mission is to engage, entertain and enrich audiences by harnessing the power of creativity.\n\t\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-scientist-10130746?jobId=jobstreet-sg-job-10130746§ionRank=18&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Scientist (life sciences) #Worknow'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Data Scientist (Life Sciences)': '', 'Responsibilities:': 'n-depth data analysis\xa0with machine learning and statistical methods.Identify novel DNA/RNA/ncRNA biomarkers.Develop models for multi-marker diagnostic test.Facilitate the design and execution of the experiment, the process set up and quality control set up with statistical insights\xa0.', 'Requirements:': 'MSc or PhD in life science or equivalent..Experienced in machine learning or other bioinformatics tools..Experienced in data related to (proteomics, transcriptomics, genomics, metabolomics, lipidomics, and epigenomics etc.).Past publication record as first-author in relevant scientific journals..', 'To Apply:': []}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-life-sciences-worknow-10083030?jobId=jobstreet-sg-job-10083030§ionRank=19&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Data Scientist (Life Sciences)
[{'position': 'Digital Transformation Office – Associate Data Analyst'}, {'company_name': 'Singapore National Eye Centre'}, {'small_section': ['Outram', 'Posted on 8-Nov-22']}, {'You will be required to:': '', 'Requirements': []}, {'Career Level': 'Entry Level', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198900840W', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\nSingapore National Eye Centre (SNEC) was incorporated on 3 March 1989 and commenced operation in October 1990. It is the designated national centre for ophthalmology within Singapore’s public sector healthcare network, with a faculty of close to 80 ophthalmologists and more than 800 staff.\xa0SNEC spearheads and coordinates the provision of specialised ophthalmological services with emphasis on quality education and research.\xa0\nSNEC manages more than 330,000 patient visits and performs over 35,000 surgeries and laser procedures annually.\xa0 The centre offers a full spectrum of subspecialties addressing every part of the eye – Cataract, Corneal & External Eye Disease, General Cataract & Comprehensive Ophthalmology, Glaucoma, Neuro-ophthalmology, Ocular Inflammation & Immunology, Oculoplastic, Paediatric Ophthalmology and Adult Strabismus, Refractive Surgery, Surgical and Medical Retina.\nSingapore Eye Research Institute (SERI) was established in 1997 as Singapore’s national research institute for ophthalmic and vision research. It is the research arm of SNEC, and affiliated to the National University of Singapore (NUS) and the Duke-NUS Medical School, as part of the SingHealth-Duke-NUS Academic Medical Centre.\nOver the years, SERI has invested considerable resources into its research infrastructure and in the training of the next generation of clinician-scientists, clinician-researchers and scientists. In two decades, SERI has grown from a founding team of 5 to over 200 researchers, doctors and support staff, and is the largest eye research institute in the Asia-Pacific region.\nA global leader in eye research, SERI ranks ahead of its counterparts in the US, UK and Japan in terms of ophthalmology publications per capita. Tapping on its close affiliation to SNEC, SERI is in the unique position to translate basic research into cutting edge clinical care by enabling the development of new treatments for a variety of eye diseases.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/digital-transformation-office-associate-data-analyst-10144343?jobId=jobstreet-sg-job-10144343§ionRank=20&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
You will be required to:
[{'position': 'Data Scientist'}, {'company_name': 'Alstom'}, {'small_section': ['Kallang', 'Posted on 2-Nov-22']}, {'PURPOSE OF THE JOB': 'Participate in R&D and deployment of the next generation data-driven solutions for Mobility, within a lean startup pathway and in collaboration of engineering & mobility experts, data engineers, software engineers, HMI designer and MLOps/DevOps..Singapore Innovation project will be main target among all projects\xa0.', 'MAIN RESPONSIBILITIES': '', 'Key accountabilities:': 'Define, develop, manage & sustain the data model, including machine learning, AI, NLP or simulation, such as:.Design technical solution for data-driven approach, including engineering and financial impacts.Build feature extraction model and programming.Build learning models, including unsupervised predictive models and simulation tool.Assess and enhance the data quality of incoming data and model responses.Apply Data management practices.Build report and explanatory materials to share with engineering experts.Evaluate the opportunities from new mathematical and machine learning technologies.Apply a strong testing and quality assurance practices.', 'Performance measurements:': 'OTD.Developments QCD.', 'MAIN REQUIRED COMPETENCES': '', 'Mandatory:': 'Engineering or master’s degree supplemented by extensive training in data mining and/or machine learning.', 'Desirable:': [], 'Mandatory:\xa0': 'Experience with PHM or Predictive Maintenance.Experience in Traffic modelling.Experience in NLP.Experience in Video analytics.Experience in Sequence mining.Experience in log analytics.Experience with git and release management.', 'Competencies & Skills': 'Proven track record for designing stable solution, testing and debugging..Demonstrated teamwork and collaboration in a professional setting.Proven capabilities with worldwide teams.Fluent English..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199802217D', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '26 days', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'We create smart innovations to meet the mobility challenges of\xa0today and tomorrow. We design and manufacture a complete range of transportation systems, from high-speed trains to electric buses\xa0and driverless trains, as well as\xa0infrastructure, signalling and digital mobility solutions. Joining us means\xa0joining\xa0a truly global community of\xa0more than\xa075\xa0000\xa0people dedicated to solving real-world mobility challenges and achieving international projects with sustainable local impact.\xa0\xa0\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-10077051?jobId=jobstreet-sg-job-10077051§ionRank=21&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
PURPOSE OF THE JOB
[{'position': 'Data Scientist | Up to 12k | Automotive R&D | Smart Factory'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'SGD\xa06,000 - SGD\xa012,000', 'Posted on 3-Nov-22']}, {'Job Description:': "This position is responsible for researching and developing advanced algorithms with the knowledge of data science or optimization to solve the real problems in the manufacturing process..Center to lead paradigm shift in mobility value chain, spanning the entire lifecycle of vehicles..The group will build a customer-centered smart mobility environment where products are tailored to customer needs and mobility services would enrich its customers' lives..Lead or participate in the project which aims for solving diverse problems from the automotive industry covering acquiring data, algorithm development, and system implementation..Drive research from concepts to feasible output to determine the viability of ideas that leverage the knowledge of data analytics or optimization..Acquire the state of the art technologies and present ways to use them for solving real-world problems..Operate and develop models/services deployed in the manufacturing process..Publishing papers in journals/conferences or applying for patents as a result of the research conducted..", 'Job Requirements:': 'Bachelor or Master degree in Industrial Engineering, Computer Science, Mathematics, or equivalent practical experience.Total over two years of research or development experience in data analytic, or optimisation.Research experience in the manufacturing industry is preferred but not required..Experiences in the following: Regression/Classification/Clustering models, Large scale data analysis, Time series analysis, Forecasting models, or Kernel-based methods.Expertise in machine learning or data mining frameworks such as PyTorch, TensorFlow, Scikit-learn, or MLlib.Expertise in processing large scale data-sets in distributed data frameworks (Hadoop, Spark, or Hive).Experiences in the following: mathematical modelling and algorithm development using Mathematical programming (Linear programming, Mixed-integer programming), (Meta)Heuristic algorithms, Stochastic Process, or Combinatorial Optimization.Expertise in mathematical programming solvers including GUROBI, or CPLEX.', 'Next Steps': 'Only shortlisted candidates will be notified..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-%7C-up-to-12k-%7C-automotive-r-d-%7C-smart-factory-10101856?jobId=jobstreet-sg-job-10101856§ionRank=23&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Data Analyst, APJ - 218738BR'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted 6 hours ago']}, {'Key accountabilities': 'Leverage datasets\xa0from\xa0different source systems to build BI dashboards/reports to track business performance, enable data-driven commercial decisions,\xa0and\xa0report-out to stakeholders within requested timeline..Partner with other analytical teams, IT,\xa0and\xa0vendors to leverage various data sources in\xa0and\xa0deliver solutions that provide deep insights into customer behavior across the channels\xa0and\xa0touch points through which customers interact..Manage multiple initiatives,\xa0work\xa0streams,\xa0and\xa0priorities\xa0and\xa0ensure the team has clear direction in a constantly evolving\xa0environment. Also manage expectations across groups, divisions\xa0and\xa0teams..', 'Qualifications:': "Bachelor's or Master's\xa0Degree\xa0with 3+\xa0years\xa0of relevant experience in data science, analytics, statistics, applied math\xa0or\xa0related.Strong\xa0experience in e-commerce, UX\xa0and\xa0Digital Marketing.Knowledge of digital analytics tools.Experience with Marketing & Digital KPIs, online marketing, multi-channel marketing strategies,.Strong\xa0business acumen\xa0and\xa0analytical skills.Proven ability to\xa0apply\xa0analytical\xa0and\xa0creative thinking to problem-solve..Google Analytics\xa0or\xa0Adobe certifications are a plus.Knowledge of Google Tag Manager\xa0or\xa0any Tag Management System is a plus.A/B, MVT experience is a plus.Experience with data consumption platforms such as Power BI or Tableau.Experience with data mining\xa0and\xa0visualization software is a plus..Experience in end-to-end advance analytics implementation project is advantage..Ability to travel when required."}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-apj-218738br-10146960?jobId=jobstreet-sg-job-10146960§ionRank=24&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Key accountabilities
[{'position': 'Data Scientist | Prediction Model #WorkNow'}, {'company_name': 'Achieve Career Consultant Pte Ltd'}, {'small_section': ['Central', 'Posted on 2-Nov-22']}, {'·\xa0\xa0\xa0\xa0\xa0MNC': '', '·\xa0\xa0\xa0\xa0\xa0Central': '', '·\xa0\xa0\xa0\xa0\xa05-day week': '', 'Up to $10k': '', 'Our client,\xa0': '', ',': '', '\xa0Data Scientist.': '', 'RESPONSIBILITIES:': 'Develop python-coded supply-demand forecasting models.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Able to use machine learning to build price forecast models.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Convert excel-based forecasting models to python-based models..Maintain and enhance existing models with changing market dynamics.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Collaborate with data engineers to ensure the data feed for forecast models is collected and processed properly ..Document methodologies, algorithms and processes to present to stakeholders regularly.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.', 'REQUIREMENTS:': 'PHD/Master/Bachelor in relevant field.5-8 years and above with relevant working experience..Preferable in an MNC setup environment..PHD in computer science/computer engineering, math, statistics, or similar subjects is preferred..Extensive data modeling and data architecture skills..', 'OTHER INFORMATION:': 'Location: Central (Raffles Place).Working days:\xa0Monday to Friday (office hour).Salary: Up to $10,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..', 'HOW TO APPLY:': '', 'Janelle Kow Jing Qi': '', 'Janelle at 6590 9964\xa0': '', 'YOUR SUCCESS IS OUR ACHIEVEMENT!': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199801996Z', 'EA No.': '05C3451', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "We're Here to Help People ACHIEVE Success!ACHIEVE is a multi-award-winning ISO 9001 recruiter that has placed more than 40,000 people in positions across industries. Established since 1990, with headquarters in Singapore and an office in Malaysia,\xa0our consultants are specialists in specific areas of specialization, and have the expertise to match candidates with the right permanent positions and contract jobs. In our 30 over years as a recruiter, we are widely recognised by jobseekers, MNCs and SMEs across the Asia Pacific region. A homegrown trusted brand, we are regularly featured in the media and have been honoured with multiple awards by the business community.\xa0In 1H 2022, we were accorded the rare honour of being conferred both the Human Capital Partnership Programme for Employment Agencies (HCP) by the Ministry of Manpower (MOM) and the Singapore Prestige Brand Award (SPBA) by the Association of Small and Medium Size Enterprises (ASME), in recognition of our business transformation efforts and push to build a Singapore core in the workforce!"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-%7C-prediction-model-worknow-10126249?jobId=jobstreet-sg-job-10126249§ionRank=25&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
· MNC
[{'position': 'Data Scientist (Ref:DMSMC)'}, {'company_name': 'National Cancer Centre Singapore Pte Ltd'}, {'small_section': ['Outram', 'Posted on 2-Nov-22']}, {'Research Fellow / Data Scientist': '', 'www.chualabnccs.com': '', 'Requirements:': '', '(Good to have)': []}, {'Career Level': 'Senior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199801562Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Uniform and Non-Uniform, Others', 'Specific Location': '11 Hospital Crescent'}, {'Company Overview': '\n\tThe National Cancer Centre Singapore (NCCS) has evolved over the past 20 years to become one of the leading regional centres for cancer treatment and research. It has pioneered the one-stop multi-disciplinary approach to cancer treatment and is now home to oncologists, surgeons and researchers, dedicated to the care and treatment of a growing number of cancer patients.\n\tToday, NCCS see close to 65 per cent of the public sector oncology cases in Singapore. To deliver\xa0the latest cancer care and treatment, clinicians work closely with researchers who conduct robust cutting-edge clinical and translational research which has received international recognition.\xa0NCCS strives to be a global leading cancer centre, and shares its expertise and knowledge by training the next generation of medical professionals.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-ref%3Admsmc-10076794?jobId=jobstreet-sg-job-10076794§ionRank=26&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Research Fellow / Data Scientist
[{'position': 'Data Engineer'}, {'company_name': 'SBS Transit Limited'}, {'small_section': ['Singapore', 'Posted 4 hours ago']}, {'Responsibilities:': 'Design and develop data pipelines and infrastructure to support analytics projects for optimal extraction, transformation and loading of data from various data sources.Management of large volumes of structured and unstructured data and transforming it into useable form for analytics purposes.Automate data collection and processing for analytical modelling input.Maintain and improve the quality of datasets.Optimisation of algorithms for production deployment.Identify opportunities for internal process improvement via data solutions..', 'Requirements:': '4 years in developing data engineering solutions, preferably with production deployment experience, using tools such as Python, SQL, Apache Spark, Apache Hadoop, Apache Kafka, Docker, Git, Shell, Bash or equivalent.Background in computer science, data analytics or a relevant field. Degree or higher preferred, but candidates with the relevant work experience and certifications will be considered.Experience and knowledgeable of basic model and dashboard development (backend), building big data infrastructure, project management, data governance concepts.Independent, intellectually curious, creative, diligent, and a holistic thinker.Working knowledge of building pipelines involving real-time streaming data, big data, cloud technologies or equivalent.Experience/knowledge of using Splunk and Robotic Process Automation (RPA) solutions like UIPath\xa0.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '199206653M', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '12 days', 'Industry': 'Transportation / Logistics'}, {'Company Overview': '\n\tSBS Transit is a leading public transport operator. It is a member of the ComfortDelGro Group which operates in seven countries around the world. Our people are our strongest driving force and their welfare and development are important to us. We listen to what they have to say and we are constantly grooming them to their fullest potential. Join the SBS Transit family today and let us help you grow.\n\n\tBy submitting this application for this position, you acknowledge that you have read the Data Protection Policy for Job Applicants (the “Policy”) of SBS Transit Ltd and its subsidiaries, affiliates and related corporations (‘SBST”) and consent to:\n\t\n\t\ta.\xa0\xa0\xa0 The collection, use and disclosure of your personal data by SBST for the purposes of your application and potential employment with SBST and the purposes set out in the Policy: and\n\tb.\xa0\xa0\xa0 SBST’s retention of your personal data for two years for consideration of future job opportunities (where applicable) form from the date of application submission.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10147386?jobId=jobstreet-sg-job-10147386§ionRank=27&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Engineer'}, {'company_name': 'Central Provident Fund Board'}, {'small_section': ['Novena', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Develop, test and maintain the data infrastructure, the data ingestion pipeline, data store and data processing on-premises and cloud.Design, build, deploy and manage end-to-end data pipelines for batch and stream processing that can adequately handle the needs of a rapidly growing data-driven organisation.Responsible for the building of scalable and reliable ETL processes for the ingestion and integration of large, structured and unstructured data from variety of data sources on-premises and on the cloud platforms.Implement and execute data security and data quality measurements to ensure compliance to data security and data governance policies.Implement analytic tools, analytic applications and user self-service portal for data scientists and business users\u200b.', 'Required Attributes': 'At least 5 years of relevant working experience as a data engineer on data lake.Experience with cloud computing environment and familiar with government commercial cloud.Experience working with big data ecosystems, Hadoop & Spark architecture and building data-intensive applications and pipelines.Experience in installing, configuring and supporting Linux and Microsoft Windows Servers\u200b\xa0\xa0.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Others, Others', 'Registration No.': 'T08GB0007E', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '13 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Flexible Dress Code'}, {'Company Overview': '\n\tIn CPF Board, we believe in achieving our mission and vision through motivated people who are committed to learn, upgrade and innovate.\n\n\tPeople are important. Therefore, we create opportunities for our staff to develop their potential through our well-structured training & career development programme. We have also in place an attractive remuneration and benefits package.\n\n\tWe are looking for highly motivated, talented and committed professionals to join us in our mission to enable Singaporeans save for a secure retirement. If you have the relevant working experience, take up the challenge and apply today.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10143400?jobId=jobstreet-sg-job-10143400§ionRank=28&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow, - (Data Scientist-AI) - #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:\xa0': 'Develop and implement ML algorithms and tools to build machine learning and analytics platform..Contribute in AI/ML projects from design, data processing, development, implementation, documentation, validation and optimization..Explore new technologies for data implementation AI adoption..Develop visualization, dashboards and report formats according to project requirements..Generating IP/Patents and publish high quality papers in journal and conferences.', 'Job Requirements:\xa0': 'PhD in electrical/electronics/computer engineering or related fields..Masters and Bachelors hers may apply and will be considered for suitable job grades.At least 2-5 of relevant experience with machine learning algorithms, platforms and APIs.Strong foundation in mathematics, as well as familiarity with signal analysis and estimation..Programming skills in Python, R, C++, and Matlab.Strong background in handling data and programming.Independent analytical problem-solving skills\xa0\xa0.Highly motivated, independent and able to work as a team.Willingness and ability to develop new skills.Good communication, interpersonal and critical skill..'}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-scientist-ai-worknow-10135169?jobId=jobstreet-sg-job-10135169§ionRank=29&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Manager (Data Scientist), AIO Innovation Office (Contract)'}, {'company_name': 'National University Health System'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {':': 'Research and development of machine learning models in various clinical areas such as clinical notes, medical images, and patients’ data.Research and development of neural network models to analyze free text and identifying, categorizing opinions expressed in a piece of text.Work with the team to design and architect the workflow of the data and algorithms including data input, output and storage between various health IT systems.Work with the team to develop and deploy necessary AI models for NUHS in-house chatbot framework in hybrid cloud environment.Optimize data analysis processes and systems for better efficiency and maintenance.Document clearly explaining how algorithms have been implemented, verified and validated.Lead project team to deliver AI related research and development requirement to meet the business need.Minimum Bachelor’s degree in computer science or related fields with strong statistical modelling and machine learning skills. Graduate degree in related fields is preferred.4 years of hands-on experience in the development of end-to-end data analytics solutions and machine learning pipeline including data exploration/extraction/crawling, data processing, and model building.Hands-on experience on development of AI models in NLP.Proficient with programming in Python and AI related frameworks such as Scikit-Learn, TensorFlow, and PyTorch.Knowledge and experience in machine learning platform and services from cloud providers such as AWS, GCP, Azure.Familiarity with healthcare data, medical image is a plus.Experience in leading AI projects and virtual team.Strong problem-solving skills with the ability to work independently and in a team.Excellent written and verbal communication skills, including the ability to communicate technically and non-technically with ability to translate between the two.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200801778C', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\t\tAbout the National University Health System (NUHS)\n\n\n\tSpanning three acute hospitals, two community hospitals, three national centres, six polyclinics, three family medicine clinics, and three health science institutions, our unique and comprehensive ecosystem anchors NUHS as a leading academic health system in Singapore – driven by research and education.\n\t\n\t\tInspired by our patients and the population that we serve, our strong network of talents and resources across our institutions provide patient-centred care across the whole continuum - improving health and driving transformation from primary, tertiary to complex care. In close collaboration with our community partners, we aim to deliver “Incredible Care and Health, Together”!\n\t\n\tMembers of the NUHS:\n\t• National University Hospital\n\t• Ng Teng Fong General Hospital\n\t• Alexandra Hospital\n\t• Jurong Community Hospital\n\t• National University Polyclinics\n\t• National University Cancer Centre, Singapore\n\t• National University Heart Centre, Singapore\n\t• National University Centre for Oral Health, Singapore\n\t• NUS Yong Loo Lin School of Medicine\n\t• NUS Faculty of Dentistry\n\t• NUS Saw Swee Hock School of Public Health'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-data-scientist-aio-innovation-office-contract-10082181?jobId=jobstreet-sg-job-10082181§ionRank=30&token=0~948f3947-2ce0-4a49-96fc-436ca4bec513&fr=SRP%20Job%20Listing'}]
:
[{'position': 'Data Analyst (Contract/Alteryx/Banking)'}, {'company_name': 'Tangspac Consulting Pte Ltd'}, {'small_section': ['Changi', 'SGD\xa03,500 - SGD\xa05,200', 'Posted 23 hours ago']}, {'Position: Data Analyst': 'Position: Data Analyst.Employment Type: 1-year Agency Contract (Highly Renewable).', 'Employment Type: 1-year Agency Contract (Highly Renewable)': 'Location: Changi Business Park.', 'Location: Changi Business Park': '', 'Responsibilities:': 'Be an internal visualization analytics consultant for CCIB Client Coverage and develop useful analytics products across use cases, segments, and product portfolios.Build compelling analytics products using industry leading analytics tools such as Tableau, Alteryx, driving use cases across data monetization, risk mitigation, productivity improvement, progress tracking and management reporting.Translate key challenges, requirements and needs from the business into impactful, actionable metric, KPIs and solutions, to solve everyday business problems.Act as a conduit between technical and business stakeholders by translating business/ functional requirements from Product Owners / delegates into technical requirements for processing by the technology teams.Assess key market trends, gaps, and opportunities to onboard new innovative technologies.Partner with stakeholders and senior management to build awareness and expand the analytics/automation offering of the team, aligning with business needs for today and the future.Build trust and strong working relationships with business and technology stakeholders.Extract and/or consolidate required data from core platforms e.g. Client Central and downstream systems e.g. order placement, product softwares to facilitate data analysis and reporting.', 'Requirements:': 'Min. 2 years’ experience in Financial Services Industry.Relevant analytics work experience and demonstrated career progression/increase in responsibilities.Strong academic record: Degree in Finance, Statistics, Computer Science or related field.Strong Knowledge of Tableau or Alteryx or similar visualization tools.At least one year of experience with any of the data processing tools Alteryx, Dataiku, or Tableau is required..Proficient in SQL.Proficient in Microsoft Office, particularly Microsoft Excel & PowerPoint..Strong understanding of Hadoop Database.Understanding in emerging cloud and smart technologies such as Azure, AWS, Cognitive Automation will be an added plus.Experience in data commercialization – facilitating partnerships and driving buy-in/adoption from stakeholders of varying levels.Understanding of the ETL process.Good presentation, time management, negotiation and influencing skills.Strong analytical and problem solving skills.Experience in project management from business requirement definition, solution validation, user testing, technical documentation and production roll out, especially on a global scale.Ability to manage multiple work streams with strong problem solving and analytical skills.Strong communication and presentation skills to varying levels of management.Highly driven and motivated with an eager-to-learn attitude and actively seek out ways to improve processes, people, and products\xa0.Good presentation, time management, negotiation and influencing skills.Ability to influence without authority.Has experience with Agile / Scrum and/or Kanban certified.', 'Tangspac Consulting Pte Ltd': []}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '.', 'EA No.': '07C3635', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '5 days', 'Industry': 'Human Resources Management / Consulting', 'Specific Location': 'CBP'}, {'Company Overview': "\n\tTangspac is one of Asia’s preeminent professional search firms and a premier provider of permanent recruitment and contractual staffing services. Our clients range from publicly traded corporations, financial institutions, to various government bodies in Asia. Our specializations extend across Financial Technology, Banking & Finance, and Commerce verticals. Tangspac offers a range of solutions – from bespoke contingency search aimed at placing senior executive roles with niche skillsets, to highly efficient contractual resourcing strategies designed to gain quick access to limited talent pools across the region. With direct branches and affiliate offices operating in Asia dating back to 1994, our clients can leverage an unparalleled expertise and track-record.\n\n\tMore about us can be read from our website www.tangspac.com\n\tTangspac's EA License No.: 07C3635."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-contract-alteryx-banking-10145822?jobId=jobstreet-sg-job-10145822§ionRank=32&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Position: Data Analyst
[{'position': 'Enterprise Data Science Management Lead (5742)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities:': 'Create an enterprise-wide data vision..Design and implement a data strategy to drive business decisions and growth..Oversee data management, data quality control, data governance and data access as well as drive the growth of data science and new capabilities such as Machine Learning and AI to enhance operations, capture greater customer value and deliver business impact..Partner with external and internal stakeholders to build a strong pipeline of impactful projects to extract insights from data which can then be translates into business decisions..Act as a thought leader within the organisation on best practices for Data and Analytics.', 'Requirements:': 'A Bachelor’s Degree, Master’s Degree or PhD in Computer Science, Mathematics, Statistics, or related field.At least 15 years’ experience in a senior-level data management role..Possess a strong business acumen and a proven track record of leading and mentoring a team in managing advanced analytics and data science..Excellent leadership, stakeholder management and communication skills..While this senior role is not expected to do programming, experience in Python/SQL, R and Java is required..'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '15 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/enterprise-data-science-management-lead-5742-10144175?jobId=jobstreet-sg-job-10144175§ionRank=33&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Fellow - (Data Scientist-AI) - #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Key Responsibilities:\xa0': 'Develop and implement ML algorithms and tools to build machine learning and analytics platform..Contribute in AI/ML projects from design, data processing, development, implementation, documentation, validation and optimization..Explore new technologies for data implementation AI adoption..Develop visualization, dashboards and report formats according to project requirements..Generating IP/Patents and publish high quality papers in journal and conferences.', 'Job Requirements:\xa0': 'PhD in electrical/electronics/computer engineering or related fields..Masters and Bachelors hers may apply and will be considered for suitable job grades.At least 2-5 of relevant experience with machine learning algorithms, platforms and APIs.Strong foundation in mathematics, as well as familiarity with signal analysis and estimation..Programming skills in Python, R, C++, and Matlab.Strong background in handling data and programming.Independent analytical problem-solving skills\xa0\xa0.Highly motivated, independent and able to work as a team.Willingness and ability to develop new skills.Good communication, interpersonal and critical skill..'}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-scientist-ai-worknow-10130637?jobId=jobstreet-sg-job-10130637§ionRank=35&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist - (33658-JOB)'}, {'company_name': 'Illumina Singapore Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '200310311H', 'Company Size': '2001 - 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': '\n\tDo you want to make a difference? Illumina’s mission is to improve human health by unlocking the power of the genome. If that inspires you, let’s talk. We’ve built a culture fueled by innovation, collaboration and openness, and established ourselves as the global leader in DNA sequencing and array-based technologies. Our people and our technology change lives by driving advancements in life sciences, oncology, reproductive health, agriculture and other emerging markets. We are deeply passionate about what we do, because we know that our work has the power to improve lives.\n\n\tWe’re an established company with a track record of phenomenal growth. Our revenue grew from $10 million in 2002 to approximately $2.2 billion in 2015. Our growth isn’t just revenue, we’ve been hiring the best and the brightest. Perhaps that’s why MIT has ranked Illumina near the top of its World’s Smartest Companies list three years running, including #1 in 2014. If you thrive in a brilliant, fast-paced, and mission-driven environment, Illumina is the place for you – imagine the possibilities.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-33658-job-10125733?jobId=jobstreet-sg-job-10125733§ionRank=36&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
[{'position': 'Analyst (contract till 30 Jun 2023), Data Management & Informatics'}, {'company_name': 'Changi General Hospital'}, {'small_section': ['Changi', 'Posted 10 hours ago']}, {'Responsibilities:': '', 'Requirements:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '198904226R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '16 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Business/ Uniforms (depending on Job role), Regular Hours/Shifts'}, {'Company Overview': '\n\tChangi General Hospital (CGH) is an academic medical institution with over 1,000 beds serving a community of more than 1 million people in eastern Singapore. With a wide range of medical specialties and services, it is helmed by an experienced and skilled team of healthcare professionals who consistently deliver positive health outcomes and care for patients.\xa0 CGH is a member of the SingHealth cluster of healthcare institutions.\n\n\n\t\tCGH has established itself as a centre of medical excellence, with services such as the Sport & Exercise Medicine, Emergency Medicine, Geriatric Medicine,Sleep Medicine, Surgery and Science, Rehabilitation Medicine, Digestive Diseases Centre, Stroke Service and Occupational Medicine.\n\n\t\tCGH believes in delivering the best patient care with passion and empathy. To improve care for patients, CGH has adopted a proactive integrated care approach. CGH aims to deliver better, seamless and Integrated Medical services by partnering healthcare providers in the east and innovating by adopting new medical technologies and systems.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/analyst-contract-till-30-jun-2023-data-management-informatics-10116920?jobId=jobstreet-sg-job-10116920§ionRank=37&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Scientist I/II'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'\xa0The officer will be required to but not exclusive to:': 'Work in an innovative, dynamic and fast-paced environment to test, develop and optimize molecular and immune-diagnostics assays and novel analytical platforms.Work independently to plan, execute, access and evaluate efficiency and efficacy of experiments for the development and optimization of digital pathology and immuno diagnostics assay using a novel analytical platform..Apply design control and phase gate driven product development processes for the development of medical device systems and hardware platform products in accordance to ISO 13485..Fulfil ethics approval (IRB) requirements for clinical studies involving human subjects research.\xa0.Communicate with internal and external stakeholders on progress of experiments, present and interpret experimental results and make recommendations on ways to optimize product development in accordance to ISO13485..Write design optimization and verification plans and reports in accordance to ISO 13485..Write approval memos for justification and rationale for purchase of laboratory associated equipment and consumables..Handle biological and clinical samples (whole blood, cells or tissue).Perform routine sample preparation from biofluid and tissue samples.Execute product development experiments and data analysis.Conduct validation and verification test based on ISO 13485 processes.Oversee maintenance of records of lab associated material and equipment.', 'Requirements:': 'Bsc, Master or PhD in Life Sciences / Molecular Biotechnology / Biotechnology / Engineering or a related discipline.3+ years of diagnostics industry experience inclusive of diagnostics assay product development, reagent optimization, analytical and clinical validation and quality control in the fields of oncology and infectious diseases..Prior experience in the following highly desired: pathology or immuno diagnostic assay product development and optimization; fluorescence microscopy, cell biology or histopathology..Experience in ISO13485 setting or relevant industry experience is preferred..Ability to work independently to plan and execute, analyze and evaluate efficiency and efficacy of experiments in the development and optimization of molecular and immuno diagnostic assays and novel analytical platforms..Presentation and interpretation of results to internal and external stake holders..Mentoring of junior scientists in skills development.\xa0.Well organized, with the ability to multitask, delegate and lead a team..Ability to work independently and as a team..Experience in applying design control and phase gate driven product development processes for the development of medical device systems and hardware platform products in accordance to ISO 13485..Good understanding of applicable medical device regulations and design control processes that comply with the ISO 13485, FDA 21 CFA Part 820 and the 98/79/EC IVD and MDD Directives..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-i-ii-10096419?jobId=jobstreet-sg-job-10096419§ionRank=38&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
The officer will be required to but not exclusive to:
[{'position': 'Senior Manager (Data Scientist), AIO Biomedical Informatics Office (1 year contract)'}, {'company_name': 'National University Health System'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {':': 'Research and development of machine learning models in various clinical areas such as clinical notes, medical images, and patients’ data.Research and development of neural network models to analyze free text and identifying, categorizing opinions expressed in a piece of text.Work with the team to design and architect the workflow of the data and algorithms including data input, output and storage between various health IT systems.Work with the team to develop and deploy necessary AI models for NUHS in-house chatbot framework in hybrid cloud environment.Optimize data analysis processes and systems for better efficiency and maintenance.Document clearly explaining how algorithms have been implemented, verified and validated.Lead project team to deliver AI related research and development requirement to meet the business need.Minimum Bachelor’s degree in computer science or related fields with strong statistical modelling and machine learning skills. Graduate degree in related fields is preferred.6 years of hands-on experience in the development of end-to-end data analytics solutions and machine learning pipeline including data exploration/extraction/crawling, data processing, and model building.Hands-on experience on development of AI models in NLP.Proficient with programming in Python and AI related frameworks such as Scikit-Learn, TensorFlow, and PyTorch.Knowledge and experience in machine learning platform and services from cloud providers such as AWS, GCP, Azure.Familiarity with healthcare data, medical image is a plus.Experience in leading AI projects and virtual team.Strong problem-solving skills with the ability to work independently and in a team.Excellent written and verbal communication skills, including the ability to communicate technically and non-technically with ability to translate between the two.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': '200801778C', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\t\tAbout the National University Health System (NUHS)\n\n\n\tSpanning three acute hospitals, two community hospitals, three national centres, six polyclinics, three family medicine clinics, and three health science institutions, our unique and comprehensive ecosystem anchors NUHS as a leading academic health system in Singapore – driven by research and education.\n\t\n\t\tInspired by our patients and the population that we serve, our strong network of talents and resources across our institutions provide patient-centred care across the whole continuum - improving health and driving transformation from primary, tertiary to complex care. In close collaboration with our community partners, we aim to deliver “Incredible Care and Health, Together”!\n\t\n\tMembers of the NUHS:\n\t• National University Hospital\n\t• Ng Teng Fong General Hospital\n\t• Alexandra Hospital\n\t• Jurong Community Hospital\n\t• National University Polyclinics\n\t• National University Cancer Centre, Singapore\n\t• National University Heart Centre, Singapore\n\t• National University Centre for Oral Health, Singapore\n\t• NUS Yong Loo Lin School of Medicine\n\t• NUS Faculty of Dentistry\n\t• NUS Saw Swee Hock School of Public Health'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-manager-data-scientist-aio-biomedical-informatics-office-1-year-contract-10082189?jobId=jobstreet-sg-job-10082189§ionRank=39&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
:
[{'position': 'Research Assistant (Computer Science and Data Science) (R00006992)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 6-Nov-22']}, {'Key Responsibilities': 'The Research Assistant(RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning. The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data. This includes:.Conduct literature study.Design and implement new algorithms and machine learning models.Collect datasets and conduct experiments on the datasets.Write research papers and present the results at conferences.', 'Job Requirements': 'Bachelor degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal data.Programming skills, and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-and-data-science-r00006992-10138945?jobId=jobstreet-sg-job-10138945§ionRank=40&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Big Data Developer'}, {'company_name': 'Talent Trader Group Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa07,000', 'Posted on 30-Oct-22']}, {'Responsibilities:': 'Design, develop and support the real time data platform.Conceptualize, evaluate and build proof of concepts on new models, tools and techniques.Collaborate, peer review, cross skill and share expertise with other team members.Performance tuning of the system and work on new ways to increase efficiency.A passion to solve interesting problems in metadata management and Big Data.Strong hands-on experience in Core Java (Ideally have the knowledge of Java 8).Good knowledge in JMS (Active MQ, Kafka, Rabbit MQ).Good knowledge in Apache Camel.Familiar with Linux operation system.Strong knowledge in SQL (Oracle, MySQL, MariaDB).Big Data exposure with Hadoop, HIVE, Spark, Impala, Sqoop, Oozie.', 'APPLY': []}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201230353E', 'EA No.': '13C6305', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '30 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tOur business philosophy stems from our belief that Mid management are vital to all organisations.We thus focused our specialisation to the placement of these professionals and we are now among Singapore’s leading Mid management recruitment firms.\n\tOur understanding of Mid recruitment spans the following areas:\n\t\n\n\t\t\tIndustry knowledge\n\n\t\t\tCandidate psychology\n\n\t\t\tPre-recruitment analysis\n\n\t\t\tRecruitment\n\n\t\t\tPost recruitment maintenance\n\n\n\tWe are fully committed to achieving excellence in every assignment through leveraging our vast candidate pool, industry connections and strategic insights.\n\tFor candidate who applied for the advertised position is deemed to have consented to us that we may collect, use or disclose your personal information for purpose in connection with the services provided by us.\n\tMOM License No. 13C6305http://talenttradergroup.com/\n\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-developer-10064060?jobId=jobstreet-sg-job-10064060§ionRank=41&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Engineer'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Overview': '', 'Job Responsibilities': 'Identify suitable data structures based on business needs to ensure availability and accessibility of data..Determine technical system requirements based on data needs..Keep abreast of latest technologies and products in database and data processing software, and technologies..Build scalable data pipelines to extract, transform, load and integrate data..Develop codes and scripts to process structured and unstructured data in real-time from a variety of data sources..Test data pipelines for scalability and reliability to process high data volume, variety and velocity..Implement and monitor data security and privacy measures on data solutions..Consolidate and create data storage solutions for storage and retrieval of information..Monitor data system performance..Assist in the integration of data systems with existing infrastructure..Develop tools to improve data flows between internal and/or external systems and the data warehouse..Automate the data collection and analysis processes, data releasing and reporting tools..Test data system configurations to increase efficiency..', 'Requirements': "Bachelor's or master's degree in Computer Science, Computer Engineering, Information Systems, Information Engineering, or equivalent.At least 5 years of data engineering experience..Experience in building and optimizing data pipelines, architectures and data sets..Experience working with stakeholders to identify business needs and analytics opportunities."}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10140479?jobId=jobstreet-sg-job-10140479§ionRank=42&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Job Overview
[{'position': 'Data Engineer | Permanent'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Responsibilities': "To support and ensure the smooth running of the data infrastructure and fine-tuning of the database..Design, develop, implement, support and maintain old and new data models, data warehouses, cubes, ETL packages and core data infrastructure crucial to the needs of the business..Retrieve, cleanse, validate and analyse data using different techniques in order to retain the data integrity and availability for Business Supports..Work closely with internal stakeholders to collect and understand business requirements then build, design and manage interpret solutions for either reporting or dashboard solutions required.Transform business requirement to data requirement, data analysis and profiling.Design data models for use cases and data warehousing.Perform data cleaning and ensure data quality and integrity in data warehouse.Root cause analysis of data issues and coming up with stable long terms solutions.Support data store's inbound and/or outbound development.Identify data from different source systems and build the target data models.", 'Requirements': 'Diploma/BS in any relevant field (e.g., Statistics, mathematics, computer science or information technology)..At least 3-5 years relevant working experience as Data Engineer/Business Intelligence..Experience in on-premise and cloud technology.Highly proficient in composing, maintaining and optimising complex SQL queries..Strong analytical skills with the ability to collect, organize, analyze, and disseminate significant amounts of information with attention to detail and accuracy..Strong knowledge of and experience on data management, structure, retrieval and ETL processes (structured and unstructured data source.Familiarity with programming languages such as Java, Python and its libraries.', 'Next Step:': '', 'expected package': '', 'reasons for leaving': '', '.': '', '[email\xa0protected]': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-%7C-permanent-10092178?jobId=jobstreet-sg-job-10092178§ionRank=43&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Analyst | Central Area | up to $8,000'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa08,000', 'Posted 6 hours ago']}, {'Job responsibilities': "Extract and clean the data from various data sources to generate daily, weekly and monthly reports.Set up the automation of reports from data extracted and stored by AWS.Provide data analysis and insights to identify and recommend areas of improvement.Fulfil ad-hoc data request from client and management.Have some experience in ETL processes and mapping different sources of data with key identifiers.Writing SQL queries to retrieve information quickly.Management and Identification of key data points, trends that can be used in tandem with operations to increase KPI's.", 'Knowledge/Skills Required': 'Experience in contact centre/service industry including data/trend prediction & analysis, self-help migration.Experience in building reports using Excel, Tableau, SQL, Power BI, Python, or other business intelligence and data analytics tools Strong communication and presentation skills.Proactive and able to work independently with minimum supervision.Excellent time management with strong critical thinking and ability to handle pressure.', 'click the "APPLY NOW" button': []}, {'Career Level': 'Non-Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-%7C-central-area-%7C-up-to-%248-000-10146897?jobId=jobstreet-sg-job-10146897§ionRank=44&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Job responsibilities
[{'position': 'Senior Data Scientist - (22000296)'}, {'company_name': 'The Great Eastern Life Assurance Co Ltd'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'To all recruitment agencies:': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '190800011G', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Insurance'}, {'Company Overview': '\n\tFounded in 1908, Great Eastern is a market leader and a well-established trusted brand in Singapore and Malaysia. With S$82.5 billion in assets and over 4 million policyholders, the Group also operates in Indonesia and Brunei and has a presence in China as well as a representative office in Myanmar.\n\n\tThe Great Eastern Life Assurance Company Limited and Great Eastern General Limited have been assigned the financial strength and counterparty credit ratings of "AA-" by Standard and Poor\'s since 2010, one of the highest among Asian life insurance companies.\n\n\tWe are a LIFE company and our purpose is to empower generations to live healthier and better so that they can live life to the fullest. Be it celebrating life’s simple moments or commemorating life’s major milestones, every day, in many ways, we inspire those around us to live great and celebrate life.\n\n\tPlease note that our career opportunities are only posted on our Career Website (http://grp.gelife.co/findacareer) and on our authorised job platforms which are specifically LinkedIn, JobStreet and eFinancialCareers. We do not initiate any unsolicited calls and all official emails from Great Eastern will be sent from email addresses ending with “@greateasternlife.com”. Should you receive any communications outside from these channels listed, please do not provide any personal information and do reach out to us at [email\xa0protected] or at 6248 2990 for us to assist you and confirm the legitimacy of the content.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-scientist-22000296-10124507?jobId=jobstreet-sg-job-10124507§ionRank=45&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
To all recruitment agencies:
[{'position': 'Product Data Engineer'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'SGD\xa0250 - SGD\xa0420', 'Posted 10 hours ago']}, {'An engineer with an interest in data and analyzing them?': '', 'Our client is looking for a team player, who could join them and take it to the next level. If you love data, being involved in making business decisions with your engineering knowledge, check the criteria below. If you got what it takes, apply now!': '', 'Responsibilities:': 'Setup, maintain, and update work centers in SAP.Support system simulation and perform UAT.Compile and analyze yield and scrap data.Participate in yield and scrap reviews and updates.Document SOPs and guidelines for Work Center, BOM, and Routing, and to ensure accuracy.Collaborate with all stakeholders on data gathering.Analyze and provide solutions for costing concerns.Support Production Order Variance analysis and participate in LEAN manufacturing.', 'Requirements:': "Master's Degree or Degree in engineering disciplines.1 to 2 years' experience in IE, product data setup and manufacturing operations preferred, or no experience required.Knowledge in SAP.Experience in data analytic tools, a plus.Good team player and to collaborate effectively with all levels in the organization.Strong interest in data and analytical skills.", 'Next Step': '', '@': 'Only shortlisted candidates will be contacted.'}, {'Career Level': 'Entry Level', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/product-data-engineer-10097780?jobId=jobstreet-sg-job-10097780§ionRank=47&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
An engineer with an interest in data and analyzing them?
[{'position': 'Assistant Principal Data Scientist'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Description': 'Ability to understand business needs and translate them to a data analytics plan for developing the required solution..Recorded vehicle-related (air, land and sea vehicles) sensor & defect report data understanding, cleansing, uploading to database..Tap knowledge from vehicle domain experts and write SQL scripts to manage & query\xa0databases to extract & generate required data for analysis..Compare & assess various machine learning\xa0methods to generate insights, detect anomalies and predict remaining useful life of vehicle components and engines..Ability to implement the developed and tuned model(s) in Python/R, SQL and/or C# is preferred..Ability to develop dashboards to show the results\xa0for internal & external customers is preferred..', 'Requirements': 'Degree in Engineering or Computer Science or IT, with Data Science elective.Work experience in Data Science or Analytics, Probability & Statistics, Python programming and SQL scripting.Good team player and communicator.Experience in developing Data Science models and Analytics dashboards to communicate with the team, Management and customers..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-principal-data-scientist-10070774?jobId=jobstreet-sg-job-10070774§ionRank=48&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Analyst (Contract)'}, {'company_name': 'SingHealth Polyclinics'}, {'small_section': ['Bukit Merah', 'Posted on 2-Nov-22']}, {'Requirements:': 'Foundation in computer science, modeling, statistics, analytics & mathematics, coupled with a strong business sense.Knowledge of machine learning techniques, including decision tree learning, clustering, artificial neural networks; experience with statistical programming languages (e.g. Python, R, SQL) to process data and gain insights from it.Multilingual coding knowledge/experience Java, JavaScript, C, C++ (preferred).Experience/knowledge in data-mining techniques (e.g. social network analysis, natural language processing, time series analysis).Candidate also need to be a team player and have a problem-solving aptitude.Ability to write reports, grant proposals and scientific papers. Track record of scientific publications is advantageous.Coordinate with research partners during project implementation.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Others, Others', 'Registration No.': '52928775K', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Education support, Medical, Business (e.g. Shirts), Regular Work Hours'}, {'Company Overview': "SingHealth Polyclinics, a leader in family medicine, provides seamless, patient-centred and preventive healthcare that is affordable and accessible to all.\nSingHealth Polyclinics' network of\xa0polyclinics provides primary healthcare services to the community. It plays an integral role in promoting a healthy lifestyle within the community and empowering families with the knowledge of common health issues, care and treatment options.\n\nSingHealth Polyclinics is a member of Singapore Health Services (SingHealth) - a public healthcare cluster which also manages three hospitals and five specialty centres.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-contract-10124676?jobId=jobstreet-sg-job-10124676§ionRank=49&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Requirements:
[{'position': 'mRNA Production Scientist'}, {'company_name': 'Good Job Creations (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa06,670 - SGD\xa08,340', 'Posted 24 hours ago']}, {}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200618166E', 'EA No.': '07C5771', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '7 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGood Job Creations Singapore (License Number: 07C5771) provides total HR solutions with core values of customer focus, teamwork, professionalism and contribution to the society and our clients. Our vision is to create opportunities for Asian talents in Singapore and across the region. For more information, visit us at www.goodjobcreations.com.sg\n\n\tGOOD JOB CREATIONS (SINGAPORE) PTE. LTD.\n\n\tEA License No.: 07C5771\n\tKimiya Shibazaki\n\tRegistration NO.: \u200bR1325719\n\n\tWe agree to protect all personal information and contact details sent to us via your resume according to the Personal Data Protection Act (PDPA) with effect from 2nd July 2014.\n\tAll information collected is strictly for the purpose of processing your job application and internal administrative use.\xa0\xa0\n\tBy sending your resume to us, you acknowledge your consent to the collection and use of your personal data for the above purposes only.\xa0\xa0\xa0\xa0\n\n\tOur Company’s Privacy Policy:\n\thttp://www.goodjobcreations.com.sg/en/privacy/\n\n\tDo not hesitate to contact our officer if you have further queries with regards to the Personal Data Protection Act.\n\tData Protection Officer: Mr. Kimiya Shibazaki\n\tContact: +65 6258 8051\n\n\t[*PDPA clause]\n\n\tYour data may be used by our affiliated companies under WILL Group Asia Pacific (https://willgroup.co.jp/en/index.html) for the sole purpose of recruitment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/mrna-production-scientist-10145541?jobId=jobstreet-sg-job-10145541§ionRank=50&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
[{'position': 'Data Analyst, Ecommerce'}, {'company_name': 'Marina Bay Sands Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'JOB SCOPE': 'Create meaningful reports to track business performance, aligning to the business objectives.Forecast business KPIs for each business unit and track pacing of delivery against targets.Automate reporting into dashboards for management and key stakeholders based on each department’s objectives.Conduct ongoing data analysis to identify opportunities for driving business success.Analyze the results and effectiveness of marketing campaigns to deliver actionable insights and recommendations.Conduct deep-dive analysis to understand customer behaviors across all digital platforms including website, mobile, search, display, social media and email.Assist in analyzing audience performance data throughout the customer journey across the marketing tech stack including Customer Data Platform (CDP) such as Tealium, marketing channels, DMP etc. to improve relationship with our customers through better targeting and messaging (optimization of the customer journey).Collaborate with performance marketing team to optimize conversion rates and KPIs through data analysis across channels (media, website, mobile etc.), user journeys, conversion funnels, campaigns etc..Assist in executing overall data strategy covering multiple data sources including 1st, 2nd and 3rd party data to ensure optimal collection and connection of all data points to drive richer analysis and better insights.Support marketing teams on campaign and business analysis to uncover actionable insights to be included into business strategies across all key markets and to our target audience.Assist in establishing measurement framework and KPIs for all campaigns and digital initiatives.Assist in executing advance measurement and analytics techniques where necessary to uncover deeper insights for driving the business forward.Assist in conducting analysis sharing sessions with stakeholders to deliver meaningful findings to spark strategic conversations.Create impactful presentations for management team to drive marketing strategies.Contribute to business meetings with data findings and relevant insights.Participate actively in multi-touch attribution and marketing mix modelling projects (in conjunction with data science agency) to drive decisions on channel and spend optimization through understanding of brand and tactical campaigns impact on conversions.', 'JOB REQUIREMENTS': 'Bachelor’s Degree in related field (eg. Marketing, Economics, Statistics, Mathematics).Minimum 1-2 years in an analytics role driving performance and delivering strong business results\xa0.Good analytical skills with the ability to deliver actionable recommendations through data analysis to influence business decisions and strategies.Ability to troubleshoot and problem solve in a fast-paced environment.Ability to interpret business performance requirements to identify types of data extract and analysis.Well organized and proactive with excellent attention to detail.Proactive in leading analysis and troubleshoot data anomalies.Take ownership of all data projects and see them through to completion.Ability to prioritize and deliver tasks and projects on time.Possess a curious mind to want to investigate and constantly ask “why” and provide data driven answers.Passion for number crunching and logical problem solving.Experience working with BI tools such as Tableau/PowerBI/DataStudio.Strong Microsoft Excel skills - advanced formulas, pivot tables, ability to manipulate and prep large datasets, [macros a plus] etc..Good Powerpoint skills (insightful data presentations, story-telling to bring analysis to life).Possess good communication skills (verbal and written).Fluent in writing and speaking English.Experience reporting with Web Analytics Tools a plus (Google Analytics, Adobe Analytics, Tealium).Experience in eCommerce or digital marketing a plus.Experience with statistical analysis and modelling to drive better measurement a plus.Experience orchestrating and running analysis within data warehouse a plus.Experience with predictive analytics through machine learning a plus.Experience with Python programming language/R statistical programming language a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '200507292R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '1 day', 'Industry': 'Hotel / Hospitality'}, {'Company Overview': '\n\n\t\tMarina Bay Sands® is Asia’s leading destination for business, leisure and entertainment delivering once-in-a-lifetime experiences. The landmark building is situated in the heart of Singapore’s Central Business District and transforms Singapore’s skyline and the country’s tourism landscape.\n\n\n\t\tThe destination offers a luxury hotel, state-of-the art convention and exhibition facilities, theaters, world-class entertainment and the best shopping and dining in the region. The three hotel towers are crowned by the Sands SkyPark® on the 57th story.\xa0\n\n\nProduct & Services\n\n\n\t\tConveniently located in the heart of the Central Business District and 20 minutes from Changi Airport.\n\n\n\t\t• Hotel: The Marina Bay Sands hotel has three 55-story towers with 2,561 luxury rooms and suites. The three towers are capped by the Sands SkyPark, which offers 360-degree views of Singapore’s skyline. It is home to restaurants, lush gardens, an infinity edged swimming pool and the world’s largest public cantilever housing an observation deck.\n\n\n\t\t• Expo and Conventions: The Sands Expo and Convention Center has 1.3 million square feet of flexible convention and exhibition space. It can host over 45,000 delegates, 2,000 exhibition booths and 250 meeting rooms. It features Southeast Asia’s biggest ballroom, which can accommodate 6,600 people for a banquet, and up to 11,000 for an auditorium-style lecture.\n\n\n\t\t• Shopping: The Shoppes at Marina Bay Sands has 800,000 square feet of retail and dining space. Luxury retailers include Bally, Cartier, CHANEL, Ferragamo, Franck Muller, Gucci, Hermès, Hublot, Hugo Boss, Louis Vuitton, Miu Miu, Omega, Patek Philippe, Prada, Tiffany & Co. and Yves Saint Laurent. New brands include Anne Fontaine, Henry Cotton’s, Leviev, Marisfrolg, Moiselle, Rabeanco, Stefano Ricci, and Wolford.\n\n\n\t\t• Restaurants: Dining at Marina Bay Sands is a gourmet experience with over 50 dining choices. These include celebrity-chef restaurants helmed by Mario Batali, (New York), Daniel Boulud (New York), Wolfgang Puck (Los Angeles), Guy Savoy (Paris), Tetsuya Wakuda (Sydney) and Justin Quek (Singapore).\xa0Marina Bay Sands features signature restaurants, modern bistros and a premium food court.\n\n\n\t\t• Entertainment: Marina Bay Sands energizes the entertainment and nightlife scene in Singapore with nightclubs, world-class entertainment, a museum and a casino.\xa0The museum, which has a lotus-inspired design, will feature blockbuster exhibitions from around the world.\xa0Two state-of-the-art theaters will open with a total of about 4,000 seats. The Broadway hit The Lion King will debut in Sands Theater, with Le Theater presenting shorter-run shows such as concerts, award ceremonies and gala events.\xa0The outdoor event plaza along the promenade next to Marina Bay will host audiences for watching events on the bay or on the plaza.\xa0\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-ecommerce-10105942?jobId=jobstreet-sg-job-10105942§ionRank=51&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
JOB SCOPE
[{'position': 'Lead Data Scientist'}, {'company_name': 'BlueSG Pte Ltd'}, {'small_section': ['West - Others', 'Posted on 31-Oct-22']}, {'Roles and Responsibilities': 'Work with senior management and multi-functional teams to determine how data science can support the business and enrich our customer experiences..Grow and lead a team of data scientists, data engineers, and analysts..Guide technology and algorithm choices, taking into account deadlines and budgets..Participate in technical discussions across the team through code reviews, RFC or architecture review sessions..Design product experiments and interpret the results yielding impactful conclusions..Design, develop and maintain machine learning models to support business and operational processes..Develop the pipelines to train, validate and deploy these models across various environments..', 'Requirements': 'At least 5 years of experience working as a Data Scientist, or 3 years working experience and a doctoral degree in a related field (computer science, statistics or mathematics, economics, etc).\xa0.Deep knowledge of data science fundamentals and statistics, with a focus on time series forecasting, optimization, pricing strategies..Good understanding of Agile development practices..Experience applying data science in end-to-end production use cases: from feature engineering through to real-time inference..Good understanding of experimental design and methodologies such as A/B testing or multi-arm bandits..', 'Preferred qualifications': 'Past technical leadership experience..Hands-on experience with ride-hailing/car-sharing use cases, consumer apps, or adtech/martech use cases..Experience with business intelligence and data warehousing processes and tools..In-depth knowledge of AWS data analytics services..'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201617258W', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '12 days', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Medical, Business (e.g. Shirts), Regular hours (Monday - Friday), unless specified in the job description', 'Specific Location': 'Kent Ridge'}, {'Company Overview': 'BlueSG car-sharing service offers a smart, convenient, flexible and affordable mobility option to all Singaporeans, complementing public transport while reducing the need for car ownership. The service’s 100% electric fleet also provides a sustainable transport solution, eliminating direct carbon dioxide emissions as compared to traditional vehicles.\xa0\xa0BlueSG members have 24/7 access to a large network of shared electric Bluecar vehicles, at self-service charging stations located in public housing, city center and commercial estates around Singapore.BlueSG is the only point to point car-sharing service in Singapore, which means there is no need to return the car to your starting point. The service is available to anyone over 20 years of age with a minimum one year’s valid driver’s license.The service launched in 2017, in partnership with the Land Transport Authority (LTA) and Economic Development Board (EDB), as part of efforts to make Singapore’s transport system more sustainable.\xa0\xa0BlueSG was previously a subsidiary of French conglomerate Bolloré Group.\xa0On October 18, 2021, The Goldbell Group, Singapore’s largest player in leasing and distribution of commercial and industrial vehicles, announced the successful finalisation of its acquisition of BlueSG and is set to invest S$40 million to grow the company over the next two years. This amount makes up 60 per cent of the S$70 million that Goldbell Group will invest in the company over the next five years as part of its growth acceleration strategy.Goldbell Group’s immediate priorities are to realise BlueSG’s potential with the expansion of its business and technical capabilities to develop a business model that will be replicated in other smart cities across the Asia Pacific region.\xa0\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-scientist-10032961?jobId=jobstreet-sg-job-10032961§ionRank=52&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Roles and Responsibilities
[{'position': 'Intern – Data Analyst - 213147BR'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted 2 hours ago']}, {'How Will You Make an Impact?': '', 'What will you do?': 'Utilize reporting tools eg. Power BI to provide insights driving business decisions (trending, patterns, predictive modeling).Understand business needs with business and/or\xa0management team\xa0and\xa0translates requirements into BI dashboards\xa0from\xa0complex data for commercial analytics.Support business reviews through reports preparation to facilitate the team on effective/successful presentations.Autonomously\xa0and\xa0efficiently manage priorities\xa0and\xa0workload.', 'How will you get here?': '', 'Education': 'Currently\xa0studying\xa0or\xa0Tertiary qualification in Data Science & Analytics, Business Analytics, Data Analytics,\xa0or\xa0relevant quantitative field.', 'Experience': 'Excel, Powerpoint.Exposure\xa0or\xa0understanding the use of BI tool (Power BI).', 'Knowledge, Skills, Abilities': 'Excel Skills (Eg. Pivot, lookup, formulas).Advantageous if have prior experience with Power BI.Analytical\xa0and\xa0problem-solving skills.Attention to details.Self-motivated with a\xa0strong\xa0desire for on-going improvement.', 'Learning outcome:': 'Hands-on technical experience with building reports and visualization using real business data.Problem solving skills.Good\xa0knowledge on how a\xa0service\xa0business works.Stake holder management.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/intern-data-analyst-213147br-10147849?jobId=jobstreet-sg-job-10147849§ionRank=53&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
How Will You Make an Impact?
[{'position': 'Data Analytics Intern - (22023748)'}, {'company_name': 'Emerson Asia Pacific Private Limited'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities:': 'Performing research and analysis of sales data gathered from past Sales orders, categorizing them in different product segments..Working with other Lifecycle services engineers, communicating with other product teams and stakeholders to ensure that the developed programs meet requirements.Developing Lifecycle Services solutions or improving existing practices through reviews and discussion with sales and proposal teams,.Communicating with supervisors to gather information about project requirements or to report progress on a project.Providing support to Lifecycle Services personnel by answering questions about specific topics or processes.Conducting technical research to identify issues and propose solutions.Analyzing data to determine possible causes of problems and suggest possible solutions.', 'Job Requirements:': 'Undergraduate student from\xa0Bachelor of Science in Business Analytics.Have basic Microsoft Office Skills.Fast learner, hardworking, highly accountable, detail-oriented, and reliable..Proactive self-starter, good team player, driven, positive attitude, motivated and eager to learn..Basic understanding of measurement automation products and instrumentation (e.g. Flowmeters, Pressure/Temperature transmitter, Analyzers, etc).'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Mechanical', 'Registration No.': '196500174M', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Manufacturing / Production', 'Benefits & Others': 'Dental, Education support, Medical, Parking, Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': 'WHY EMERSONOur Commitment to Our PeopleAcross the globe, we are united by a singular Purpose:\xa0We drive innovation that makes the world healthier, safer, smarter, and more sustainable.We invest in our employees to ensure they have the marketplace knowledge, skills, and competencies to bring this Purpose to life while competing and leading in a global economy.Our training programs focus on end-to-end development, from onboarding through senior leadership.Our success is measured by the positive impact we make on people, our communities, and the world through our unwavering focus on environmental, social, and regulatory progress.\xa0Learn more about us!Our Commitment to Diversity, Equity & InclusionAt Emerson, we are committed to fostering a culture where every employee is valued and respected for their unique experiences and perspectives.We believe a diverse and inclusive work environment contributes to the rich exchange of ideas and diversity of thoughts, that inspires innovation and brings the best solutions to our customers.This philosophy is fundamental to living our company’s values and our responsibility to leave the world in a better place.\xa0\xa0Learn more about our\xa0Culture & Values\xa0and about\xa0Diversity, Equity & Inclusion at Emerson.If you have a disability and are having difficulty accessing or using this website to apply for a position, please contact:\xa0[email\xa0protected]ABOUT EMERSONEmerson is a leading global technology, software and engineering company providing innovative solutions for customers in industrial, commercial, and residential markets.Our Automation Solutions business helps process, hybrid and discrete manufacturers maximize production, protect personnel and the environment while optimizing their energy and operating costs.Our Commercial & Residential Solutions business helps ensure human comfort and health, protect food quality and safety, advance energy efficiency and create sustainable infrastructure.We help customers in the world’s most essential industries solve the biggest challenges of modern life.Every day, our global workforce fulfills our unified Purpose and lives out the Values we hold close as an organization:\xa0Integrity, Safety & Quality, Support Our People, Customer Focus, Continuous Improvement, Collaboration, and Innovation.Our Causes –\xa0Planet, Humanity, Champion, Inclusion and Future\xa0– shape, define and fuel Emerson’s culture while inspiring our innovative spirit and driving our focus.Whether you’re an established professional looking for a career change, an undergraduate student exploring possibilities, or recently received your master’s degree, you’ll find opportunities with us. Join our team and start your journey today!No calls or agencies please.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-intern-22023748-10143278?jobId=jobstreet-sg-job-10143278§ionRank=54&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'ML Engineer / Data Engineer'}, {'company_name': 'BlueSG Pte Ltd'}, {'small_section': ['East - Others', 'Posted on 1-Nov-22']}, {'Roles and Responsibilities:': 'Work closely with data scientists to support the analysis of data, and the development, validation, and deployment of ML models..Collaborate with DevOps and Business Intelligence teams establish a common data platform and best practices..Participate in technical discussions across the team through code reviews, RFC or architecture review sessions..', 'Requirements:': 'At least 2 years of experience working as an ML engineer or similar..Good understanding of Agile and DevOps practices: version control, CI/CD, Infrastructure-as-Code, containerization, observability/monitoring..Experience working with data scientists in end-to-end production use cases: from feature engineering through to real-time inference..Deep familiarity with data engineering systems such as Airflow, Dagster, Flyte, Spark, or similar..Familiarity with data platforms such as Sagemaker, Dataiku, Databricks, Datarobot, or similar..Familiarity with SQL (PostgreSQL preferred) and NoSQL databases (Redis, Elasticsearch preferred)..Familiarity with AWS data analytics services and databases..', 'Preferred qualifications': 'Hands-on experience supporting high-traffic consumer apps..Data science or related education or work experience..Experience with business intelligence and data warehousing processes and tools: star schema, Hadoop, Redshift, etc..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201617258W', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '12 days', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Medical, Business (e.g. Shirts), Regular hours (Monday - Friday), unless specified in the job description', 'Specific Location': 'Changi South'}, {'Company Overview': 'BlueSG car-sharing service offers a smart, convenient, flexible and affordable mobility option to all Singaporeans, complementing public transport while reducing the need for car ownership. The service’s 100% electric fleet also provides a sustainable transport solution, eliminating direct carbon dioxide emissions as compared to traditional vehicles.\xa0\xa0BlueSG members have 24/7 access to a large network of shared electric Bluecar vehicles, at self-service charging stations located in public housing, city center and commercial estates around Singapore.BlueSG is the only point to point car-sharing service in Singapore, which means there is no need to return the car to your starting point. The service is available to anyone over 20 years of age with a minimum one year’s valid driver’s license.The service launched in 2017, in partnership with the Land Transport Authority (LTA) and Economic Development Board (EDB), as part of efforts to make Singapore’s transport system more sustainable.\xa0\xa0BlueSG was previously a subsidiary of French conglomerate Bolloré Group.\xa0On October 18, 2021, The Goldbell Group, Singapore’s largest player in leasing and distribution of commercial and industrial vehicles, announced the successful finalisation of its acquisition of BlueSG and is set to invest S$40 million to grow the company over the next two years. This amount makes up 60 per cent of the S$70 million that Goldbell Group will invest in the company over the next five years as part of its growth acceleration strategy.Goldbell Group’s immediate priorities are to realise BlueSG’s potential with the expansion of its business and technical capabilities to develop a business model that will be replicated in other smart cities across the Asia Pacific region.\xa0\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/ml-engineer-data-engineer-10075368?jobId=jobstreet-sg-job-10075368§ionRank=55&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Roles and Responsibilities:
[{'position': 'Assistant Manager/Assistant Principal Data Analyst'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description for Assistant Principal Data Analyst': '', 'Background': '', 'Key Responsibilities': 'Provide analytics consulting services internally and assist delivery team to implement resulting models into production.Support business unit project teams and external customers to develop, evaluate, refine, and deploy analytics models for production. You may be deployed temporarily to business units for the duration of some external projects.Work closely with data engineers, product managers, project managers, and platform developers in the implementation and deployment of the data analytics platform product.Mentor junior data analysts and review quality of work output.', 'Job Requirements': 'A Bachelors or Masters Degree in quantitative disciplines e.g. Science, Engineering, or Mathematics.5 years or more of working experience in data analytics.In-depth technical knowledge and experience in any of the following will be a major plus.Operations Research.Econometrics.Social & Cognitive Computing.Social Psychology.User Experience Design, Human Computer Interface.Geospatial Analytics.Video/Image Processing.Analytics for Finance or Healthcare.Good understanding of end-to-end analytics process – ideation/value elicitation, requirements definition, data profiling, data preparation, analytical modelling, testing, validation, visualization, and deployment.Strong problem solving skills, curiosity, and passion for data science.Experienced in SQL (any flavour), Python, Spark, Java, or C.Familiar with ETL pipeline creation, BI reporting software, visualization tools.Excellent coordination and time management skills to handle complex projects.Willing and enthusiastic about continuous learning of new technologies and data science techniques/breakthroughs.Effective oral and written communication with strong analytical, problem solving, multitasking and project management skills.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-manager-assistant-principal-data-analyst-10141010?jobId=jobstreet-sg-job-10141010§ionRank=56&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Job Description for Assistant Principal Data Analyst
[{'position': 'Lead Data Engineer'}, {'company_name': 'Ethos Search Associates Pte.Ltd.'}, {'small_section': ['Singapore', 'SGD\xa08,000 - SGD\xa012,000', 'Posted on 5-Nov-22']}, {'Scope of Work': 'Architect data infrastructure on cloud using Infrastructure-as-Code tools.Design and build resilient and efficient data pipelines for both batch and real-time streaming data.Manage projects with an Agile mindset.Create software frameworks to solve data problems.Work with product managers, software engineers, data analysts and data scientists to build scalable and data-driven platforms and tools.', 'Requirement:': 'Bachelor’s Degree in Computer Science or have equivalent professional experience.8 - 12 years of relevant working experience, preferably 4 years in a leadership role.Strong in coding with Python.Good people management skill.database basics, database normalisation, OLAP, star schemas, SCDs (slowly-changing dimensions) and column-oriented storage.cloud (AWS, GCP, Azure).implementing batch and streaming data pipelines.writing efficient SQL.SQL and NoSQL databases, including performance tuning and troubleshooting.'}, {'Career Level': 'Manager', 'Qualification': 'Not Specified', 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201321351E', 'EA No.': '13C6655', 'Company Size': '1 - 50 Employees', 'Industry': 'Consulting (IT, Science, Engineering & Technical)'}, {'Company Overview': '\n\tOur heritage began in 2003 as HR Connect. Over the years, we have earned the trust and confidence of our clients to grow into a reputable human capital management firm.\xa0 Ethos Search Associates now brings with us strong industry knowledge, a far-reaching network and a wide range of human capital solutions ranging from talent acquisition, retention and management.\n\n\tAt Ethos Search Associates, we are passionately committed to deliver a high standard of service that achieves results while building relationships that last.\xa0 Adopting a consultative approach, we dedicate time and resources to understand the needs of both our clients and candidates aspiring career growth. We listen, we connect and we identify the best solutions to accomplish the goals of our clients.\xa0\n\n\tToday, Ethos Search Associates is led by a team of dedicated professional consultants with rich experience from a broad spectrum of industries and a commitment to exceed expectations. We are uniquely positioned to add value to your recruitment and job search needs. Get in touch with us to find out more!'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-engineer-10091798?jobId=jobstreet-sg-job-10091798§ionRank=57&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Scope of Work
[{'position': 'Principal Data Scientist, Advisory'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Principal Data Scientist - Advisory': '', 'Background:': '', 'Key Responsibilities:': 'Provide analytics consulting services internally and assist delivery team to implement resulting models into production.Support business unit project teams and external customers to develop, evaluate, refine, and deploy analytics models for production. You may be deployed temporarily to business units for the duration of some external projects.Work closely with data engineers, product managers, project managers, and platform developers in the implementation and deployment of the data analytics platform product.', 'Job Requirements:': "Prefer a Master's Degree or PHD in Science/Engineering/Mathematics with at least 6 to 8 years of working experience in data analytics.In-depth technical knowledge and experience in any of the following will be a major plus.Deep Learning (text, video, audio data).Operations Research.", 'Behavioural Modelling': 'Anomaly Detection.Physics Aware Simulation & Digital Twins.Forecasting.Agent-based Simulation.Computational Intelligence.Social & Cognitive Computing.Interpretable/Explainable AI.', '\xa0Job Details': 'Good experience with end-to-end analytics process – ideation/value elicitation, data profiling, data preparation, analytical modelling, testing, validation, visualization, and solutioning.Strong problem solving skills, curiosity, and passion for data science.Experienced in SQL (any flavour), Python, R, Java, or C.Experience in designing ETL pipelines and BI reporting software.Familiar with open source analytical modelling, distributed computing, simulation, optimization, and visualization tools.Excellent coordination and time management skills to handle complex projects.Willing and enthusiastic about continuous learning.Experience/knowledge of big data engineering, software engineering, predictive maintenance will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-data-scientist-advisory-10071059?jobId=jobstreet-sg-job-10071059§ionRank=58&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Principal Data Scientist - Advisory
[{'position': 'Research Fellow, - (Data Scientist in Air Traffic Management), (R00010489)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:\xa0': 'The Research Fellow shall work on subprojects to conduct research on advanced air traffic management concepts, for example but not limited to a novel Air Traffic Flow Management Concept..', 'Job Requirements:': 'PhD degree in Data Science, Air Traffic Management or relevant fields..Minimum of 4 years’ production experience with spatial and temporal data.Minimum of 4 years’ production experience in Python (these may be proven via portfolios or GitHub user page, or similar).Experience in managing own project plans, designing of experiments, delivering a research or development product to clients.Knowledge in the following computing skills is advantageous: Machine Learning; Big Data (distributed computing), relational databases.Experience in aviation in particular Air Traffic Management, Air Traffic Services, Air Traffic Control.Work on subprojects of a larger CONOPS study, to develop a plan, conduct experiments using simulators, analyse data, find insights/hypothesis, visualize data, liaise with the sponsor, deliver project reports..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-scientist-in-air-traffic-management-r00010489-10072654?jobId=jobstreet-sg-job-10072654§ionRank=59&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Principal/Assistant Principal/Senior Data Scientist'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Roles and Responsibilities': '', 'Job Description': 'Recorded vehicle-related (air, land and sea vehicles) sensor & defect report data understanding, cleansing, uploading to database..Tap knowledge from vehicle domain experts and write SQL scripts to manage & query\xa0databases to extract & generate required data for analysis..Compare & assess various machine learning\xa0methods to generate insights, detect anomalies and predict remaining useful life of vehicle components and engines..Ability to implement the developed and tuned model(s) in SQL and/or C# is preferred..Ability to develop dashboards to show the results\xa0for internal & external customers is preferred..', 'Requirements': 'Degree in Engineering or Computer Science or IT, with Data Science elective.Work experience in Data Analytics, Python programming and SQL scripting.Good team player and communicator.Experience in developing web-based or Tableau dashboards and C# programming will be added advantages.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-assistant-principal-senior-data-scientist-10070775?jobId=jobstreet-sg-job-10070775§ionRank=60&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing'}]
Roles and Responsibilities
[{'position': 'Business & Data Analyst'}, {'company_name': 'Kallang Alive Sport Management Co Pte. Ltd.'}, {'small_section': ['Kallang', 'Posted on 7-Nov-22']}, {'DUTIES & RESPONSIBILITIES\xa0': '', 'Data Analytics': '', 'Data Management': '', 'Business Insight Enablement': '', 'Reporting Standardization and Automation': '', 'REQUIREMENTS': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '202235440C', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '15 days', 'Industry': 'Sports', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Smart Casual', 'Specific Location': 'Stadium'}, {'Company Overview': 'Kallang Alive Sport Management - a new chapter for Singapore Sports HubSport Singapore is setting up a new corporate entity to manage and operate the business and operations of the Sport Hub. We believe that this will unlock greater potential by allowing closer integration of the Sport Hub facilities with other facilities within the Kallang Alive precinct, expanding the breadth and quality of world-class international events, and driving more community activities at the venue. We also intend to make the Sports Hub more accessible to the broader community in Singapore, in terms of sports, lifestyle, entertainment and social uses, whilst maintaining its commercial sustainability.'}, {'url': 'http://www.jobstreet.com.sg/en/job/business-data-analyst-10095301?jobId=jobstreet-sg-job-10095301§ionRank=62&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
DUTIES & RESPONSIBILITIES
[{'position': 'Project Officer (Data Analytics and Software Development) - [R00004052]- #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Undertake software development for machine learning based parameter estimation.Develop a simulation test-bed.Help other staff and the Principal Investigator work on demos and final report.', 'Job Requirements': 'Bachelor degree in either electrical engineering, software engineering, or computer science, specialized in data analytics and software development.Expert knowledge on software development and machine learning based data analysis techniques.Good programming skills, e.g., matlab, python or C/C++/Java.Any past experience in large-scale traffic systems will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-data-analytics-and-software-development-%5Br00004052%5D-jobsthatmatter-10137884?jobId=jobstreet-sg-job-10137884§ionRank=63&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'ASUS - AICS SG - Machine Learning Engineer'}, {'company_name': 'ASUS Global Pte Ltd'}, {'small_section': ['Central - Others', 'Posted on 6-Nov-22']}, {'About ASUS\xa0\xa0': '', 'About AICS\xa0': '', 'Job Responsibilities:': 'Work with\xa0the\xa0Data Science team to transform data science prototypes into production models\xa0using\xa0best practices for model\xa0development,\xa0management and maintenance\xa0\xa0.Research and implement appropriate ML algorithms and tools, select appropriate datasets, benchmark models, and perform statistical analysis and fine-tuning\xa0.Keep models up to date by\xa0incorporating\xa0continuous learning into system\xa0.Work closely with an entrepreneurial team of experienced researchers and software engineers to successfully\xa0ship\xa0software\xa0products\xa0and continue to grow our business\xa0.', 'Requirements:\xa0': "Bachelor's Degree in computer science or related field with at least 3 years relevant experience\xa0.Understanding of data structures, data modeling and software architecture\xa0.Deep knowledge of math, probability, statistics and algorithms\xa0.Strong programming\xa0in\xa0Python or C++\xa0.Independent analytical problem-solving skills\xa0\xa0.Experience with ML frameworks and libraries\xa0\xa0."}, {'Career Level': 'Senior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201306935R', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '21 days', 'Industry': 'Computer/Information Technology (Hardware)', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': '37 Craig Road'}, {'Company Overview': '\n\n\nAbout ASUS:\nASUS is a multinational company known for the world’s best motherboards, PCs, monitors, graphics cards and routers and driven to become the most-admired innovative leading technology enterprise. With a global workforce that includes more than 5,000 R&D professionals, ASUS leads the industry through cutting-edge design and innovations made to create the most ubiquitous, intelligent, heartfelt and joyful smart life for everyone. Inspired by the In Search of Incredible brand spirit, ASUS won thousands of prestigious awards in 2018 and ranked as one of Forbes’\xa0Global 2000 Top Regarded Companies, Thomson Reuters’ Top 100 Global Tech Leaders and Fortune’s World’s Most Admired Companies. \xa0\n關於華碩\n華碩為美國《財富》雜誌評比「世界最受推崇企業之一」,並榮登美國《富比士》雜誌「全球最受信賴企業排行榜」及英國《路透社》「全球科技100強」。產品類別橫跨主機板、顯示卡、筆記型電腦、智慧手機、螢幕、路由器及全方位的科技產品解決方案,並積極拓展電競產品及開創AIOT新領域的各種應用。華碩致力追尋無與倫比的科技創新,為全球使用者創造體貼人心的智慧生活與無所不在的幸福感,以成為「數位新世代備受推崇的科技創新領導企業」為品牌願景。華碩全球員工數約14,500人,擁有世界級研發菁英超過5,000人,產品行銷全球70多個國家,營業額超過100億美元。\n\nToday, ASUS is looking to expand its presence in Singapore and is looking for enthusiastic, aggressive and career-minded individuals to join the team.\nFor more details, please visit https://www.asus.com/sg/.\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/asus-aics-sg-machine-learning-engineer-10109786?jobId=jobstreet-sg-job-10109786§ionRank=64&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
About ASUS
[{'position': 'Data Engineer | New Projects'}, {'company_name': 'ST Engineering Training & Simulation Systems Pte Ltd'}, {'small_section': ['Singapore', 'Posted 51 minutes ago']}, {'Scope of work:': "Able to extract, transform and load data into databases..Able to generate analytics results from the data collected to answer questions from customers' business use cases..Familiar with DotNetCore Framework and MSSQL..Knowledge of NGINX and REACT JS is an advantage..Able to interpret and write technical documents..", 'What is needed:': 'Minimum Degree in Computer Engineering, Computer Science and Electronics Engineering or its equivalent..Strong C++ and C# programming skills with at least 1-2 years as a data engineer..Possess good understanding of software development life cycles..Working experience in handling projects involving Data Analytics related work is a plus.Attained Agile-related certification such as Certified Scrum Master is a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199607423R', 'Company Size': '201 - 500 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tFor close to 40 years, ST Engineering Training & Simulation Systems Pte Ltd has developed cutting-edge simulation systems that elevate the performance of individuals and teams while ensuring training safety and efficiency.\n\n\n\tCombining state-of-the-art technologies with creativity, we develop highly interactive training solutions tailored to the needs of learners while providing training services for the operational and technical domains of the defence, aerospace, maritime, transport and commercial sectors. At the same time, we inspire and spark the imaginations of the young and old alike with immersive technologies, paving the way for ground-breaking research and development by leading institutions. We cover training and learning needs from end-to-end, enabling digital learning transformation with technologies that empower learners and instructors.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-%7C-new-projects-10148012?jobId=jobstreet-sg-job-10148012§ionRank=65&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Scope of work:
[{'position': 'Data Scientist'}, {'company_name': 'GMP Technologies - IT'}, {'small_section': ['East', 'Posted on 28-Oct-22']}, {'Data Scientist': 'To improve time-series statistical modeling forecasting accuracy over an 18 month horizon using R and Python on the Google Cloud Platform.To build machine learning models using Python to automate business processes.To analyze structured and unstructured datasets to discover trends and patterns.To dig-in, understand the data, and to use creative thinking and problem-solving skills to design scalable and robust solutions.To present\xa0complex\xa0information\xa0using\xa0data\xa0visualization\xa0techniques\xa0through\xa0dashboards\xa0and reporting such as Microsoft Power BI..Bachelors or master’s degree in Statistics or Mathematics with experience in Python, time\xa0series,\xa0with\xa0a\xa0strong\xa0understanding\xa0and\xa0knowledge\xa0in\xa0time series forecasting; univariate, multivariate, and ensemble modeling..Experience with\xa0database\xa0technologies\xa0(SQL\xa0or\xa0others)\xa0in\xa0querying,\xa0creating databases, stored procedures;\xa0.Experience with\xa0Google Cloud Platform or similar (AWS, Microsoft Azure);\xa0Microsoft Power BI.'}, {'Career Level': 'Entry Level', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '09C3051', 'EA No.': '11C3793', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\nGMP Technologies is a division of The GMP Group.\n\n\t\tFounded in 1991, The GMP Group is one of Asia’s leading staffing and human resource consultancies. Since its inception, the group has progressed to become a regional human capital solutions provider across all industries. Today, GMP is headquartered in Singapore with a branch office in Malaysia. The group’s extensive network and comprehensive services affirm GMP’s role as one of the most dynamic staffing professionals in the region.\n\nRECRUITMENT I TECHNOLOGIES I BANKING I INTERNATIONAL I CONSULTANCY I\n\nVoted on of Top 10 recruitment agencies by HR practitioners since 2006 (Human Resources magazine).\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-10110075?jobId=jobstreet-sg-job-10110075§ionRank=66&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Data Scientist
[{'position': 'Data Scientist | Prediction Model'}, {'company_name': 'Achieve Career Consultant Pte Ltd'}, {'small_section': ['Central', 'SGD\xa07,000 - SGD\xa010,000', 'Posted on 28-Oct-22']}, {'·\xa0\xa0\xa0\xa0\xa0MNC': '', '·\xa0\xa0\xa0\xa0\xa0Central': '', '·\xa0\xa0\xa0\xa0\xa05-day week': '', 'Up to $10k': '', 'Our client,\xa0': '', ',': '', '\xa0Data Scientist.': '', 'RESPONSIBILITIES:': 'Develop python-coded supply-demand forecasting models.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Able to use machine learning to build price forecast models.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Convert excel-based forecasting models to python-based models..Maintain and enhance existing models with changing market dynamics.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Collaborate with data engineers to ensure the data feed for forecast models is collected and processed properly ..Document methodologies, algorithms and processes to present to stakeholders regularly.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.', 'REQUIREMENTS:': 'PHD/Master/Bachelor in relevant field.5-8 years and above with relevant working experience..Preferable in an MNC setup environment..PHD in computer science/computer engineering, math, statistics, or similar subjects is preferred..Extensive data modeling and data architecture skills..', 'OTHER INFORMATION:': 'Location: Central (Raffles Place).Working days:\xa0Monday to Friday (office hour).Salary: Up to $10,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..', 'HOW TO APPLY:': '', 'Janelle Kow Jing Qi': '', 'Janelle at 6590 9964\xa0': '', 'YOUR SUCCESS IS OUR ACHIEVEMENT!': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199801996Z', 'EA No.': '05C3451', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "We're Here to Help People ACHIEVE Success!ACHIEVE is a multi-award-winning ISO 9001 recruiter that has placed more than 40,000 people in positions across industries. Established since 1990, with headquarters in Singapore and an office in Malaysia,\xa0our consultants are specialists in specific areas of specialization, and have the expertise to match candidates with the right permanent positions and contract jobs. In our 30 over years as a recruiter, we are widely recognised by jobseekers, MNCs and SMEs across the Asia Pacific region. A homegrown trusted brand, we are regularly featured in the media and have been honoured with multiple awards by the business community.\xa0In 1H 2022, we were accorded the rare honour of being conferred both the Human Capital Partnership Programme for Employment Agencies (HCP) by the Ministry of Manpower (MOM) and the Singapore Prestige Brand Award (SPBA) by the Association of Small and Medium Size Enterprises (ASME), in recognition of our business transformation efforts and push to build a Singapore core in the workforce!"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-%7C-prediction-model-10113388?jobId=jobstreet-sg-job-10113388§ionRank=68&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
· MNC
[{'position': 'Development Scientist (Data Analysis and Modelling), ARTC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities:': "Take a data-driven approach to develop a sustainable manufacturing/supply chain evaluation framework by integrating operational research solutions, heterogeneous enterprise systems\xa0and\xa0bespoke solutions, to increase resiliency, flexibility,\xa0and\xa0sustainability of manufacturing\xa0and\xa0supply chains operations..Understand data requirements to design and implement the industrial data management system for digital twin and sustainability applications..Create APIs\xa0and\xa0web apps using agile methodologies, launching proofs of concept that translate academic research into real world applications..Develop a deep understanding of the sustainability challenges faced by MNCs and SMEs in the manufacturing and supply chain domains..Evangelize the\xa0Singapore\xa0public-private ecosystem on ARTC's virtual\xa0and\xa0physical testbeds for smart\xa0and\xa0sustainable manufacturing\xa0and\xa0supply chain domains..", 'Job requirements': 'Doctoral/ Master\xa0degree\xa0in Mechanical engineering, Computer science, Electronics, Electrical\xa0or\xa0Network engineering..Excellent publication track record in Industry 4.0-related topics, e.g., machine learning/deep learning, robotics, additive manufacturing, etc..Strong\xa0modelling, analytical\xa0and\xa0problem-solving skills using machine learning techniques..Strong\xa0programming abilities in modern machine learning frameworks, e.g., TensorFlow/Pytorch..Prior experience with data-driven optimization (e.g., scheduling, sequencing) is preferrable..Prior experience with warehouse robot solutions (e.g., AGV navigation, path planning) is preferrable..Team player\xa0and\xa0good\xa0in interpersonal\xa0and\xa0communication (verbal & written) skills..', 'The above eligibility criteria are\xa0not\xa0exhaustive. A*STAR may include additional selection criteria\xa0based\xa0on its prevailing recruitment policies. These policies may be amended\xa0from\xa0time to time without notice. We regret that only shortlisted\xa0candidates\xa0will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/development-scientist-data-analysis-and-modelling-artc-10124051?jobId=jobstreet-sg-job-10124051§ionRank=69&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Fellow, - (Data Analytics), - (R00005646) #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Conduct research on development of data analytic methodologies using techniques such as machine learning, deep learning, artificial neural networks, etc.Summarize and analyze the human factors data collected to date from human factors studies of ambient assisted living for aging population in Asia and finalize and conclude the project with a final report.Assist to supervise one PhD student and 2 FYP students in the Design & Human Factors Lab.Summarize research results for publishing in prestigious journals.Prepare technology disclosure materials for further filing of patents.', 'Job Requirements:': 'PhD in Mechanical, Civil, Electrical and Electronic Engineering or related field.Expertise in project management and constructing report.Knowledge in machine learning and data analytics.Publication track record is an advantage.Proficiency in basics of programming languages such as Matlab and R coding language.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-analytics-r00005646-worknow-10135925?jobId=jobstreet-sg-job-10135925§ionRank=71&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Project Coordinator, Data Analyst (Healthcare industry)'}, {'company_name': 'Triton AI Pte Ltd'}, {'small_section': ['West', 'Posted on 6-Nov-22']}, {'Up to $5500, Permanent Role with AWS + 3 months Variable Bonus': 'Up to $5500, Permanent Role with AWS + 3 months Variable Bonus.Healthcare Industry located at West near MRT stations.', 'Healthcare Industry located at West near MRT stations': 'Healthcare background is a MUST.', 'Healthcare background is a MUST': 'Assist in identifying and implementing process improvements within and across Functional Groups and/or respective programmes..Complete content build and testing of the system as guided/requested by stakeholders..Be involved in programme management work areas including but not limited to conducting requirements analysis, functional testing, system implementation, end-user training and coordinating with appointed IT partners for on-going support to users..Be an integral member of the Next Generation Electronic Medical Records (NGEMR) project, by supporting the leads of the assigned Functional Group in recording and translating their business needs into business requirements..Organizing, coordinating project/workgroup meetings, including scheduling, booking and preparing of rooms/virtual sessions, collating of meeting attendance, minutes taking and tracking matters arising for matters related to the assigned Functional Group..Healthcare/IT Business Analysts who take an interest in process improvement, value creation and/or programme management to provide support & improve healthcare..A tertiary degree from a recognized university in IT.Preferably 2-4 years of relevant working experience with project/programme management and/or business analysis in a healthcare/healthcare IT setting.', ' jermaine#triton-ai.com': []}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Admin/Human Resources, Clerical/Administrative Support', 'Registration No.': '21C0661', 'EA No.': '21C0661', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '5 days', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'TRITON AI\xa0(EA License Number 21C0661)\xa0is a Singaporean-owned talent resource organization formed with the purpose of developing a Singaporean core for our clients.Established since 2011 and formally operating as Talent Touche Pte Ltd,\xa0TRITON AI\xa0has undergone a total rebranding exercise in 2021 in alignment with our mission to enhance the effectiveness of Talent Acquisition and People-Powered Projects with\xa0Technology\xa0and\xa0Artificial Intelligence.\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-coordinator-data-analyst-healthcare-industry-10138884?jobId=jobstreet-sg-job-10138884§ionRank=72&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Up to $5500, Permanent Role with AWS + 3 months Variable Bonus
[{'position': 'Data Engineer | New Projects - 6267'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Scope of work:': "Able to extract, transform and load data into databases..Able to generate analytics results from the data collected to answer questions from customers' business use cases..Familiar with DotNetCore Framework and MSSQL..Knowledge of NGINX and REACT JS is an advantage..Able to interpret and write technical documents..", 'What is needed:': 'Minimum Degree in Computer Engineering, Computer Science and Electronics Engineering or its equivalent..Strong C++ and C# programming skills with at least 1-2 years as a data engineer..Possess good understanding of software development life cycles..Working experience in handling projects involving Data Analytics related work is a plus.Attained Agile-related certification such as Certified Scrum Master is a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-%7C-new-projects-6267-10138575?jobId=jobstreet-sg-job-10138575§ionRank=73&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Scope of work:
[{'position': 'Data Analyst | Central Area | up to $8,000'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa08,000', 'Posted on 6-Nov-22']}, {'Job responsibilities': "Extract and clean the data from various data sources to generate daily, weekly and monthly reports.Set up the automation of reports from data extracted and stored by AWS.Provide data analysis and insights to identify and recommend areas of improvement.Fulfil ad-hoc data request from client and management.Have some experience in ETL processes and mapping different sources of data with key identifiers.Writing SQL queries to retrieve information quickly.Management and Identification of key data points, trends that can be used in tandem with operations to increase KPI's.", 'Knowledge/Skills Required': 'Experience in contact centre/service industry including data/trend prediction & analysis, self-help migration.Experience in building reports using Excel, Tableau, SQL, Power BI, Python, or other business intelligence and data analytics tools Strong communication and presentation skills.Proactive and able to work independently with minimum supervision.Excellent time management with strong critical thinking and ability to handle pressure.', 'click the "APPLY NOW" button': []}, {'Career Level': 'Non-Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-%7C-central-area-%7C-up-to-%248-000-10139775?jobId=jobstreet-sg-job-10139775§ionRank=74&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Job responsibilities
[{'position': 'NLP and Knowledge Graph Engineer, Sensors & Machine Learning Lab (5763)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'NLP\xa0and\xa0Knowledge Graph Engineer, Sensors & Machine Learning Lab': '', 'Responsibilities:': 'Engage business users to discover how knowledge graph\xa0and/or\xa0NLP can enable operations transformation,\xa0such as to enhance operation effectiveness,\xa0raise productivity\xa0and\xa0support decision-making..Design, develop\xa0&\xa0deploy customised\xa0and\xa0scalable solutions as part of the end-to-end AI/ML pipeline for NLP..Design, develop\xa0&\xa0deploy customised\xa0and\xa0scalable knowledge graph solutions\xa0or\xa0products..Stay relevant in the latest technologies\xa0and\xa0trends in knowledge graph\xa0and\xa0NLP..Support company-wide initiatives to inspire\xa0and\xa0upskill colleagues..', 'Preferred Requirements:': 'At least 2\xa0years\xa0of professional experience developing\xa0and\xa0deploying\xa0NLP\xa0and/or\xa0knowledge graphs solutions..Degree\xa0in computer science, engineering,\xa0or\xa0equivalent practical experience..Familiar with ML frameworks such as TensorFlow\xa0and\xa0PyTorch..Proficiency in Python programming is required. Familiarity with AWS would be advantageous..Passionate about technology\xa0and\xa0enthuse about solving challenging problems..Excellent team-player who can collaborate well with both internal stakeholders & external partners..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-and-knowledge-graph-engineer-sensors-machine-learning-lab-5763-10144319?jobId=jobstreet-sg-job-10144319§ionRank=75&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
NLP and Knowledge Graph Engineer, Sensors & Machine Learning Lab
[{'position': 'Data Analyst'}, {'company_name': 'D L Resources Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Roles:': 'Regular data mining, transformation, visualization, analytics and reporting works.Coordinate with various internal and external technology stakeholders across the different application domains, information security and infrastructure sectors to ensure smooth data-to-insights communication..Responsible for delivering, standardizing and automating data analytic reports, notifications and dashboards..', 'Job Requirements:': 'Degree in Computer Science, Engineering, Mathematics & Statistics or related discipline..At least 1 - 3 years’ prior data analytics/science experience, proficient in statistical tools such as Excel Macro and Data visualization tools such as Powerpoint and Sharepoint is a must..Proven ability to deliver data transformation, visualization and analytics in technology in the banking industry.Proven ability in standardizing and automating data analytic reports, notifications and dashboards.Additional experience in data transformation and data visualization tools such as Tableau, Spotfire, Kibana, Qlikview is a strong plus..Additional experience in application support environment and understanding of ITIL methodology is a plus.', 'APPLY NOW': '', 'D L Resources Pte Ltd': '', '10 Anson Road #19-12 International Plaza Singapore 079903': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199600101K', 'Company Size': '51 - 200 Employees', 'Industry': 'Consulting (IT, Science, Engineering & Technical)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts), Others'}, {'Company Overview': '\nD L Resources Pte Ltd is an established Information Technology Services Company. The company is focused on providing Information Technology Professional Services and Outsourcing Services to our clients in Singapore, consisting of financial institutions, banks and Multi-National Companies.\nWe have immediate vacancies for CONTRACT positions to be based in Singapore:\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-10077177?jobId=jobstreet-sg-job-10077177§ionRank=76&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Job Roles:
[{'position': 'VP, Analytics, Data Analytics Team, Group Wholesale Banking #Immediate'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Job Responsibilities': 'Lead large scale analytic projects in corporate space to drive for business impact.Analyze macro and micro data (structured/less structured) to answer business questions via strategic analysis, machine learning/NLP models..Coordinate with various internal and external business stakeholders to ensure smooth data-to-insights conversion and the necessary of the insights implementation.', 'Job Requirements': "At least 5-10 years' solid data analytics/science experience, deep technical expertise on ML/NLP/OR, with hands-on capability, Python/SAS/R, Hadoop/Spark.Excellent problem solver, good understand of financial industry knowledge, consulting experience is a plus.Strong sense of responsibility and teamwork.Good communication and interpersonal skills to effectively interact with internal and external stakeholders of all levels.", 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-analytics-data-analytics-team-group-wholesale-banking-immediate-10101537?jobId=jobstreet-sg-job-10101537§ionRank=79&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Manager (Customer Data Analytics)'}, {'company_name': 'Marina Bay Sands Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'JOB SCOPE': '', 'Background': '', 'Job Responsibilities': 'Monitor the business and highlight trends and opportunities..Translate modelling results and segmentations into business strategy via data/dashboards with impactful visualization..Design data-driven personalized offers and A/B testing..Evaluate the effectiveness of our marketing strategies..Work closely with Business Intelligence, data warehouse, IT and smart IR teams to implement analytical solutions..Lead a team of high performing analysts to deliver excellent results and coach junior team members..', 'JOB REQUIREMENTS': 'Degree in Business/Marketing Analytics, Applied Mathematics, Statistics or other related analytical fields..At least 5 years of hands-on experience in analytics required..Experience in customer analytics from management consulting, Finance or E-commerce Industries preferred..Experience building and implementing predictive models and machine learning preferred..Experience leading a small analytics team will be an added advantage..Casino related experience is a bonus but not compulsory..Programming skills using analytical tools such as Base SAS, SAS EG, SQL, R or Python is required..Highly proficient in data visualization tools, such as Tableau..Strong logical thinking, data analysis and problem-solving skills..Excellent communication and presentation skills..Passionate about data, customers, and building your career with Marina Bay Sands..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '200507292R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '1 day', 'Industry': 'Hotel / Hospitality'}, {'Company Overview': '\n\n\t\tMarina Bay Sands® is Asia’s leading destination for business, leisure and entertainment delivering once-in-a-lifetime experiences. The landmark building is situated in the heart of Singapore’s Central Business District and transforms Singapore’s skyline and the country’s tourism landscape.\n\n\n\t\tThe destination offers a luxury hotel, state-of-the art convention and exhibition facilities, theaters, world-class entertainment and the best shopping and dining in the region. The three hotel towers are crowned by the Sands SkyPark® on the 57th story.\xa0\n\n\nProduct & Services\n\n\n\t\tConveniently located in the heart of the Central Business District and 20 minutes from Changi Airport.\n\n\n\t\t• Hotel: The Marina Bay Sands hotel has three 55-story towers with 2,561 luxury rooms and suites. The three towers are capped by the Sands SkyPark, which offers 360-degree views of Singapore’s skyline. It is home to restaurants, lush gardens, an infinity edged swimming pool and the world’s largest public cantilever housing an observation deck.\n\n\n\t\t• Expo and Conventions: The Sands Expo and Convention Center has 1.3 million square feet of flexible convention and exhibition space. It can host over 45,000 delegates, 2,000 exhibition booths and 250 meeting rooms. It features Southeast Asia’s biggest ballroom, which can accommodate 6,600 people for a banquet, and up to 11,000 for an auditorium-style lecture.\n\n\n\t\t• Shopping: The Shoppes at Marina Bay Sands has 800,000 square feet of retail and dining space. Luxury retailers include Bally, Cartier, CHANEL, Ferragamo, Franck Muller, Gucci, Hermès, Hublot, Hugo Boss, Louis Vuitton, Miu Miu, Omega, Patek Philippe, Prada, Tiffany & Co. and Yves Saint Laurent. New brands include Anne Fontaine, Henry Cotton’s, Leviev, Marisfrolg, Moiselle, Rabeanco, Stefano Ricci, and Wolford.\n\n\n\t\t• Restaurants: Dining at Marina Bay Sands is a gourmet experience with over 50 dining choices. These include celebrity-chef restaurants helmed by Mario Batali, (New York), Daniel Boulud (New York), Wolfgang Puck (Los Angeles), Guy Savoy (Paris), Tetsuya Wakuda (Sydney) and Justin Quek (Singapore).\xa0Marina Bay Sands features signature restaurants, modern bistros and a premium food court.\n\n\n\t\t• Entertainment: Marina Bay Sands energizes the entertainment and nightlife scene in Singapore with nightclubs, world-class entertainment, a museum and a casino.\xa0The museum, which has a lotus-inspired design, will feature blockbuster exhibitions from around the world.\xa0Two state-of-the-art theaters will open with a total of about 4,000 seats. The Broadway hit The Lion King will debut in Sands Theater, with Le Theater presenting shorter-run shows such as concerts, award ceremonies and gala events.\xa0The outdoor event plaza along the promenade next to Marina Bay will host audiences for watching events on the bay or on the plaza.\xa0\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-customer-data-analytics-10111164?jobId=jobstreet-sg-job-10111164§ionRank=80&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
JOB SCOPE
[{'position': 'Application Staff Scientist - (214417BR)'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted 4 hours ago']}, {'Summary': '', 'Bioprocess Design Centre\xa0': '', 'Responsibilities:': 'Facilitate Singapore BDC capability enhancements for media screening/optimization, upstream and downstream process development and scale-up for biologics and vaccines workflows (including mRNA vaccines).Technical project lead and/or expert to design and execute experimental plans. Advises or performs data analysis and technical report generation.Generate application data based on Thermo Fisher products.Evaluate new methods and innovative technologies, maintains accurate lab records to support IP protection in accordance with relevant Thermo Fisher required standards.Develop materials for both internal and external presentations such as project update meetings, customer visits, scientific conferences.Develop Work Instructions and maintains/calibrates critical lab equipment. Complies with all company safety, training, and quality standards (e.g., ISO compliance, GLP requirements).Prepare bills of materials for the service projects and ensure appropriate logistical and shipping support.Support prioritized pre-sales activities (e.g. customer visits, seminars, conferences, etc.), working with Technical Sales Specialists and Marketing as the technical expert on workflow solutions.Support BDC training courses as classroom and lab trainer.Network with colleagues from other BDCs and R&D sites to build effective shared technical resources.Stays updated with current scientific literature, and shares knowledge of latest competing technologies and products.Contribute to Thermo Fisher regional SME (Subject matter expert) and SPOG (Single point of contact) networks.Participate actively in external technical conferences and industry body forums.', 'Qualifications / Experience:': "Masters' degree in Life Sciences (Biochemistry, Biotechnology, Engineering, Virology). PhD degree preferred.10+ years’ hands-on experience in upstream and downstream R&D, process development, MSAT. Direct experience in statistical experimental design (DoE), mRNA/vaccine production workflows is highly preferred.5+ years’ experience in developing upstream processes at bench and pilot scales (including fed-batch and perfusion). Experience in viral vaccine production/virus production in roller bottles, stacked plate systems, micro-carriers, or other similar systems is a plus.3+ years’ microbial fermentation experience using E.coli, Pichia etc from bench scale to pilot-scale, preferably with single-use fermentors.3+ years’ experience in downstream processes development and scale-up. Experience packing of pilot-manufacturing scale chromatography columns is highly preferred.", 'Additional Desirable Skillsets/Experience:': 'Program/project management experience.Team management experience.Managing external scientific collaborations, CRO or CDMO.Proven fast learner on new technology / knowledge / process.Excellent verbal and written scientific communication skills..Excellent organizational skills, including the ability to efficiently evaluate and manage multiple projects and tasks.', 'Working Conditions:': 'Able to work flexible hours.Able to undertake up to 30% overseas travel for training and customer engagements.Work in a GLP laboratory environment, handle approved chemicals and hazardous materials safely.'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/application-staff-scientist-214417br-10147346?jobId=jobstreet-sg-job-10147346§ionRank=81&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Summary
[{'position': 'Data Engineer - ref: ASD'}, {'company_name': 'ST Engineering Advanced Networks & Sensors Pte Ltd'}, {'small_section': ['Jurong East', 'Posted on 4-Nov-22']}, {'Job Overview': '', 'Job Responsibilities:': 'Identify suitable data structures based on business needs to ensure availability and accessibility of data..Determine technical system requirements based on data needs..Keep abreast of latest technologies and products in open source technologies, database and data processing software..Develop codes and scripts to process structured and unstructured data in real-time from a variety of data sources..Consolidate and create data storage solutions for storage and retrieval of information..Assist in the integration of data systems with existing infrastructure..', 'Job Requirements': "Bachelor / Master's degree in Computer Science, Computer Engineering, Information Systems, Information Engineering, or equivalent.At least 2 years of data engineering experience.Experience in open source technologies, data cleaning.Experience in programming languages such as Java, Python, C++.Experience in building and optimizing architectures and data sets.Experience working with stakeholders to identify business needs and analytics opportunities.Singaporean only.Location: Jurong East."}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601460K', 'Company Size': '501 - 1000 Employees', 'Industry': 'Computer / Information Technology (Software)'}, {'Company Overview': '\n\n\t\tST Engineering Advanced Networks & Sensors Pte Ltd is a leading Isolutions provider in the Asia-Pacific region. We provide our customers with end-to-end solutions in Government & ICT Systems,\xa0 Intelligent Transportation Management Systems & Telematics, Emergency Response & Security Systems, Digital Defence Systems, Infosecurity Products & Solutions and Customer & Managed Services.\n\n\t\tAs a leading one-stop ICT and C4ISR system-of-systems solutions provider and strong partner for our commercial, government, defence and homeland security customers worldwide, our system solutions have garnered us over 20 international awards. We also cover a strong global customer base from over 25 countries. Our expertise extends from consultancy to design, implementation and managed services. Our success stems from our constant ability to deliver complete suite of solutions that meet customers’ needs.\xa0 Our in-depth experience and proven track record in systems engineering, quality in-house products and strong investment in R&D, have enabled us to develop our core capabilities and build a significant domain expertise reputed in the global arena.\n\t\n\tWe are committed to providing our customers with the most comprehensive range of system solutions to meet their needs. We will continue to innovate, seek new business areas and develop our people – to bring increasing value to our stakeholders.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-ref%3A-asd-10132851?jobId=jobstreet-sg-job-10132851§ionRank=82&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Job Overview
[{'position': 'AI Engineer (AIAP) for AI Singapore #Immediate'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-engineer-aiap-for-ai-singapore-immediate-10115115?jobId=jobstreet-sg-job-10115115§ionRank=83&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
[{'position': 'Data Engineer'}, {'company_name': 'SBS Transit Limited'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Responsibilities:': 'Design and develop data pipelines and infrastructure to support analytics projects for optimal extraction, transformation and loading of data from various data sources.Management of large volumes of structured and unstructured data and transforming it into useable form for analytics purposes.Automate data collection and processing for analytical modelling input.Maintain and improve the quality of datasets.Optimisation of algorithms for production deployment.Identify opportunities for internal process improvement via data solutions..', 'Requirements:': '3 years in developing data engineering solutions, preferably with production deployment experience, using tools such as Python, SQL, Apache Spark, Apache Hadoop, Apache Kafka, Docker, Git, Shell, Bash or equivalent.Background in computer science, data analytics or a relevant field. Degree or higher preferred, but candidates with the relevant work experience and certifications will be considered.Experience in basic model and dashboard development (backend), building big data infrastructure, project management, data governance concepts.Independent, intellectually curious, creative, diligent, and a holistic thinker.Working knowledge of building pipelines involving real-time streaming data, big data, cloud technologies or equivalent.Experience/knowledge of using Splunk and Robotic Process Automation (RPA) solutions like UIPath\xa0.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '199206653M', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '12 days', 'Industry': 'Transportation / Logistics'}, {'Company Overview': '\n\tSBS Transit is a leading public transport operator. It is a member of the ComfortDelGro Group which operates in seven countries around the world. Our people are our strongest driving force and their welfare and development are important to us. We listen to what they have to say and we are constantly grooming them to their fullest potential. Join the SBS Transit family today and let us help you grow.\n\n\tBy submitting this application for this position, you acknowledge that you have read the Data Protection Policy for Job Applicants (the “Policy”) of SBS Transit Ltd and its subsidiaries, affiliates and related corporations (‘SBST”) and consent to:\n\t\n\t\ta.\xa0\xa0\xa0 The collection, use and disclosure of your personal data by SBST for the purposes of your application and potential employment with SBST and the purposes set out in the Policy: and\n\tb.\xa0\xa0\xa0 SBST’s retention of your personal data for two years for consideration of future job opportunities (where applicable) form from the date of application submission.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10082138?jobId=jobstreet-sg-job-10082138§ionRank=84&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Head (Data Science), Analytics Centre of Excellence'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities': 'Key Member of Analytics Centre of Excellence (COE), a community where like-minded professionals come together to cross learn, acquire exposure and contribute to the delivery of data analytics projects across A*STAR..Work with business stakeholders/users to develop end-to-end advanced analytics solutions, from problem & use case formulation, data sourcing to develop and deploying the solution into production..Work with business users to continue improving the enterprise analytic platform, tools, and reusable assets..Work and share with Analytics COE & community to continue develop advanced analytics capabilities, adoption of best-in-class techniques and practices..Responsible for providing operational support and maintenance of the analytics infrastructure platform and system..Responsible to curate, develop and conduct training sessions/workshops to equip COE members and wider A*STAR officers with the necessary data analytics/science knowledge and skills..Assume Tech-lead role to coach junior data scientists and instill best practices.', 'Job Requirements': 'Bachelor’s/Master’s degree in computer science/engineering, information technology, business analytics, data science or artificial intelligence with strong focus in data mining, statistical / mathematical modellings, or machine learning..5+ years of experience in conceptualizing and developing advanced analytics or data science solutions to solve business problems..Familiar with analytics and machine learning platforms and how it integrates with upstream and downstream data and production systems..Experience of working with business users to gather/understand user requirements and working with tech/data team to improve analytics platform to resolve user pain points..Experience of managing complex and cross departments/domain projects..Full stack data science experience covering end-to-end problem formulation, developing training pipeline and deploying solution to production..Familiar with developing machine learning pipelines following dev practice such as versioning, branching, merging, linting, testing and writing codes in structured and modularized way..Able to analyze business needs, articulate the solution framework including the model output, business decision and potential impact to drive the adoption of the solution..Excellent problem-solving skills and strategic thinker..Excellent written, oral & inter-personal communication skills..Technical skills in SQL, Python/R, advanced analytics & visualization tools such as Tableau, QlikSense, PowerBI, SAS or MicroStrategy, ML packages and tools..Practical experience of cloud environments, especially GCC, will be an added advantage.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/head-data-science-analytics-centre-of-excellence-10123579?jobId=jobstreet-sg-job-10123579§ionRank=85&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Engineer'}, {'company_name': 'ATT Systems (S’pore) Pte Ltd.'}, {'small_section': ['Paya Lebar', 'Posted on 3-Nov-22']}, {'Responsibilities': 'Work with business users and data platform team for requirement gathering and process collaboration..Assist in the development of data processing pipelines for data modelling, analysis, and reporting from large and complex transaction datasets..Develop and maintain dashboards with internal Business intelligence tools for data insights and business support..Develop graphs and charts with inputs from business users..Assist to aggregate and analyze various business data and utilize the output to provide insights uncover trends and business opportunities..Monitor performance and refine data platforms for improved accuracy overtime..Support in market research and competitors benchmark insights derived from the internal data source, and to identity new and apt areas where data analytics can be applied..', 'Requirements': 'Diploma / Degree in Computer Science / Computer Engineering / Information Systems / Mathematics fields..Understands basic enterprise IT development and tools..1 - 2 year experience in coding or dashboard development.Good English communication skill in both written English and presentation skills..People -oriented.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '199407919N', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '20 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\n\t\tOur Company's competitive edge lies in its ability to provide a one-stop solution in designing and developing a wide range of electronic systems and subsystems for the public and private organizations. Earning an outstanding performance history in supporting the government and commercial sectors, ATT Group of Companies believes in providing innovative designs, excellent quality and customer satisfaction to our valued customers.\n\n\n\t\tIf you ever wanted to be part of something different, a dynamic, growing business, then look no further. We’re constantly looking for individuals who believe in doing things differently.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10099464?jobId=jobstreet-sg-job-10099464§ionRank=86&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow (Healthcare AI and Data Analytics)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-healthcare-ai-and-data-analytics-10113451?jobId=jobstreet-sg-job-10113451§ionRank=87&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
[{'position': 'Data & Analytics Consultant (Nucleus)'}, {'company_name': 'NCS Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Will you be part of the extraordinary?': '', 'Your role is only the beginning\u200b': '', 'What will you be expected to do?': 'Translate customer pain-points into problem statements, develop analytics solutions, and engagingly present results and learnings to both technical and non-technical audiences.Contribute to the building and maintaining of end-to-end data pipelines to bring information from source systems, harmonise and cleanse data to support analytics solutions.Contribute to scoping of data inputs, data cleaning and pre-processing, feature engineering, building analytics solution, deploying to production, conducting testing, and improving analytics solution by iterations.Participate in technical design sessions with cross-functional teams to define data process flow, data definition, data & analytics solution requirements and specifications.Work closely with project manager and technical leads to provide regular status reporting and support them to refine issues/problem statements and propose/evaluate relevant analytics solutions.Work in interdisciplinary teams that combine technical, business and analytics competencies that deliver work in waterfall or agile software development lifecycle methodologies.', 'What should you have:': 'Data visualisation tool (e.g. Tableau, Qlik, PowerBI).SQL knowledge.Programming or scripting language (e.g. Python, R, Java).Analytical software (e.g. SAS).Distributed architectures (e.g. HDFS, Hive).Ability to analyse and break down complex concepts and technical findings into clear and simple language for communication to team members and clients.Ability to link industry specific business requirements to BI, Analytics and Big Data solutions.', 'Additional experience it would be great to have:': 'Proficiency in AWS, Azure, Cloudera (or other cloud services), data pipeline and database development..Knowledge of statistical modelling, predictive analytics or machine learning.Hands-on experience in setting up and using toolkits such as Docker, VMs, Git, SSH, REST APIs.Certification in leading data analytics platforms such as Tableau, Qlik, Informatica, Talend, Microsoft, SAS, IBM.'}, {'Career Level': 'Entry Level', 'Qualification': 'Not Specified', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199603123G', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '24 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Flexi Benefits, Business Casual'}, {'Company Overview': 'About NCS NCS is a leading technology services firm with presence in Asia Pacific and partners with governments and enterprises to advance communities through technology. Combining the experience and expertise of its 10,000-strong team across 66 specialisations, NCS provides differentiated and end-to-end technology services to clients with its NEXT capabilities in digital, cloud and platform as well as core offerings in application, infrastructure, engineering and cyber security. NCS also believes in building a strong partner eco-system with leading technology players, research institutions and start-ups to support open innovation and co-creation. For more information, visit ncs.co.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-consultant-nucleus-10077403?jobId=jobstreet-sg-job-10077403§ionRank=88&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Will you be part of the extraordinary?
[{'position': 'Research Fellow, - (Data Scientist in Air Traffic Management) (R00010489)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Key Responsibilities:\xa0': 'The Research Fellow shall work on subprojects to conduct research on advanced air traffic management concepts, for example but not limited to a novel Air Traffic Flow Management Concept..', 'Job Requirements:': 'PhD degree in Data Science, Air Traffic Management or relevant fields..Minimum of 4 years’ production experience with spatial and temporal data.Minimum of 4 years’ production experience in Python (these may be proven via portfolios or GitHub user page, or similar).Experience in managing own project plans, designing of experiments, delivering a research or development product to clients.Knowledge in the following computing skills is advantageous: Machine Learning; Big Data (distributed computing), relational databases.Experience in aviation in particular Air Traffic Management, Air Traffic Services, Air Traffic Control.Work on subprojects of a larger CONOPS study, to develop a plan, conduct experiments using simulators, analyse data, find insights/hypothesis, visualize data, liaise with the sponsor, deliver project reports..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-scientist-in-air-traffic-management-r00010489-10070204?jobId=jobstreet-sg-job-10070204§ionRank=90&token=0~af88651c-92c9-426f-a78c-d36ad38d8750&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Scientist in Computer Vision for human action understanding, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Job requirements:': 'PhD degree in Computer Vision or Machine Learning (or related discipline) with a strong record of accomplishment in CVPR, ECCV, ICCV, NIPS, ICML, ICLR, AAAI, IJCAI or journal papers in IEEE TPAMI, IJCV, JMLR, Pattern Recognition, IEEE TIP and related. PhDs with a record of accomplishment of the above-mentioned are encouraged to apply..Strong programming skills in python (Pytorch, Tensorflow)..Excellent computer vision and machine learning skills are required..Excellent problem solving skills..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-in-computer-vision-for-human-action-understanding-ihpc-10096322?jobId=jobstreet-sg-job-10096322§ionRank=92&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Job requirements:
[{'position': 'Senior/ Analyst, Data Science, Office of DGCMIO (Research)'}, {'company_name': 'Singapore Health Services Pte Ltd (SingHealth HQ)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Requirements': 'Bachelor’s degree in Mathematics, Statistics, Biomedical or any related science/engineering discipline or equivalent.Preferably with at least 2 years of experience in consultancy/analytics in health services research.Experience in working with large healthcare datasets, including both structured data and unstructured data (e.g. textual notes, image data).Experience in data management and manipulation approach tools (e.g. Data Profiling / SQL querying, Data Quality, ETL and Data warehousing, Data governance and Healthcare data standards, Statistical modelling, In memory analytics, Big data framework (e.g. Hadoop, Spark).Familiarity with commercial statistical software (e.g. SPSS, Stata), open source platforms (e.g. R, Python) and commercial BI tools (e.g. Tableau, OBIEE, IBM Cognos).Strong passion for analysing and resolving complex business problems with displays of an intellectual curiosity about the business needs.Strong background in data engineering concepts.Good communication skills to coordinate effectively with multidisciplinary teams comprising of clinicians, operational and administrative staff and allied health professionals to solve care delivery problems.Must be fully vaccinated against COVID-19.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': '200002698Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '17 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts), Subject to Designation'}, {'Company Overview': 'SingHealth is the largest public healthcare cluster in Singapore. At our Headquarters, we focus on cluster-wide, strategic core functions for the organisation and work closely with our institutions and care teams to facilitate excellent care for our patients.We offer a diverse variety of roles that you can fulfil your career aspirations in. You can choose from different domain areas such as medical and clinical services, regional health system, research, education, organisational transformation and informatics, as well as corporate services including operations, finance, human resources, legal and communications. These comprise healthcare administration roles and other unique jobs such as genetic counsellors and clinical research nurses.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-analyst-data-science-office-of-dgcmio-research-10127329?jobId=jobstreet-sg-job-10127329§ionRank=93&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Job Requirements
[{'position': 'Data Analyst ($6.5K/CRM/MNC) (ID: 564258)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Singapore', 'SGD\xa05,500 - SGD\xa06,500', 'Posted on 6-Nov-22']}, {' ': '', '. \xa0': '', 'Responsibilities: -': 'Prepare and generate analytical data by performing analysis of data from Customer Relationship Management (CRM) and AP-GCD system..Proposing the improvement of Power BI dashboard data presentation..Generate idea in monitoring and setting trend in pitching early detection of failure from CRM dashboard..Supporting HOD to generating new ideas in big data analysis..Generating the data by production with failure or corrective records..Identifying products that have common and/or frequent similar failure..Generating the trending of the problems from same analyzers base on their product life cycle..Report issues to supervisor on a monthly basis..Supporting team leaders in data analysis..Reviewing and proposal in improvement of system design for better data generating..Growing the Service Standard for Customer Care within Asia Pacific Region..', 'Requirements:': 'Degree/Diploma Business Administration majoring in Business Analytics.2-4 years working experience in data analytics in instrument and consumables industries..Good knowledge of Microsoft office..Possess strong interpersonal and oral communication skills..Maintains at all times the highest standards of professional and personal conduct when interacting with internal external customers..Customer focused..'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-%246.5k-crm-mnc-id%3A-564258-10139944?jobId=jobstreet-sg-job-10139944§ionRank=94&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
[{'position': 'Research Fellow, - (Data Analytics) - (R00005646)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Conduct research on development of data analytic methodologies using techniques such as machine learning, deep learning, artificial neural networks, etc.Summarize and analyze the human factors data collected to date from human factors studies of ambient assisted living for aging population in Asia and finalize and conclude the project with a final report.Assist to supervise one PhD student and 2 FYP students in the Design & Human Factors Lab.Summarize research results for publishing in prestigious journals.Prepare technology disclosure materials for further filing of patents.', 'Job Requirements:': 'PhD in Mechanical, Civil, Electrical and Electronic Engineering or related field.Expertise in project management and constructing report.Knowledge in machine learning and data analytics.Publication track record is an advantage.Proficiency in basics of programming languages such as Matlab and R coding language.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-analytics-r00005646-10076132?jobId=jobstreet-sg-job-10076132§ionRank=95&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'APAC Big Data Engineer (Gaming MNC, Data Warehouse) #WorkNow'}, {'company_name': 'RecruitFirst Pte. Ltd'}, {'small_section': ['Central', 'Posted on 3-Nov-22']}, {'Role:': 'Responsible for the development, maintenance and positioning of big data systems\xa0.Responsible for the development of big data analysis tasks using Hadoop, HiveSQL, Spark\xa0.Construction of Offline databases\xa0.Perform SQL development\xa0.Implementing real-time data warehouse using Flink.', 'Requirements & Skills:': '', ' SQL': '', 'Databases such as MySQL/Hive/Redis': '', 'Other Information:\xa0': 'Hybrid Work Model (WFH / Raffles Place).Mon - Fri, 9am - 6pm\xa0.up to $6,500 per month\xa0.Candidates will be required to reside in Singapore\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '13C6342', 'EA No.': '13C6342', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '13 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGrow your company with RecruitFirst!\n\n\n\tThe business environment today is a highly competitive one, which is ever evolving. Having the right human resource business partner with a strong network of consultants and candidates has become key to the success of industry leading businesses.\n\n\n\tRecruitFirst is the fastest growing human resource consultancy in the Asia Pacific. Our mission is Helping People Find Better Jobs, and Organisations Find Better People. We live by this mission by ensuring that the best candidates and employers are connected via the rigorous recruitment processes and extensive database that we are continuously developing.\n\n\n\tBe the first to recruit with us and start realising the value-add that we are able to provide to your organisation!\n\tEnjoy the expansive array of human resource solutions and network which RecruitFirst has to offer.\n\tTogether with our affiliates, we have operations in 8 countries and 10 cities across Asia Pacific – Singapore, Kuala Lumpur, Bangkok, Hong Kong, Shanghai, Beijing, Guangzhou, Taipei, Tokyo and Seoul. This geographical network gives us the strategic advantage of acquiring the best candidates to satisfy the human resource strategies of multi-national companies. In addition, with this large network of consultants, we are also able to provide for all your human resource needs, including, temporary staffing, contract staffing, executive search, payroll services, global placement or management consultancy.\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/apac-big-data-engineer-gaming-mnc-data-warehouse-worknow-10129640?jobId=jobstreet-sg-job-10129640§ionRank=96&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Role:
[{'position': 'Scientific Officer/Senior Scientific Officer (Statistics & Data Science-3 year contract, renewable)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description': "Secure, co-ordinate and supervise consulting projects for the DACC..Lead student teams and work hands-on to create practical solutions for our clients..Take lead in solving problems from consulting projects by using state-of-the-art methodology from statistics, data science, mathematics and computer science..Take lead in producing technology ('minimum viable products) for the delivery of consulting project results..Assist with literature reviews for consulting and advisory projects..Handle student walk-in consultations..Build and maintain relationship with companies..Manage consulting and research legal contracts..Obtain funding approval for the DACC Executive Training courses and workshops..Organize data science conferences and meet-ups..Manage executive training courses and workshops..", 'Qualifications/Requirements/Other info': 'PhD in Statistics, Mathematics, Computer Science or Data Science , with experience in managing research projects.\xa0.', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/scientific-officer-senior-scientific-officer-statistics-data-science-3-year-contract-renewable-10115666?jobId=jobstreet-sg-job-10115666§ionRank=97&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'IT SUPPORT CUM DATA ANALYST'}, {'company_name': 'DAISO SINGAPORE PTE. LTD.'}, {'small_section': ['Jurong East', 'SGD\xa02,200 - SGD\xa03,100', 'Posted on 5-Nov-22']}, {'Qualifications': "Candidate must possess at least Bachelor's Degree/Post Graduate Diploma/Professional Degree in Computer Science/Information Technology or equivalent..At least 1\xa0Year of working experience in the related field is required for this position..Strong troubleshooting and critical thinking skills..Knowledge in hardware, software and networking..Ability to prioritize, delegate and follow strict deadlines..Advance knowledge in MS Excel is a Must..", 'Responsibilites and Duties': 'Installing and configuring computer hardware, software, systems, networks, printers and scanners..Providing Level 1 technical support for POS and in-house programs across the company (may be in person, phone or email)..Monitoring and maintaining computer system and networks..Outsourcing and liaising with vendors for IT equipment..Data analyzation reports..Other ad-hoc duties.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Hardware', 'Registration No.': '201842518K', 'Company Size': '501 - 1000 Employees', 'Industry': 'Retail / Merchandise', 'Benefits & Others': 'Miscellaneous allowance, Regular hours, Mondays - Fridays'}, {'Company Overview': 'DAISO is a mega store established in Japan in 1977. We are Japan’s No. 1 ranking living ware supplier, with 2570 stores across the country and 550 stores in 24 nations worldwide.There are now 27 Daiso and threeppy stores all over Singapore. Besides the flagship store in IMM, there are also outlets in Plaza Singapura, Sembawang Shopping Centre, ION Orchard, Tampines 1, Chinatown Point, City Square Mall, Parkway Parade, Singapore Sportshub (Kallang Wave), Eastpoint Mall, Jcube, Waterway Point, Changi City Point, Novena Square 2, 100AM, Singpost Centre, Funan, Marina Square, Bugis Junction, West Coast Plaza, Canberra Plaza, Kinex and Clarke Quay Central.With over 90,000 different products in our inventory and a further 1,000 new products being developed each month, we provide the most amazing variety and value for all your needs.'}, {'url': 'http://www.jobstreet.com.sg/en/job/it-support-cum-data-analyst-10089993?jobId=jobstreet-sg-job-10089993§ionRank=98&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Qualifications
[{'position': 'Project Scientist, Cell Line Development (BTI)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Responsibilities:': 'Plan and execute experiments; collect, analyse and report data.Communicate scientific results to a variety of audience in written and oral formats.Uphold highest quality and integrity of scientific work.Meet project milestones effectively and efficiently.Collaborate with multiple teams while responsibly completing tasks in hand.Contribute constructive ideas and feedback in project discussions and administrative meetings.Execute necessary duties for laboratory maintenance.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/project-scientist-cell-line-development-bti-10096544?jobId=jobstreet-sg-job-10096544§ionRank=99&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Economist'}, {'company_name': 'Changi Airports International Pte Ltd'}, {'small_section': ['Changi', 'Posted on 5-Nov-22']}, {'Responsibilities:': 'Conduct macroeconomic research and analysis to support risk-profiling and financial assessment of potential or current airport investments..Develop econometric forecasts of traffic and other relevant aviation metrics for investments or third-party clients..Partner with adjacent verticals and draw on other CAI assets to gather relevant datasets for tactical data mining..Build data products, frameworks and pipelines which modularise analysis for speed and replicability..', 'Requirements:': 'Bachelors or Masters Degree in Economics, Statistics, Mathematics or other quantitative subjects. A minor in Economics with undergraduate economic theory and econometrics is the minimum requirement..At least 2 years hands-on experience using R, Python or other open-source statistical programming languages with various datasets, alongside core statistical and machine learning packages..Familiarity with tools across the data value chain from SQL to Jupyter and Power BI/Tableau..Proficient with the Microsoft Office suite and adjacent plugins, specifically advanced Excel, PowerPoint and think-cell..Excellent written and verbal communication and ability to explain economic concepts and statistical results clearly, as evidenced from past work or research..Possessing one or more of the following skills/experiences will be advantageous:.Familiarity with analytical techniques like IO or DSGE modelling..Experience developing or contributing to financial models for project/infrastructure finance..Previous work with machine learning packages beyond the core e.g. Tensorflow/Keras and mxnet..Knowledge of, and experience with, a cloud toolstack (e.g. AWS or Azure) or open-source deployment stack..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '200404385W', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '28 days', 'Industry': 'Aerospace / Aviation / Airline', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts), Flexible Benefits'}, {'Company Overview': '\nChangi Airports International (CAI) is a leading\xa0airport consultant, manager and investor in the global aviation market.\xa0As a strategic partner, CAI designs integrated solutions that enable its clients and partners to fulfil their potential of being\xa0world-class airports.\n\xa0\nAs one of the leading\xa0airport investors\xa0and\xa0airport consulting firms, CAI has extensive global experience that spans over 20 countries and more than 60 airports around the world, including Singapore Changi Airport. Some of its projects include Tom Jobim International Airport in Brazil, the very first aerotropolis in India, four airports in Russia, Fukuoka Airport in Japan, and Clark International Airport in the Philippines.\nCAI is committed to being a valued partner in the global aviation market, creating airports of the future and delivering sustainable value to our partners and investee airports. CAI is a wholly-owned subsidiary of Changi Airport Group.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/economist-10106749?jobId=jobstreet-sg-job-10106749§ionRank=100&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Gaming Industry | Big Data Engineer | Up to $6500'}, {'company_name': 'RecruitFirst Pte. Ltd'}, {'small_section': ['Central', 'SGD\xa05,000 - SGD\xa06,500', 'Posted on 3-Nov-22']}, {'Gaming Industry | Big Data Engineer | Up to $6500': '', 'Your responsibility:': '', 'Hadoop, HiveSQL, Spark': 'Construction of Offline databases.Perform SQL development.', 'Perform SQL development': '', 'data warehouse': '', 'What we are looking for:': 'Min Degree in computer science or relevant with at least 2 years of big data exp.Proficient in Python, Java or other programming language.Proficient in Databases such as MySQL/Hive/Redis.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '13C6342', 'EA No.': '13C6342', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '13 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGrow your company with RecruitFirst!\n\n\n\tThe business environment today is a highly competitive one, which is ever evolving. Having the right human resource business partner with a strong network of consultants and candidates has become key to the success of industry leading businesses.\n\n\n\tRecruitFirst is the fastest growing human resource consultancy in the Asia Pacific. Our mission is Helping People Find Better Jobs, and Organisations Find Better People. We live by this mission by ensuring that the best candidates and employers are connected via the rigorous recruitment processes and extensive database that we are continuously developing.\n\n\n\tBe the first to recruit with us and start realising the value-add that we are able to provide to your organisation!\n\tEnjoy the expansive array of human resource solutions and network which RecruitFirst has to offer.\n\tTogether with our affiliates, we have operations in 8 countries and 10 cities across Asia Pacific – Singapore, Kuala Lumpur, Bangkok, Hong Kong, Shanghai, Beijing, Guangzhou, Taipei, Tokyo and Seoul. This geographical network gives us the strategic advantage of acquiring the best candidates to satisfy the human resource strategies of multi-national companies. In addition, with this large network of consultants, we are also able to provide for all your human resource needs, including, temporary staffing, contract staffing, executive search, payroll services, global placement or management consultancy.\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/gaming-industry-%7C-big-data-engineer-%7C-up-to-%246500-10129271?jobId=jobstreet-sg-job-10129271§ionRank=102&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Gaming Industry | Big Data Engineer | Up to $6500
[{'position': 'Junior Data Analyst / Scientist'}, {'company_name': 'Dun & Bradstreet (Singapore) Pte Ltd'}, {'small_section': ['Downtown Core', 'Posted on 27-Oct-22']}, {'Responsibilities:': 'Perform data cleaning, pre-processing and feature engineering that will aid in the process of meaningful analysis..Design predictive modelling and credit risk management solution..Support machine learning operations..Monitor and design dashboards and interactive visualization for customer solution delivery..Expand the database through the collection of the data from various sources..Improve the quality of database through data integration and\xa0data analytics..', 'To succeed in this role, you are likely to have the following attributes:': 'Degree/Masters in Computer science/engineering; Data Analytics; Finance/Economics; Quantitative Analysis; or related discipline.*.Experience/Knowledge in Credit Risk would be an advantage*.Competent in SQL to query databases..R Language / Python for statistical modelling and machine learning..Proficiency in\xa0Business Intelligence (BI) tools, such as Power BI, Tableau or other BI softwares.Creative problem solver, able to provide innovative solution to business problems..Strong communication skills..A team player that is able to collaborate across different teams..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200003058W', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '23 days', 'Industry': 'Consulting (Business & Management)', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\nGrowing Relationships Through Data\n\n\t\tDun & Bradstreet (Singapore) Pte Ltd grows the most valuable relationships in business by uncovering truth and meaning from data.\n\nWe Help You Grow Relationships Through Data\n\n\t\tGrowth is the lifeblood of business, and its most fundamental driver is the relationships a company fosters with prospects, customers and partners.\n\n\t\tOver nearly two centuries of helping businesses understand this dynamic, we have honed the expertise of how data and analytics forge the relationships that lead to industry-leading performance. To activate these capabilities, we build – or co-develop with partners – solutions tailored to your role, whether you are in marketing, sales, finance, supply, compliance or information technology. And we deliver this content however you want to consume it.\n\n\t\tOur platform’s foundation is the world’s largest commercial database, with over 240 million company records we derive from 30,000 data sources and update 5 million times per day. We integrate this insight into your core systems, workflows and cloud-based apps in ways that enhance their impact, and we also integrate with your existing data and third-party data sources. Our DUNSRight® process gives us the unmatched ability to turn an enormous stream of data into the high-quality information you need to grow your most valuable relationships.\n\n\t\tWe offer a wide range of solutions for Risk & Finance, Sales and Marketing, Human Resource and Operations professionals. And some of the largest, most successful technology and service companies in the world embed Dun & Bradstreet data within their offerings. These companies include SalesForce, Oracle, KPMG and SAP.\n\nWe Have Served Diverse Organizations Locally and Globally\n\n\t\tFrom banking to high-tech, from retail to energy, more than 34,000 companies and 87% of the Fortune 500 trust Dun & Bradstreet to provide critical data and insights they need to create every-day connections with their most valuable constituents.\n\n\t\tInterested candidates, please email a detailed resume stating the position applied for in the subject matter and stating your current and expected salary via "Apply Now"\n\n\t\t* We regret that only shortlisted candidates will be notified.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/junior-data-analyst-scientist-10057989?jobId=jobstreet-sg-job-10057989§ionRank=103&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Engineer'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description': 'Work with internal and external stakeholders including customers, partners and colleagues to solicit requirements, design, develop, test and maintain\xa0Machine Learning\xa0systems.Responsible for documentation of system specifications.Conduct technical exploration of new Machine Leaning tools, techniques and platforms.Assist to maintain Machine Learning/AI knowledge repository.Support pre-sales initiatives, proposal development and provide post-sales support for Machine Learning systems.', 'Job Requirements': 'Degree, Master’s Degree or PhD in Computer Science/Engineering, Knowledge Engineering, Information Systems, Information Technology, Mathematics or equivalent with working experience in\xa0development of Machine Learning systems.Recognized professional or industrial certifications in relevant Machine Learning technologies or competencies.At least 1-3 years of professional experiences in design and development of Machine Learning systems.In-depth technical knowledge in at least two of the below areas:.Data Modelling.Data Mining.Statistical Analysis.Simulation.Operations Research.Data Visualisation.Predictive Analytics.Technical expertise in Python, R, SQL, Java, C/C++, MATLAB, Scala etc..Knowledge of big data technologies e.g. Hadoop, Spark, Hive, HBase etc. will be an added advantage.Knowledge of cloud computing platforms e.g. AWS, Google Cloud Platform, Microsoft Azure will be an added advantage\xa0.Experience in agile development methodologies.Knowledge of\xa0MLOps best practices in model development and deployment, CI/CD, version control etc..Excellent written and verbal communications skills;.Highly organized, motivated, independent and resourceful team player.Strong analytical thinking, interpersonal and problem-solving skills.Able to work productively in an agile and fast-paced consulting environment.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/engineer-10140039?jobId=jobstreet-sg-job-10140039§ionRank=104&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Engineer (Remote possible)'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Data Engineer (Remote possible)': 'Competitive Remuneration Package.Remote working available.', 'About the Client': '', 'Main Duties & Responsibilities': 'Build scalable batch and real-time data pipelines to ingest data from various channels.Set up a streamlined data lake and data warehouse.Deploy production quality code and maintain data quality.Establish tools for data ingesting and building data cubes\xa0.', 'Experience and Qualifications': 'At least 4 years of experience.Bachelor/Master’s degree in Computer Science, Engineering or a related field, software engineering background preferred.Proficiency in Python, Java or Scala.Hands-on experience implementing ETL (or ELT) best practices at scale.Experience in designing data warehouse – Snowflake, Redshift or Athena.Hands-on experience working with Kubernetes.Experience with stream processing systems (Flink or Spark).Knowledge of big data technologies - Spark, Hadoop, Hive, Kafka, Flink etc. and machine learning is a plus.Familiarity with machine learning tools from AWS or GCP preferred.Knowledge of software engineering concepts will be valuable.', 'Interest & Application': '', '"Apply Now"': '', 'Personnel Registration No R22109255': '', 'EA license No. 09C5803': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-remote-possible-10107820?jobId=jobstreet-sg-job-10107820§ionRank=106&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Data Engineer (Remote possible)
[{'position': 'Solution Lead, Sensors & Machine Learning Lab (5762)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Solution Lead, Sensors & Machine Learning Lab': '', 'Preferred Requirements:': 'Good\xa0Degree\xa0in engineering, computer science\xa0or\xa0equivalent practical experience.At least 10\xa0years\xa0of relevant\xa0working\xa0experience.Experienced\xa0and\xa0knowledgeable in digital\xa0and\xa0technology, such as AI/ML, Data Analytics\xa0and\xa0cloud/edge technologies..Enthusiastic about airport operations\xa0and\xa0making a difference to passenger experience.Self-motivated, confident\xa0and\xa0works well to help others succeed.Strong\xa0conceptual thinker, resourceful\xa0and\xa0reliable to get things done independently.Excellent written\xa0and\xa0verbal communication skills, with the ability to gather stakeholders’ buy-in\xa0and\xa0deliver management presentations.'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/solution-lead-sensors-machine-learning-lab-5762-10144312?jobId=jobstreet-sg-job-10144312§ionRank=107&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Solution Lead, Sensors & Machine Learning Lab
[{'position': 'AI Courseware Engr. for AI Singapore'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': '', 'Duties and Responsibilities:': 'Design and implement AI courseware and learning resources.Define and create engaging user learning journeys through the use of learning technology.Evaluate appropriate learning delivery modes to facilitate the achievement of a positive learning experience\xa0.Synthesise analysis of curriculum take-up rates and learner assessment trends,\xa0.Evaluate, recommend and prioritise courseware improvement areas based on analysis of learning objectives and performance standards.Oversee implementation of courseware review processes to provide inputs for AI Certification team.', 'Qualifications': 'Minimum Degree in computer science, machine learning, statistics, AI, computer science and other relevant equivalent quantitative fields.Chartered AI Engineer Level 1 qualification would be preferable.Familiar with WordPress and LearnDash, or equivalent Wordpress LMS plugin.At least 2 years of experience in curriculum design and development.Ability to write effective copy and instructional text.', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-courseware-engr.-for-ai-singapore-10110369?jobId=jobstreet-sg-job-10110369§ionRank=108&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Project Officer, - (Data Analytics and Software Development) - [R00004052]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Undertake software development for machine learning based parameter estimation.Develop a simulation test-bed.Help other staff and the Principal Investigator work on demos and final report.', 'Job Requirements': 'Bachelor degree in either electrical engineering, software engineering, or computer science, specialized in data analytics and software development.Expert knowledge on software development and machine learning based data analysis techniques.Good programming skills, e.g., matlab, python or C/C++/Java.Any past experience in large-scale traffic systems will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-data-analytics-and-software-development-%5Br00004052%5D-10135877?jobId=jobstreet-sg-job-10135877§ionRank=110&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'AI Engineer for AI Singapore (Research)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Description': '', 'Duties & Responsibilities': 'You will participate in the full research to deployment pipeline and help conceptualize, develop research experiments, and then implement the systems to execute these experiments.\xa0.You will work with a team and interact closely with both the academic researchers and the industry partners.\xa0.You will attend reading groups and seminars, master research techniques and engineering practices, and design research tools and experimental testbeds.\xa0.You will apply state-of-the-art AI algorithms, explore new solutions, and build working prototypes. You will also learn to deploy the systems and solutions at scale..', 'Qualifications': "A Bachelor's or Master's degree in AI, computer science, or related disciplines;.Strong system-building skills and keen interests in working with emerging technologies and frameworks;.Solid background in AI and machine learning;.Past experiences in:.Open source DevOps tools and software as a service solutions;.Development and implementation of AI and machine learning algorithms;.Related work at a commercial company or industrial research lab.Good communications skills in both written and verbal English;.An adventurous spirit and willingness to learn and experiment with new ideas and new domains.\xa0\xa0."}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-engineer-for-ai-singapore-research-10108246?jobId=jobstreet-sg-job-10108246§ionRank=112&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Fellow (Data Restoration), R00003935 T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted 10 hours ago']}, {'Job Responsibilities': 'The Research Fellow will work on a project to conduct the research on the development of Data Analysis of Recovered Data from Flash Memory for image and video data. The roles of this position include:.Development of image and video data restoration algorithms and software development in Android System.Develop image and video recovery methods of corrupted zip file.Recovery of encrypted data in Android system.', 'Job Requirements': 'PhD in Electrical and Electronic Engineering, Computer Science or related field specialization in Data Restoration.At least 3 years research experience in research institute or university in related area is required.Expertise in video algorithms and machine learning.Good publication track record is required.Proficiency in basics of programming languages such as C, C++ and Python.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-restoration-r00003935-t-10096189?jobId=jobstreet-sg-job-10096189§ionRank=113&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate (Computer Science/IT), [R00007075]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 4-Nov-22']}, {'Job Responsibilities': 'Co-evaluate business needs and objectives.Identify opportunities for data acquisition.Build data systems and pipelines.Build algorithms and prototypes.Analyze and organize raw data.Interpret trends and patterns.Conduct data analysis, working independently or with data analysts, and report on results.Prepare data for prescriptive and predictive modeling.Combine raw information from different sources.Explore ways to enhance data quality and reliability.Develop analytical tools and programs.Collaborate with data scientists and architects.', 'Job Requirements': 'Master in Computer Science, IT, or similar field.Previous experience as a data engineer or in a similar role.Technical expertise with data models, data mining, and segmentation techniques.Knowledge of programming langus\xa0 (e.g. Java and Python).Hands-on experience with SQL database design.Great numerical and analytical skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-it-%5Br00007075%5D-10134882?jobId=jobstreet-sg-job-10134882§ionRank=114&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Engineer'}, {'company_name': 'NCS Pte Ltd'}, {'small_section': ['North-East', 'SGD\xa05,000 - SGD\xa010,000', 'Posted on 5-Nov-22']}, {"ClayOPS is a venture acquired by NCS as of 9 September 2021. Working location for this position would be at ClayOPS' office at 6 Harper Road.": '', 'ClayOPS Pte Ltd': '', 'Your primary job responsibilities will be to': 'Design and build new BI solutions such as ETLs, data warehouses, data mining tools, OLAP cubes, reporting tools and dashboards.Maintain and enhance existing BI solutions and dashboards.Client and stakeholder management.Requirements gathering from client.Project planning, implementation and management to ensure project deliverables according to proposed timeline.You should be able to understand project requirements and produce high quality, well-documented code..Your ability to communicate confidently and clearly is important. We value relevant experience, positive attitude and aptitude..Due to the nature of our work, you must be able to work independently..', 'Technical Requirements': 'Masters / Degree / Diploma in Computer Science / Information Technology, Electrical / Electronic, Information Systems or equivalent discipline.Relevant experience in developing ETLs and Data Warehouse / Data Mart.Knowledge and experience in databases (Microsoft SQL Server) is a must.Strong in SQL, Python, Scripting is a big plus.Knowledge and experience in Azure Data Factory, Data Lake, Synapse and Databricks is a big plus.Knowledge and experience in BI tools (eg. Microsoft SSAS, SSIS, Power BI, Tableau software, Pentaho solutions) is a big plus.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199603123G', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '24 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Flexi Benefits, Business Casual'}, {'Company Overview': 'About NCS NCS is a leading technology services firm with presence in Asia Pacific and partners with governments and enterprises to advance communities through technology. Combining the experience and expertise of its 10,000-strong team across 66 specialisations, NCS provides differentiated and end-to-end technology services to clients with its NEXT capabilities in digital, cloud and platform as well as core offerings in application, infrastructure, engineering and cyber security. NCS also believes in building a strong partner eco-system with leading technology players, research institutions and start-ups to support open innovation and co-creation. For more information, visit ncs.co.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10106989?jobId=jobstreet-sg-job-10106989§ionRank=116&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
ClayOPS is a venture acquired by NCS as of 9 September 2021. Working location for this position would be at ClayOPS' office at 6 Harper Road.
[{'position': 'Principal investigator for Clinical Data Hub (BII)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Job scope and responsibilities:': 'Heading the clinical data hub division consisting of 3 other laboratories..Lead own laboratory developing secure infrastructure for our clinical data analysis pipelines..Collaborate closely with clinicians and with faculties within the Bioinformatics Institute and within the local ecosystem.Collaborate with industrial partners to translate technologies into the clinics.Lead large research grant proposals (SGD10-20million quantum).', 'Requirements:': 'Strong records in leading research departments or research divisions in clinical data management and analysis.Outstanding research outcomes with strong publication records.Excellent communication (oral and written)\xa0and presentation\xa0skills.Strong records of strategic thinking ability and strong records of leading large research proposals.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-investigator-for-clinical-data-hub-bii-10097024?jobId=jobstreet-sg-job-10097024§ionRank=118&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Job scope and responsibilities:
[{'position': 'Data Analyst/ Data Scientist'}, {'company_name': 'Ng Teng Fong General Hospital'}, {'small_section': ['Jurong East', 'Posted on 27-Oct-22']}, {'The Opportunity': '', 'Responsibilities': 'Organise information and analytics use cases to support data and analytics related activities for the organisation.Apply technical expertise in quantitative analysis, data mining, predictive modelling, as well as the visualisation and presentation of data to derive insights that value-add to management decision making (e.g. hypothesis testing, validation of business cases, development of data products such as predictive models or Tableau dashboards etc).Support the development of metrics and dashboards to support decision-making.Create the Epic Cogito or Tableau dashboard.Work with frontline and backend staff to develop or streamline work processes for ease of access to organisation resources for data request, extraction, analysis and reporting to support operational needs..Partner with users from various teams to deliver advanced analytics solutions to solve business problems.', 'Requirements': 'Good Postgraduates/Bachelor Degree in Statistics, Mathematics, Business Analytics, or other relevant fields.Strong technical background and expertise in the areas of statistical analysis and modelling, data management and data visualisation (Proficiency in analytics software and data visualisation tools such as R and Tableau would be ideal).Excellent communication and interpersonal skills, able to work with diverse group of stakeholders.Self-motivated, ability to multitask and prioritize projects to meet deadlines.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '200910555Z', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '27 days', 'Industry': 'Healthcare / Medical'}, {'Company Overview': '\n\tJurongHealth Campus is a part of the National University Health System (NUHS) group, serving the community in the western region.\n\n\tJurongHealth Campus comprises the integrated 700-bed Ng Teng Fong General Hospital (NTFGH) and 400-bed Jurong Community Hospital (JCH) which were designed and built together from the ground up as an integrated development to complement each other for better patient care, greater efficiency and convenience. NTFGH and JCH were envisioned to transform the way healthcare is provided, and together with the National University Hospital, National University Polyclinics, Jurong Medical Centre, family clinics and community partners, to better integrate healthcare services and care processes for the community in the west.\n\nBe part of our exciting future. Transform the future of healthcare with us!'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-data-scientist-10056975?jobId=jobstreet-sg-job-10056975§ionRank=119&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
The Opportunity
[{'position': 'Data Analyst/Engineer'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['North-East', 'Posted on 4-Nov-22']}, {'Job Overview': '', 'Job Responsibilities': '', 'Requirements': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-engineer-10104659?jobId=jobstreet-sg-job-10104659§ionRank=120&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing'}]
Job Overview
[{'position': 'Sr. Executive, Data & Research'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': 'Liaise with stakeholders to obtain and integrate multiple data sources for analysis and reporting.Support data operations, including acquiring data, managing, updating and maintaining various datasets and databases.Perform data analysis and report findings in the form of reports, infographics and presentations.Conduct environment scans, literature search and collect relevant data related to entrepreneurship and innovation.Provide administrative and data support for special or ad-hoc projects..', 'Qualifications': 'A good Honours degree with grounding in quantitative techniques. Candidates with posgraduate qualifications are welcome..', '\xa0 Essential Knowledge:': 'Data literacy; strong grasp of descriptive and inferential data concepts.Basics of database structure and management.Familiarity with at least one statistical software such as SPSS or STATA.Data manipulation in spreadsheet software such as Excel.Database management and querying, programming language (eg. R, Python), Machine learning concepts, exposure to entrepreneurship and innovation concepts.', 'More Information': []}, {'Career Level': 'Senior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-executive-data-research-10110406?jobId=jobstreet-sg-job-10110406§ionRank=122&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Scientist (Quantitative Strategy) #WorkNow #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job overview:': '', 'What to expect:': 'Facilitate discussions with stakeholders to understand their business challenges, sharpen the business use cases and translate them into data science projects.Perform data cleaning, pre-processing, feature engineering, and build data science models to address the use case.Depending on the use case, design of dashboards and interactive visualizations as tools for data exploration and storytelling may be expected.Present findings, solicit feedback and prioritize refinements to the analysis in close iteration with stakeholders while managing overall project timeline.Communicate the data insights in a clear and compelling narrative, supported with impactful visuals, to influence key decision makers.Potentially deployed to another government agency for a sustained period of 2-3 years, to build up data science capabilities at the agency. This will involve formulating and implementing strategies to build strong pipeline of impactful projects at the agency and executing these projects.', 'How to succeed:': '', 'Specific criteria to succeed (other than those listed above):': 'Disciplines in Data Science, Computer Science, Statistics, Economics, Quantitative Social Science, or related degrees. We will also factor in relevant certifications (e.g. Coursera).Minimum 2 years of experience working in public sector or data science field.Knowledgeable in data science techniques and concepts, with sound understanding of their potentials and limitations when applied to business use cases.Training and relevant experience in one or more of the following areas:.Data science tools such as R, Python.Visual analytics tools like Tableau, Qlik.', 'Preferred (Additional requirements which are not necessary pre-requisites):': 'Experience in model deployment.Experience in project management.Experience in developing capability in others.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-quantitative-strategy-worknow-jobsthatmatter-10052859?jobId=jobstreet-sg-job-10052859§ionRank=123&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Job overview:
[{'position': 'Research Fellow - (Data Scientist-AI) #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Key Responsibilities:\xa0': 'Develop and implement ML algorithms and tools to build machine learning and analytics platform..Contribute in AI/ML projects from design, data processing, development, implementation, documentation, validation and optimization..Explore new technologies for data implementation AI adoption..Develop visualization, dashboards and report formats according to project requirements..Generating IP/Patents and publish high quality papers in journal and conferences.', 'Job Requirements:\xa0': 'PhD in electrical/electronics/computer engineering or related fields..Masters and Bachelors hers may apply and will be considered for suitable job grades.At least 2-5 of relevant experience with machine learning algorithms, platforms and APIs.Strong foundation in mathematics, as well as familiarity with signal analysis and estimation..Programming skills in Python, R, C++, and Matlab.Strong background in handling data and programming.Independent analytical problem-solving skills\xa0\xa0.Highly motivated, independent and able to work as a team.Willingness and ability to develop new skills.Good communication, interpersonal and critical skill..'}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-scientist-ai-worknow-10062905?jobId=jobstreet-sg-job-10062905§ionRank=124&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Assistant (Healthcare Artificial Intelligence and Data Analytics)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-healthcare-artificial-intelligence-and-data-analytics-10113320?jobId=jobstreet-sg-job-10113320§ionRank=125&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
[{'position': 'Data Analyst, Allied Health Division'}, {'company_name': 'Singapore General Hospital'}, {'small_section': ['Outram', 'Posted on 3-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '198703907Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '16 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Leave benefits, 42 hours'}, {'Company Overview': "\nSingapore General Hospital is Singapore's largest flagship tertiary hospital with an 10,000-strong multi-generation diversified workforce and a rich 190 years history. Every year, the SGH Campus caters to over 1 million patients, providing advanced medical care under its 36 clinical specialties.\nAs an academic hospital, SGH plays a key role in nurturing doctors, nurses and allied health professionals and is committed to innovative translational and clinical research to provide the best care and outcomes to patients.\nWe offer a challenging, family-friendly and conducive work environment with enormous scope and opportunities to meet your career aspirations, advancement and personal development.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-allied-health-division-10128341?jobId=jobstreet-sg-job-10128341§ionRank=126&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
[{'position': 'Global Big Data Arch'}, {'company_name': 'H WORLD HOLDINGS SINGAPORE PTE LTD'}, {'small_section': ['East', 'SGD\xa012,000 - SGD\xa016,800', 'Posted on 1-Nov-22']}, {}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201007917W', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '20 days', 'Industry': 'Hotel / Hospitality'}, {'Company Overview': 'Our Mission - Better Huazhu, Better LifeWe strive for continuous innovation and improvement as way to exceed our guests’ expectation. A better Huazhu is the one that delivers sustainable and superior shareholders’ values, mutually beneficial employee relationship, environmental stewardship and a responsive and symbiotic supply chain. A Better Life is a promise to our guests; your stay with us will be safe, clean, convenient, comfortable and value-for-money, these are the five basic promises.\xa0About Us:The China Lodging Group is one of the leading hotel operators in China.\xa0Established in 2005 and headquartered in Shanghai, we operate and manage nearly 4,000 hotels with 379,675 guest rooms across 382 cities around China.\xa0\xa0Our loyalty program, HUAZHU Rewards, with nearly100 million loyal members is amongst one of the highest in the industry, surpassing some of the industry leaders. With 19 brands and a vision for continuous growth, Huazhu is ready for global expansion.\xa0Our founder and Executive Chairman, Qi Ji, is also co-founder and former CEO of Home Inns, and co-founder, former CEO and President of CTRIP (renamed as Trip.com recently),\xa0a NASDAQ-listed, world’s Number 2 and China’s largest online service provider of travel services including accommodation reservation, transportation ticketing, packaged tours and corporate travel management.\xa0Our BrandsThrough aggressive growth, acquisition and strategic alliances, China Lodging Group now operates a wide range of hotel brands covering the full spectrum of the market from Upscale (Grand Mercure, VUE, Joya) to Midscale (Novotel, Mercure, Manxin, Ji, Crystal Orange, Orange Select, CitiGO, Starway, ibis Styles) and Economy (ibis, HanTing Plus, HanTing, Elan, Hi), meeting the needs from business to leisure travelers. HUAZHU Rewards, the industry leading loyalty program is also an efficient and user-friendly hotel booking platform that provides integrated applications such as accommodation, travel, shopping and other enhanced services to over 100 million members.In 2014, China Lodging Group entered into a strategic alliance with AccorHotels. Today the two companies have cross ownership in each other’s company and in 2016, China Lodging secured the master franchisee rights for Mercure, ibis and ibis Styles, and co-development rights for Grand Mercure and Novotel in the Greater-China region.'}, {'url': 'http://www.jobstreet.com.sg/en/job/global-big-data-arch-10073667?jobId=jobstreet-sg-job-10073667§ionRank=127&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
[{'position': 'VP, Private Wealth Data Analyst, Consumer Banking Group - (WD46262)'}, {'company_name': 'DBS Bank Limited'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Business Function': 'Deliver data work for driving incremental value for the wealth management franchise – accountable for financial outcomes..Identify, build,\xa0and deliver use cases based on the customer lifecycle management to drive business value..Drive continuous improvement through test and learn and experimentation to increase effectiveness of data driven engagement with our customers..Drive adoption of a data-driven operating model and control tower (dashboards) build out for key lines of business, to enhance the way we operate the business..Work with front office, business managers, product managers, and customer management teams to create data solutions, address business challenges and identify untapped opportunities..End-to-end data solutioning which includes translating\xa0business problems into data requirements, data discovery, and data processing to deliver outcomes..Excellent in storyboarding, strategical thinking, and presentation..Strong analytical skills, highly numerate, and proactive.Good interpersonal and communication skill, stakeholder engagement..With at least 3 years of relevant working experience, preferably with data management and analytics in the banking industry..Ph.d/Master Degree in Banking/Finance, Business, Mathematics/Statistics, Computer or related disciplines..Prior experience or exposure to private bank or wealth management domain..4-8 years’ experience in financial institution or top tier consulting..Experience in delivering cross-functional data projects to solve business problem and drive business outcomes..Good understanding of the data science production life cycle with demonstrable experience working with structured, semi-structured and unstructured data..Excellent software skills (Python, SQL, bash) and knowledge in design patterns and code optimization..Good grasp of Machine Learning models and concepts, their mathematical underpinnings, and trade-offs (model selection, tuning, problem formulation, drift, semi-supervised learning)..Experience using NLP techniques (NER, Sentiment Analysis, Topic Modelling, transformers)..Experience using machine learning frameworks (TensorFlow, Pytorch, Spark, Hydra)..Self-starter, good communication, and presentation skill..', 'Apply Now': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '196800306E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '26 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Business (e.g. Shirts)'}, {'Company Overview': '\n\tDBS is a leading financial services group in Asia, with over 280 branches across 18 markets. Headquartered and listed in Singapore, DBS has a growing presence in the three key Asian axes of growth: Greater China, Southeast Asia and South Asia. The bank\'s "AA-" and "Aa1" credit ratings are among the highest in the world.\n\t\n\t\tDBS is at the forefront of leveraging digital technology to shape the future of banking, and has been named “World’s Best Digital Bank” by Euromoney in 2016 and 2018. The bank has also been recognised for its leadership in the region, having been named “Asia’s Best Bank” by several publications including The Banker, Global Finance, IFR Asia and Euromoney since 2012. In addition, the bank has been named “Safest Bank in Asia” by Global Finance for nine consecutive years from 2009 to 2017.\n\n\t\tDBS provides a full range of services in consumer, SME and corporate banking. As a bank born and bred in Asia, DBS understands the intricacies of doing business in the region’s most dynamic markets. DBS is committed to building lasting relationships with customers, and positively impacting communities through supporting social enterprises, as it banks the Asian way. It has also established a SGD 50 million foundation to strengthen its corporate social responsibility efforts in Singapore and across Asia.\n\n\t\tWith its extensive network of operations in Asia and emphasis on engaging and empowering its staff, DBS presents exciting career opportunities. The bank acknowledges the passion, commitment and can-do spirit in all of its 26,000 staff, representing over 40 nationalities.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-private-wealth-data-analyst-consumer-banking-group-wd46262-10133529?jobId=jobstreet-sg-job-10133529§ionRank=128&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Business Function
[{'position': 'Data Engineer (ETL/E-commerce)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Ang Mo Kio', 'SGD\xa06,000 - SGD\xa09,000', 'Posted on 8-Nov-22']}, {'Data Engineer ': '', 'Key Responsibilities': 'Design and build data ingestion pipelines, maintaining optimal data pipeline architecture..Design the data warehouse schema, ensure scalability and clarity as new data sources are continuously ingested..Develop and automate ETL processes..Identify data patterns, transform large, complex and unstructured datasets to valuable insightful data for analytics initiatives..Implement data governance framework, driving the initiative over the design and implementation of data analytics projects..Own the data reliability and data accuracy to build relevant department trust in data to be more data driven..Ensure compliance of data management, access control, and usage with organization data governance policy..', 'Required Skill & Experience': '4+ years of data engineering working experience, with deep understanding of data modelling, data structures, data transformation, cloud computing, ETL pipelines..Expertise in SQL, data modeling, data warehouse structures are mandatory..Solid knowledge and experience of cloud services and data warehousing services (Snowflake, Azure, BigQuery) is highly valued..Strong programming fundamentals (Java, Scala, Python, R)..Analytical minded, agile working style..Experience with Power BI is a plus..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-etl-e-commerce-10144468?jobId=jobstreet-sg-job-10144468§ionRank=130&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Data Engineer
[{'position': 'Executive, Data Analytics Office (2-Year Contract)'}, {'company_name': "KK Women's & Children's Hospital"}, {'small_section': ['Bukit Timah', 'Posted on 3-Nov-22']}, {'Requirements': 'Recognised Degree (STEM) with 2 years’ relevant work experience preferred.Experienced in data programming languages such as Python, R programming and SQL preferred.Proficient in Microsoft office applications especially Microsoft Excel skills (pivot tables, macros) and visual basic is essential..Hands on analytical experience in data mining/simulation modelling, operations research & quantitative analysis such as forecasting and predictive analysis is essential..Prior experience in ETL (Extract, Transform, Load) and unstructured data management including dashboard development experience will be an advantage.Experience with data science techniques such as text analytics, data mining, clustering and machine learning will be an advantage.A team player with a positive attitude, meticulous and resourceful.Able to work independently and willing to learn.Experience in the healthcare industry is an advantage.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Others, Others', 'Registration No.': '52839081C', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '24 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Leave, 42hours', 'Specific Location': '100 Bukit Timah Road, Singapore 299899'}, {'Company Overview': 'KK Women’s and Children’s Hospital has evolved over the decades, since its founding in 1858, into a regional leader in Obstetrics, Gynaecology, Paediatrics and Neonatology. Today, the 830-bed hospital is a referral centre providing tertiary services to handle high-risk conditions in women and children. More than 400 specialists adopt a multi-disciplinary and holistic approach to treatment, and harness the latest innovations and technology for the best medical care possible.\n\nAs an academic healthcare institution, KKH believes that world-class clinical training and research are imperative in raising the standard of care. Hence, the Hospital has adopted a culture of innovation as it strives for world-class clinical leadership.\n\nAs we continually raise the bar on clinical excellence, we are sensitive to our patients’ needs for a pleasant hospital experience – one where they receive seamless service and enjoy the warmth of compassionate care in a healing environment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/executive-data-analytics-office-2-year-contract-10101613?jobId=jobstreet-sg-job-10101613§ionRank=131&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Requirements
[{'position': 'Assistant Vice President, eFinance (Business Intelligence / Data Analyst)'}, {'company_name': 'Frasers Property Limited'}, {'small_section': ['West', 'Posted on 4-Nov-22']}, {'ABOUT FRASERS PROPERTY': '', 'ABOUT THE ROLE\xa0': '', 'WHAT YOU WILL BE DOING\xa0': 'Understand the data mapping and transformations that would be involved for end-to-end data flows from raw data to final consumable layer in the database..Work with IT functions to secure and acquire data from relevant multiple data sources.Work closely with stakeholders to understand their needs/ pain points, to translate them into data analytics problems and to develop forward-thinking data driven analytics approaches and solutions.Responsible for designing and delivering analytical solutions including dashboards to tell the story of business trends, patterns, and outliers, to help the stakeholders and senior leadership team leverage on their internal data assets for strategic decision making. Hands-on development of data assets/models and visualizations is required.In addition to delivery of new projects, assist in support and enhancements of existing data projects and visualizations.Provide consultative support to stakeholders and senior management in understanding data trends, patterns, and insights on business and financial operations.Explore, test and recommend new technologies, tools and techniques that will overall improve data processing, enhance the analytics solution or produce effective and engaging visualization.Leverage tools for data analytics (e.g., SQL, R, python), visualization (e.g., Power BI, Tableau) and mapping to conduct analysis, produce charts/graphs and reports/slide decks in support of stakeholders’ engagements.Training end users on new reports and dashboards.Create and implement a framework for operational and financial productivity benchmarking across business units and within industry.Assist to execute departmental initiatives and roadmap items.', 'WHAT WE ARE LOOKING FOR\xa0': "Bachelor's degree in Business, Finance, Engineering, Computer Science, Statistics or related disciplines.Minimal 5 to 8 years in a Data Analysis function with a track record in working with various Business stakeholders and Finance functions.Strong data visualization skills. Experience in creating dashboard reporting in Tableau, Power BI or a similar visualization tool.Experience using relational databases and SQL for querying and extracting data and experience in scripting languages such as Python or R.Proven track record and practical experience with architecting, designing, and building / enhancing data models and solutions, and in the testing, reconciliation and providing design assurance to reporting / dashboard / analytics deliveries.Knowledge of Machine Learning, AI techniques is required.In-depth knowledge of SAP (data structure, tables, fields, and process) is highly recommended..Strong Interpersonal, communication and presentation skills, and experience clarifying and summarizing complex issues for C-levels and functional stakeholders\xa0.Problem solver: ability to evaluate and design creative solutions for various tasks in a timely manner.Self-Starter: ability to work independently and drive own projects.Hands-on, and open minded with can-do attitude.Meticulous, rigorous with detail, whilst having a clear appreciation of the big picture.Ability to navigate ambiguity and see work through to completion with minimal supervision.Have an eye for aesthetics and good user experience design.", 'Diversity brings us closer to the communities we serve': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, General/Cost Accounting', 'Registration No.': '196300440G', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Property / Real Estate', 'Benefits & Others': 'Dental, Education support, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\tFrasers Property Limited (“Frasers Property” and together with its subsidiaries, the “Frasers Property Group” or the “Group”), is a multi-national developer-owner-operator of real estate products and services across the property value chain.\xa0 Listed on the Main Board of the Singapore Exchange Securities Trading Limited (“SGX-ST”) and headquartered in Singapore, the Group has total assets of approximately S$40.3 billion as at 30 September 2021.\xa0\n\n\n\tFrasers Property's multi-national businesses operate across five asset classes, namely, residential, retail, commercial & business parks, industrial & logistics as well as hospitality. The Group has businesses in Southeast Asia, Australia, Europe and China, and its well-established hospitality business owns and/or operates serviced apartments and hotels in over 70 cities and 20 countries across Asia, Australia, Europe, the Middle East and Africa.\xa0\n\n\n\tFrasers Property is also the sponsor of two real estate investment trusts (“REITs”) and one stapled trust listed on the SGX-ST. Frasers Centrepoint Trust and Frasers Logistics & Commercial Trust are focused on retail, and industrial & commercial properties, respectively. Frasers Hospitality Trust (comprising Frasers Hospitality Real Estate Investment Trust and Frasers Hospitality Business Trust) is a stapled trust focused on hospitality properties. In addition, the Group has two REITs listed on the Stock Exchange of Thailand. Frasers Property (Thailand) Public Company Limited is the sponsor of Frasers Property Thailand Industrial Freehold & Leasehold REIT, which is focused on industrial & logistics properties in Thailand, and Golden Ventures Leasehold Real Estate Investment Trust, which is focused on commercial properties.\n\n\n\tThe Group is committed to inspiring experiences and creating places for good for its stakeholders. By acting progressively, producing and consuming responsibly, and focusing on its people, Frasers Property aspires to raise sustainability ideals across its value chain, and build a more resilient business. It is committed to be a net-zero carbon corporation by 2050. Building on its heritage as well as leveraging its knowledge and capabilities, the Group aims to create lasting shared value for its people, the businesses and communities it serves. Frasers Property believes in the diversity of its people and are invested in promoting a progressive, collaborative and respectful culture."}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-vice-president-efinance-business-intelligence-data-analyst-10043761?jobId=jobstreet-sg-job-10043761§ionRank=132&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
ABOUT FRASERS PROPERTY
[{'position': 'Senior Data Analyst, Advisory'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Responsibility': 'Ability to perform identification, analysis,\xa0and\xa0interpretation of trends\xa0or\xa0patterns in complex data sets..Translate analytical insights into clear recommendations\xa0and\xa0effectively communicate them to technical\xa0and\xa0non-technical stakeholders..Master in data storytelling\xa0and\xa0strategic thinking..Solid\xa0working\xa0experience in Tableau\xa0and\xa0development best practices, performance optimization, data join\xa0and\xa0blend,\xa0and\xa0design..Proficient in .NET technologies is an added advantage..', 'Database Skillset': 'SQL Server database design\xa0and\xa0development, including database views, stored procedures on MSSQL server platform.\xa0.Deep understanding of dimensional modelling and scaling ELT pipelines.\xa0.Proven ability to write complex freehand SQL including sub-queries, nested queries, CTE queries and CTE update.\xa0.Proficient in handling subtleties of Joins.\xa0.Versatile in SQL generic aggregation, windows aggregation\xa0and\xa0moving-windows aggregation functions.\xa0.Experience\xa0working\xa0on query optimization.\xa0.', 'Qualifications': 'Minimum Bachelor’s\xa0degree\xa0required in Computer Science, Computer Engineering,\xa0or\xa0similar field of study..Proficiency in SQL demonstrated through projects\xa0or\xa0work\xa0experience..Experience in data visualization such as Tableau\xa0and\xa0Power BI is preferred..Knowledge in Supply Chain\xa0and\xa0Aviation sectors is a plus.\xa0.Strong\xa0problem solving skills\xa0and\xa0users/customers oriented..Location: Seletar.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-analyst-advisory-10140747?jobId=jobstreet-sg-job-10140747§ionRank=133&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Responsibility
[{'position': 'Platforms Engineer (MLOps) for AI Singapore'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': '', 'Duties & Responsibilities': "Evaluate, architect, setup, and maintain platform & tooling stack for empowering AISG engineers in carrying out their roles & responsibilities..Mentor AISG apprentices and assist whenever needed in developing end-to-end MLOps workflows to facilitate the AI lifecycle in ensuring that solutions are delivered efficiently and sustainably..Act as an intermediary between the Platforms Team and AI project teams..Assisting the InfraOps team in building and maintaining production infrastructure to be resilient, secure, and high-performing..Implement infrastructure as code (IaC) processes to automate our systems' configuration, provisioning, deployment, and monitoring..Collaborate with AISG's partners to design, implement, and deploy new systems and improvements to existing systems..Document and troubleshoot issues arising from our systems when they occur..Develop tools and software that improves and automates infrastructure provisioning..Propose and drive technical decisions to completion for the aforementioned responsibilities, including documentation..", 'Qualifications': 'Excellent communication skills, including thoughtful listening skills and the ability to express complex ideas clearly and succinctly..The ability to reason about engineering issues holistically using engineering fundamentals and knowledge about architecture..A systematic approach to development and engineering, such as debugging, DevOps and MLOps practices, and agile software development..Have held at least one engineering or infrastructure position for a minimum of 2 years..Proficient in at least one commonly used programming language, such as Python, Ruby, Go, Rust, Javascript, Java, C#, etc. Proficiency in Python would be preferred..Proficient in administering Linux systems..Basic proficiency and understanding of machine learning concepts including data analysis, predictive modelling and model evaluation..Proficiency in at least one automation tool (Ansible, Chef, Puppet, Bash, PowerShell, etc.)..Familiarity with virtualisation technologies (KVM, VMWare, etc.)..Familiarity with the container and container orchestration technologies (Docker, rkt, Singularity, Kubernetes, Docker Swarm, Helm, etc.)..Familiarity with public cloud providers such as AWS, Microsoft Azure, Google Cloud Platform.Experience with deployment of applications on cloud or distributed systems..An aptitude for automated system design and implementation (automated deployments and automated testing).We will also consider folks with AICE Associate certification and above who exhibit aptitude and potential for the above skills despite a lack of experience..', 'Covid-19 Message': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/platforms-engineer-mlops-for-ai-singapore-10110313?jobId=jobstreet-sg-job-10110313§ionRank=134&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Scientist, Quantitative Strategy #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'How do we work:\xa0': '', 'Outcome Driven ': '', 'Start Small and Move Fast': '', 'Ownership': '', 'Continuous Learning': '', 'We are in this Together': '', 'Job Overview': '', 'What you will be working on:': 'Facilitate discussions with stakeholders to understand their business challenges, sharpen the business use cases and translate them into data science projects..Perform data cleaning, pre-processing, feature engineering, and build data science models to address the use case..Present findings, solicit feedback and prioritize refinements to the analysis in close iteration with stakeholders while managing overall project timeline..Communicate the data insights in a clear and compelling narrative, supported with impactful visuals, to influence key decision makers..Depending on the use case, design of dashboards and interactive visualizations as tools for data exploration and storytelling may be expected..Opportunities to be deployed to another government agency as the core data science team for a sustained period of 2-3 years, to build up data science capabilities at the agency. This will involve formulating and implementing strategies to build strong pipeline of impactful projects at the agency and executing these projects..', 'What we are looking for:': "A Bachelor's Degree or higher in Data Science, Computer Science, Statistics, Economics, Quantitative Social Science, or related disciplines. We will also factor in relevant certifications (e.g., Coursera)..At least 2 years of relevant experience, in data science and/or public sector..Capable of translating business use cases into analytical problems, and identifying appropriate data sources to tackle these problems..Proficient in writing scripts for data preparation and analysis, using modern analysis tools & programming methodologies..Proficient cleaning, imputing and correcting anomalies in the collected structured or unstructured data to ensure a high standard of quality in data sets to be used in the analysis work..Proficient in exploring and analyzing datasets, applying probability and statistical methodologies and techniques to discover insights from the data..Proficient in building machine learning models to identify, recognize patterns and make predictions..Proficient in design principles and use of visualizations to best convey the intended information..Capable of developing data visualization from standalone graphs and charts on to highly customized tools and apps while tightly integrated to the data systems for real time visualization of information..Capable of translating results from analysis work into actionable recommendations for stakeholders..Capable of communicating results from analysis work in a coherent data story for stakeholders..", 'Preferred requirements:': 'Experience in model deployment\xa0.Experience in stakeholder management\xa0.Experience in agile project management\xa0.Experience in developing capability in others.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-quantitative-strategy-jobsthatmatter-10052795?jobId=jobstreet-sg-job-10052795§ionRank=135&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
How do we work:
[{'position': 'Research Associate/Research Fellow (Data Scientist)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Description': 'Acquisition, management and curation of clinical and research data within the NUHS environment according to the relevant ethical and security standards.Development of new concepts and algorithms in data science, machine learning, and artificial intelligence.Contribution to data analysis, reporting and publication of ongoing and new projects using state-of-the-art methods as appropriate to the data and study design..Contribution to the preparation of research studies, grant proposals, ethics applications, manuscripts, and oral presentations as led by other team members.Contribution to the management of research activities including team coordination, mentoring/training of researchers and clinicians in data science and statistics, conducting research workshops and seminars.Oversight and coordination of data science and biostatistics support staff, and potentially of students.Up-to-date knowledge of current and emerging trends in data science.Membership of the DFM research committee.', 'Qualifications': 'Processing and analyzing large datasets.Data wrangling & data visualization.Big Data analysis.Machine learning.Proficiency in JavaScript, Python, or other relevant programming languages.Proficiency in the use of data analysis environments (R, Matlab).Excellent organisation, coordination, and problem-solving skills.Excellent time management skills and ability to prioritise projects with focus on quality and timely delivery of work.Excellent interpersonal and communication skills; team spirit.', 'More Information': []}, {'Career Level': 'Entry Level', 'Qualification': "Master's Degree", 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-research-fellow-data-scientist-10058725?jobId=jobstreet-sg-job-10058725§ionRank=136&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Assistant Head / Senior Officer (Data Engineering)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Job Responsibilities': 'Setup and manage the data infrastructure for optimal extraction, transformation, and loading of data from a wide variety of data sources..Operationalize the ETL (Extract-Transform-Load) data pipelines and ensuring performance and scalability for ingesting and processing data from multiple sources..Support data quality through data profiling and data cleansing with the data owners..Perform data transformation and creation of data mart/stores for effective data governance, cataloguing and sharing..Work with and assist stakeholders, including Data Stewards and Data Scientist, on discovering and preparing the right data sets, support their data infrastructure needs and other data-related issues..Responsible for providing the operational support and maintenance of the data & analytics infrastructure platform and system..', 'Job Requirements': 'Degree in computer science, information technology, business analytics, data science and artificial intelligence, software/computer engineering or relevant disciplines..Possess at least 2 years of experience working in data pipeline, data ingestion, data integrations, data quality/cleansing, ETL, data catalogue and data warehousing..Good hands-on in scripting and SQL languages, and knowledge in data modelling..Experience in using data management and data warehousing tools such as Snowflake, Denodo and Azure Cloud Data Services etc will be an added advantage..Hands on experience or knowledge of cloud infrastructures such as MS Azure, AWS and GCP.Excellent problem solving and troubleshooting skills..Possess good analytical, logical and ability to multi-task in a fast-paced environment..Excellent engagement & inter-personal skills to build and maintain strong and effective working relationships with stakeholders and partners..Excellent oral and written communication skills..Entry level who are keen in data engineering are also welcomed to apply..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-head-senior-officer-data-engineering-10097000?jobId=jobstreet-sg-job-10097000§ionRank=137&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Analyst (Clinical Governance & Quality)'}, {'company_name': 'Singapore General Hospital'}, {'small_section': ['Outram', 'Posted on 3-Nov-22']}, {'Requirement': 'Degree in Data Science/ Computer Science/ Mathematics/ Statistics/ Economics/ Health Informatics or related disciplines.Strong critical thinking and analytical skills, problem solving skills and attention to details.Proficient in programming languages (R, Python, Visual Basic, SQL and/or XML).Proficient in data analysis tools (SPSS, Microsoft Excel).Proficient in data visualisation tools (Tableau, Qlik, Power BI.Good communication (written and spoken) and presentation skills.Good team player.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Admin/Human Resources, Clerical/Administrative Support', 'Registration No.': '198703907Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '16 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Leave benefits, 42 hours'}, {'Company Overview': "\nSingapore General Hospital is Singapore's largest flagship tertiary hospital with an 10,000-strong multi-generation diversified workforce and a rich 190 years history. Every year, the SGH Campus caters to over 1 million patients, providing advanced medical care under its 36 clinical specialties.\nAs an academic hospital, SGH plays a key role in nurturing doctors, nurses and allied health professionals and is committed to innovative translational and clinical research to provide the best care and outcomes to patients.\nWe offer a challenging, family-friendly and conducive work environment with enormous scope and opportunities to meet your career aspirations, advancement and personal development.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-clinical-governance-quality-10128337?jobId=jobstreet-sg-job-10128337§ionRank=138&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Requirement
[{'position': 'Senior/ Epidemiologist, DCE - (2180BR)'}, {'company_name': 'Tan Tock Seng Hospital'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Healthcare, Practitioner/Medical Asst', 'Registration No.': '199003683N', 'Company Size': 'More than 5000 Employees', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Uniform/ Office Attire, Depending on Job Position'}, {'Company Overview': '\n\tTTSH is one of Singapore’s largest multi-disciplinary hospitals with more than 174 years of pioneering medical care and development. The hospital has 45 clinical and allied health departments, 16 specialist centres. It also has three institutes that are spearheading care, research and innovations in geriatric medicine, infectious diseases and ophthalmology. Powered by more than 8,000 healthcare staff, TTSH sees over 2,500 patients at its specialist clinics and some 460 patients at its emergency department every day. TTSH is part of the National Healthcare Group, providing holistic and integrated patient care.\xa0 With a strong quality culture steeped in patient safety, TTSH constantly challenges itself to provide faster, better, cheaper and safer care for patients. To achieve this, the hospital keeps abreast and believes in investing in its staff, facilities, medical technology and system improvements.\n\n\n\tMore information is available at www.ttshhr.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-epidemiologist-dce-2180br-10139235?jobId=jobstreet-sg-job-10139235§ionRank=139&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
[{'position': 'Solutions Architect (Data Analytics / Artificial Intelligence)'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Responsibilities:': 'Analyses, designs and develops digitalisation roadmaps and implementation plans based on a current versus future state solutions architecture.Analyses the current architecture to identify weaknesses and identifies opportunities for improvement, and performs ongoing architecture quality review activities..Leads and facilitates the solutions architecture governance processes by aligning to the enterprise architecture and manages exceptions to architectural standards at a solutions level.Assesses near-term needs to establish business priorities, analyses and develop solutions architectural requirements, and ensures alignment of architectural requirements with the IT strategy..Work with customers to identify, design and develop AI/ML solutions to address their requirements, challenges and pain points..Engage solution vendors to determine appropriate products that will meet customer DA/AI requirements.Support data analytics solutions response to RFQ and tenders, proposal development and provide post-sales support..Lead and guide project team to develop and implement the solution.Exercise and continually develop leadership, management and technical skills.', 'Requirements:': 'Bachelor’s degree in Data Science, Artificial Intelligence, Computer Science, Engineering or related disciplines..Strong technical knowledge in software architecture, have breadth across technology stacks with deep hands on skills, and passionate about working with customers to help build applications at scale..Knowledge of Continuous Integration/Continuous Delivery environment with change/version control process and methodologies..Knowledge of networking, computing platform, storage, database, security, middleware, network and systems management, and related infrastructure technologies and practices..Experience in designing and building DA/AI solutions (eg cloud native, microservices architecture using containers/Kubernetes), integrated with machine learning pipeline..Experience in all stages of the project lifecycle, e.g. planning, requirements gathering, design documentation, testing, rollout and transition to Ops..Experience in technical presentation, technical documentation..Experience in delivering projects for the defence sector will be a plus..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/solutions-architect-data-analytics-artificial-intelligence-10140456?jobId=jobstreet-sg-job-10140456§ionRank=140&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Engineer (NLP research for ML and AI automation)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-nlp-research-for-ml-and-ai-automation-10115247?jobId=jobstreet-sg-job-10115247§ionRank=141&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
[{'position': 'Supply Chain Data Scientist'}, {'company_name': 'Infineon Technologies'}, {'small_section': ['Kallang', 'Posted on 26-Oct-22']}, {'Part of your life. Part of tomorrow.': '', 'Act as an analytics translator': '', 'prepare for complex data analysis': '', 'models ': '', 'Facilitate interactive design sessions': '', 'optimize visualization experiences': '', 'Support supply chain in the creation of analytical solutions': '', 'formulate problem/opportunity statements': '', 'enable effective delivery': '', ' improve AI solutions efficiency and effectiveness': '', 'Stay up to date': '', 'incorporate the most feasible practices': '', 'more than 2 years ': '', 'Business Analyst ': '', ' SAP Predictive Analytics, revenue ': '', 'supply chain (S&OP, ERP) databases': '', 'Data Visualization, Tableau': '', 'SQL/Access databases': '', 'SAP Business Objects/Intelligence': '', 'Python ': '', 'JavaScript, C': '', 'C#, Java': '', 'Artificial Intelligence ': '', '(Python, R': '', ' Semiconductor process ': '', 'Strong analytical skills': 'Strong communication and presentation skills.'}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197000667M', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Semiconductor/Wafer Fabrication', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Kallang'}, {'Company Overview': '\n\n\t\tSociety currently faces a number of daunting challenges. The world’s population is growing rapidly, more and more megacities are forming and demand for energy continues to spiral across the globe. In addition, the rising need for climate protection calls for new approaches to energy consumption in many areas of everyday life.\n\nInfineon Technologies AG offers semiconductor and system solutions addressing three central challenges to modern society: energy efficiency, mobility, and security. In the 2014 fiscal year (ending September 30), the company reported revenues of 4.32 billion euros with approximately 29,800 employees worldwide. In January 2015, Infineon acquired US-based International Rectifier Corporation, a leading provider of power management technology, with revenues of USD 1.1 billion (fiscal year 2014 ending June 29) and approximately 4,200 employees.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/supply-chain-data-scientist-10053871?jobId=jobstreet-sg-job-10053871§ionRank=142&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Part of your life. Part of tomorrow.
[{'position': 'POS Analyst (Data cleansing, Analytic, North East, Junior level)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Ang Mo Kio', 'SGD\xa03,500 - SGD\xa05,000', 'Posted on 4-Nov-22']}, {'Salary up to $5000': '', 'Location: Ang Mo Kio': '', 'Job Summary:': 'Consolidate, harmonize & condition POS from multiple sources & retailers..Deploy ETL & automation for harmonization: prepare POS using Python & MS Excel..Maintaining & updating weekly & monthly POS at region & country level.Update existing dashboard & PBIs.Develop new PBI dashboards as per business needs.Deliver insights from multiple POS data: sell-in, distributor sell-out, & retailer sell-out.Deliver concise reports for your manager, stakeholders, and senior leaders.Support in campaign & NPI POS tracking.Other responsibilities: 20%.', 'Other responsibilities: 20%': 'Manage budget tracking dashboard for APAC.Manage new PO raising & monitoring for SG team on SAP.', 'Qualifications:': 'Minimum Bachelor’s degree in Computer Science/Business Administration /Mathematics /Statistics/Data Analytics Science or equivalent; MBA or Data analytics related Master’s degree is preferred.Minimum 1 yrs experience with Power BI is a must..1+ years directly related experience in delivering POS analytics for a CPG/FMCG organization (client or agency side) is preferred.Experience in POS data handling – ETL, conditioning & harmonization will be given preference..Asia Pacific/Asia/SEA experience preferred.Experience working in an agile environment..Fluent in English (verbal & written)..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/pos-analyst-data-cleansing-analytic-north-east-junior-level-10133814?jobId=jobstreet-sg-job-10133814§ionRank=143&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Salary up to $5000
[{'position': 'Senior Data Analyst , Marketing Analytics'}, {'company_name': 'Marina Bay Sands Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'JOB SCOPE': 'Create meaningful reports to track business performance, aligning to the business objectives.Forecast business KPIs for each business unit and track pacing of delivery against targets.Automate reporting into dashboards for management and key stakeholders based on each department’s objectives.Conduct ongoing data analysis to identify opportunities for driving business success.Analyze the results and effectiveness of marketing campaigns to deliver actionable insights and recommendations.Conduct deep-dive analysis to understand customer behaviors across all digital platforms including website, mobile, search, display, social media and email.Analyze audience performance data throughout the customer journey across the marketing tech stack including Customer Data Platform (CDP) such as Tealium, marketing channels, DMP etc. to improve relationship with our customers through better targeting and messaging (optimization of the customer journey).Collaborate with performance marketing team to optimize conversion rates and KPIs through data analysis across channels (media, website, mobile etc.), user journeys, conversion funnels, campaigns etc..Execute overall data strategy covering multiple data sources including 1st, 2nd and 3rd party data to ensure optimal collection and connection of all data points to drive richer analysis and better insights.Support marketing teams on campaign and business analysis to uncover actionable insights to be included into business strategies across all key markets and to our target audience.Assist in establishing measurement framework and KPIs for all campaigns and digital initiatives.Employ advance measurement and analytics techniques where necessary to uncover deeper insights for driving the business forward.Assist in conducting analysis sharing sessions with stakeholders to deliver meaningful findings to spark strategic conversations.Create impactful presentations for management team to drive marketing strategies.Contribute to business meetings with data findings and relevant insights.Participate actively in multi-touch attribution and marketing mix modelling projects (in conjunction with data science agency) to drive decisions on channel and spend optimization through understanding of brand and tactical campaigns impact on conversions.', 'JOB REQUIREMENTS': 'Bachelor’s Degree in related field (eg. Marketing, Economics, Statistics, Mathematics).Minimum 5 years in an analytics role driving performance and delivering strong business results\xa0.Strong analytical skills with the ability to deliver actionable recommendations through data analysis to influence business decisions and strategies.Ability to troubleshoot and problem solve in a fast-paced environment.Ability to interpret business performance requirements to identify types of data extract and analysis.Well organized and proactive with excellent attention to detail.Proactive in leading analysis and troubleshoot data anomalies.Take ownership of all data projects and see them through to completion.Ability to prioritize and deliver tasks and projects on time.Possess a curious mind to want to investigate and constantly ask “why” and provide data driven answers.Passion for number crunching and logical problem solving.Experience working with BI tools such as Tableau/PowerBI/DataStudio.Strong Microsoft Excel skills - advanced formulas, pivot tables, ability to manipulate and prep large datasets, [macros a plus] etc..Good Powerpoint skills (insightful data presentations, story-telling to bring analysis to life).Possess good communication skills (verbal and written).Fluent in writing and speaking English.Experience reporting with Web Analytics Tools a plus (Google Analytics, Adobe Analytics, Tealium).Experience in eCommerce or digital marketing a plus.Experience with statistical analysis and modelling to drive better measurement a plus.Experience orchestrating and running analysis within data warehouse a plus.Experience with predictive analytics through machine learning a plus.Experience with Python programming language/R statistical programming language a plus.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '200507292R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '1 day', 'Industry': 'Hotel / Hospitality'}, {'Company Overview': '\n\n\t\tMarina Bay Sands® is Asia’s leading destination for business, leisure and entertainment delivering once-in-a-lifetime experiences. The landmark building is situated in the heart of Singapore’s Central Business District and transforms Singapore’s skyline and the country’s tourism landscape.\n\n\n\t\tThe destination offers a luxury hotel, state-of-the art convention and exhibition facilities, theaters, world-class entertainment and the best shopping and dining in the region. The three hotel towers are crowned by the Sands SkyPark® on the 57th story.\xa0\n\n\nProduct & Services\n\n\n\t\tConveniently located in the heart of the Central Business District and 20 minutes from Changi Airport.\n\n\n\t\t• Hotel: The Marina Bay Sands hotel has three 55-story towers with 2,561 luxury rooms and suites. The three towers are capped by the Sands SkyPark, which offers 360-degree views of Singapore’s skyline. It is home to restaurants, lush gardens, an infinity edged swimming pool and the world’s largest public cantilever housing an observation deck.\n\n\n\t\t• Expo and Conventions: The Sands Expo and Convention Center has 1.3 million square feet of flexible convention and exhibition space. It can host over 45,000 delegates, 2,000 exhibition booths and 250 meeting rooms. It features Southeast Asia’s biggest ballroom, which can accommodate 6,600 people for a banquet, and up to 11,000 for an auditorium-style lecture.\n\n\n\t\t• Shopping: The Shoppes at Marina Bay Sands has 800,000 square feet of retail and dining space. Luxury retailers include Bally, Cartier, CHANEL, Ferragamo, Franck Muller, Gucci, Hermès, Hublot, Hugo Boss, Louis Vuitton, Miu Miu, Omega, Patek Philippe, Prada, Tiffany & Co. and Yves Saint Laurent. New brands include Anne Fontaine, Henry Cotton’s, Leviev, Marisfrolg, Moiselle, Rabeanco, Stefano Ricci, and Wolford.\n\n\n\t\t• Restaurants: Dining at Marina Bay Sands is a gourmet experience with over 50 dining choices. These include celebrity-chef restaurants helmed by Mario Batali, (New York), Daniel Boulud (New York), Wolfgang Puck (Los Angeles), Guy Savoy (Paris), Tetsuya Wakuda (Sydney) and Justin Quek (Singapore).\xa0Marina Bay Sands features signature restaurants, modern bistros and a premium food court.\n\n\n\t\t• Entertainment: Marina Bay Sands energizes the entertainment and nightlife scene in Singapore with nightclubs, world-class entertainment, a museum and a casino.\xa0The museum, which has a lotus-inspired design, will feature blockbuster exhibitions from around the world.\xa0Two state-of-the-art theaters will open with a total of about 4,000 seats. The Broadway hit The Lion King will debut in Sands Theater, with Le Theater presenting shorter-run shows such as concerts, award ceremonies and gala events.\xa0The outdoor event plaza along the promenade next to Marina Bay will host audiences for watching events on the bay or on the plaza.\xa0\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-analyst-marketing-analytics-10074526?jobId=jobstreet-sg-job-10074526§ionRank=144&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
JOB SCOPE
[{'position': 'Data Analytics'}, {'company_name': 'ST Engineering Aerospace Ltd'}, {'small_section': ['Paya Lebar', 'Posted on 28-Oct-22']}, {'Job Description': 'Perform data analytics engineering and development on unmanned air systems (UAS) and their sub-systems..Develop web-based dashboards to show results of machine learning (ML) modules..Develop ML modules and applications according to system requirements..Develop and maintain interfaces between ground control systems and machine learning models..Train and re-train ML models when necessary.Manage and train data/image annotators..Work with other members in Data Analytics group (DAG) to support projects..Maintain and update related technical documentation..', 'Requirements': "Bachelor's Degree in Computer Engineering or related technical discipline..Experience in software development using C#, C++ and/or Python..Knowledge in deep learning frameworks such as Tensorflow, PyTorch, Mxnet, Scikit-learn, Numpy, Pandas, TensorRT, IntelOpenVino..Strong problem solving, analytical and conceptual skills, with good communication skills..A good team player who is able to work independently with minimum guidance and monitoring..Preferable:.Experience in embedded platforms (e.g. Nvidia Jetson, Intel UP Squared).Experience using MLOps and ML lifecycle management platforms such as MLFlow, KubeFlow, AirFlow..Experience using Docker..Experience in software packaging, deployment, UAT, and production..Experience in MathLab..Experience in Linux-based operating systems such as Ubuntu or RedHat.\u200b\u200b\u200b\u200b\u200b\u200b\u200b."}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198105870H', 'Company Size': '501 - 1000 Employees', 'Industry': 'Aerospace / Aviation / Airline', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Airport Road'}, {'Company Overview': '\n\tBacked by 40 years of experience and track record in the global aviation industry, we provide integrated nose-to-tail services and solutions through a global network of facilities and affiliates in the U.S., Asia Pacific and Europe.\n\t\n\t\n\t\tWith proven solutions for practically every stage of an aircraft life cycle, our solutions range from design and engineering, original equipment manufacturing, aftermarket and maintenance services, assets management and leasing, to giving ageing aircraft a new lease of life through passenger-to-freighter conversion or refurbishment. We are the only freighter conversion house using original OEM engineering data on both Boeing and Airbus platforms.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-10063009?jobId=jobstreet-sg-job-10063009§ionRank=145&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Engineer (1 Year Contract)'}, {'company_name': 'Thales Solutions Asia Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted 23 hours ago']}, {}, {'Career Level': 'Entry Level', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '199306768W', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Parking, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\nThales Group\n\tEverywhere it matters, Thales is there. In all its markets — aerospace, space, ground transportation, defence and security, and digital security\xa0 — our solutions help customers to make the right decisions at the right time and act accordingly.\n\n\tThe combined expertise of our 80,000 employees, world-class technology, and operations in 68 countries have made Thales a key player in keeping the public safe and secure, guarding vital infrastructure and protecting the national security interests of countries around the globe.\n\nThales Solutions Asia\n\tThales people architect solutions that enable two-thirds of planes to take off and land safely. We create in-flight entertainment systems that engross 50 million fliers every year and we develop the avionics that control the world’s largest commercial aircrafts. Our simulators train the next generation of pilots for fighter jets, transporters and search and rescue helicopters. And, together, each and every member of our aerospace team makes a difference.\n\n\tThales established its presence in Singapore in 1973 to support the expansion of aerospace-related activities in the Asia-Pacific region. Throughout the last four decades, the company grew from strength to strength and is today involved in the primary businesses of Aerospace (including Air Traffic Management), Defence & Security, Ground Transportation and Digital Identity & Security. Thales today employs over 2,100 people in Singapore across all its business areas.\n\nAward\n\tBest Staff Referral Programme (Silver) at Asia Recruitment Awards 2017'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-1-year-contract-10145740?jobId=jobstreet-sg-job-10145740§ionRank=146&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
[{'position': 'Vice President, Data Scientist, Big Data Analytics Centre, Data Management Office'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'About UOB': '', 'About the Department': '', 'Data Management Office and Big Data Analytics': '', 'Data Management Office (DMO)': '', ' Big Data Analytics Centre (BDAC': '', 'Job Responsibilities': 'Design analytical solutions/experiments to solve various strategic business problems through engagement and research..Building and deploying Machine Learning Algorithms, Advanced Analytics, and Data Visualization across the UOB group and region..Support the Enterprise Data Architecture and Governance Program in developing and transforming the Analytics Capabilities across the group..Partnering with assigned teams and/or business units to provide deep expertise and advisory on advanced data analytics needs..Strong knowledge of data and analytics architecture to ensure analytics objectives are aligned to business priorities on the Data Analytics Transformation Program..Drive Innovation initiatives under CDO guidance and directives..', 'Job Requirements': 'Min Bachelor/Postgraduate in Statistics, Mathematics, Engineering , Computer Science or a related field..Min 5 years advanced analytics working experience in banking / financial services / consulting industry. Possess a strong selection of skills and experience with analytical frameworks and languages such as SQL, R, Python, Spark, Hive and other Hadoop-based languages..Possess a strong ability to query and use large, robust data sets across traditional Data Warehouse and Hadoop platforms..An analytical mind and team player with demonstrated ability to build strong partnerships by applying quantitative techniques to solve business problems..A strong communicator, with clear articulation of analytical findings through presentations..Experience with data visualization packages and/or tools will be a plus..Innovative and Agile thinking – experience with Test and Learn Frameworks desirable..', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vice-president-data-scientist-big-data-analytics-centre-data-management-office-10060623?jobId=jobstreet-sg-job-10060623§ionRank=147&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Executive, - Data & Research'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': 'Support administration of surveys, including executing survey fieldwork, verifying and cleaning survey data, post-survey administration.Support data operations, including acquiring data, managing, updating and maintaining various datasets and databases.Perform data analysis and report findings in the form of reports, infographics and presentations.Conduct environment scans, literature search and collect relevant data related to entrepreneurship and innovation.Provide administrative and data support for special or ad-hoc projects..', 'Qualifications': 'A good Honours degree with grounding in quantitative techniques. Candidates with posgraduate qualifications in these fields are welcome..', 'Essential Knowledge:': 'Data literacy; strong grasp of descriptive and inferential data concepts.Familiarity with at least one statistical software such as SPSS or STATA; data manipulation in spreadsheet software such as Excel.Basic survey design on platforms such as Google Forms and Qualtrics.', 'Additional Knowledge and Skills would be an advantage:': 'Data modeling, Data visualisation, Machine Learning concepts, exposure to entrepreneurship and innovation concepts.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/executive-data-research-10110359?jobId=jobstreet-sg-job-10110359§ionRank=148&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'PERFORMANCE PATHWAYS SCIENTIST'}, {'company_name': 'National Youth Sports Institute'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Requirements': 'A degree in Sport Science or related field.A postgraduate qualification in Physiology, Strength and Conditioning or related field is an advantage.Certified by the Australian Strength and Conditioning Association (ASCA), National Strength and Conditioning Association (NSCA) or similar.Experience utilising a variety of sport science technologies and athlete management systems.Exposure to working in a talent development environment catering to a youth population.Breadth of knowledge and/or certification in other Sport Science disciplines\xa0\xa0.Understanding of data analysis and/or statistics packages (e.g. SPSS, MATLAB, R, Python etc.).Have a passion for sport with active involvement either as an athlete, coach or volunteer.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '26 days', 'Industry': 'Education'}, {'Company Overview': 'National Youth Sports Institute (NYSI) is a central resource, expertise and management body, placed to understand the needs of high performing student-athletes across sports and to address evolving challenges in the sports ecosystem.\nNYSI will propagate tested systems, processes and best practices to the wider youth sports excellence ecosystem in Singapore to aid aspiring talented student-athletes in achieving sporting breakthroughs and win glory for Singapore.'}, {'url': 'http://www.jobstreet.com.sg/en/job/performance-pathways-scientist-10144396?jobId=jobstreet-sg-job-10144396§ionRank=149&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Requirements
[{'position': 'Social and Behavioural Scientist - #JobsThatMatter'}, {'company_name': 'DSO National Laboratories'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Social and Behavioural Scientist': '', 'In this role, you will:': 'Be part of a research team that conducts research to sense-make behaviours.Observe and interpret human behaviour at various levels-of-analysis: individual cognition and decision making; small group dynamics; and macro-level social relationships.Develop coding frameworks and metrics to analyse data and derive insights on human behaviour and motivation.Design and administer questionnaires and conduct observational studies, interviews and focus groups to collect the data to address the research objectives.Conduct data analysis on qualitative and quantitative data obtained from naturalistic settings and write reports to present the results of your analysis.Work in the field with MINDEF/SAF and to collaborate with other scientists from academia and industry.', 'Requirements:': "PhD / Master's / Bachelor's Degree in Linguistics / Psychology / Sociology / Communication & Media / Political Science.Strong applied statistical skills and familiarity with SPSS or R will be advantageous.Knowledge of programming languages such as R and Python to analyse large scale human behaviour data will be advantageous.Strong theoretical foundations in behavioural and social sciences."}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '199701777M', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '16 days', 'Industry': 'R&D'}, {'Company Overview': '\n\tDefence research and development (R&D) is at the heart of what we do at DSO. As Singapore’s largest national defence R&D organisation, DSO is entrusted with the critical mission of developing technological surprises to enhance Singapore’s defence capabilities. From research to systems development, our defence engineers and scientists push the boundaries to develop game changing technologies and solutions that are not available in the market, or not available to Singapore. DSO also invest and explore emerging technologies to ensure the nation’s defence and national security capabilities are future ready. With more than 50 research areas across the domains of air, land, sea, space and cyberspace, DSO shapes the future of defence with our imagination and dare-to-do spirit in the relentless pursuit of the next big idea.'}, {'url': 'http://www.jobstreet.com.sg/en/job/social-and-behavioural-scientist-jobsthatmatter-10124134?jobId=jobstreet-sg-job-10124134§ionRank=150&token=0~9c6137e3-4b57-4d3b-8aa8-2a7c1a63101a&fr=SRP%20Job%20Listing'}]
Social and Behavioural Scientist
[{'position': 'Assistant VP - Data Analyst, Wholesale Banking and Market Operations'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Technology and Operations ': '', 'Job Responsibilities': '\xa0Manage the book of work for risk and operational efficiency related use cases across the Wholesale Banking and Market Operations teams.Identify data sources and provisioning of data into enterprise data platform.Apply database tools and statistical predictive models by analyzing datasets and derive insights using a risk lens.Responsibility for developing, maintaining and extracting knowledge from internal and external data sets.Create visualization dashboards for monitoring and analysis purpose.Implement automation in data compilation for analysis use in management meetings.Partner and support users in other internal teams to develop and deliver data science solutions to further value-add in assurance reviews and other risk programs.', 'Job Requirements': 'Degree in Computer Science, Math, Statistics, Operations Research or other quantitative discipline.\xa0.At least 5\xa0years experience in quantitative analysis and data science (machine learning / predictive modelling) with proficiency using common analysis tools (eg. SAS, Python, Hue).Proficient in visualization/dashboard tools (eg. Qliksense, Power BI).Excellent communication skills (verbal, written) to deliver insights to senior management and stakeholders.Deep dive into data to find answers to yet unknown questions and have a natural desire to go beneath the surface of a problem..Ask relevant questions and possess the skills to build algorithms necessary to find meaningful answers..Motivated and driven, able to work independently and a good team player as part of a multidisciplinary team.', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-vp-data-analyst-wholesale-banking-and-market-operations-10084019?jobId=jobstreet-sg-job-10084019§ionRank=152&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Assistant VP, Digital Marketing Data Analyst #JobsThatMatter'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About UOB': '', 'About the Department': '', 'We are building and expanding the best digital bank in ASEAN': '', 'Job Responsibilities': '', 'Responsibilities': '', 'Job Requirements': '', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Digital Marketing', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-vp-digital-marketing-data-analyst-jobsthatmatter-10101253?jobId=jobstreet-sg-job-10101253§ionRank=153&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Data Engineer (Remote possible)'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Data Engineer (Remote possible)': 'Competitive Remuneration Package.Remote working available.', 'About the Client': '', 'Main Duties & Responsibilities': 'Build scalable batch and real-time data pipelines to ingest data from various channels.Set up a streamlined data lake and data warehouse.Deploy production quality code and maintain data quality.Establish tools for data ingesting and building data cubes\xa0.', 'Experience and Qualifications': 'At least 4 years of experience.Bachelor/Master’s degree in Computer Science, Engineering or a related field, software engineering background preferred.Proficiency in Python, Java or Scala.Hands-on experience implementing ETL (or ELT) best practices at scale.Experience in designing data warehouse – Snowflake, Redshift or Athena.Hands-on experience working with Kubernetes.Experience with stream processing systems (Flink or Spark).Knowledge of big data technologies - Spark, Hadoop, Hive, Kafka, Flink etc. and machine learning is a plus.Familiarity with machine learning tools from AWS or GCP preferred.Knowledge of software engineering concepts will be valuable.', 'Interest & Application': '', 'Personnel Registration No R22109255': '', 'EA license No. 09C5803': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-remote-possible-10132231?jobId=jobstreet-sg-job-10132231§ionRank=154&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Data Engineer (Remote possible)
[{'position': 'Executive, Data & Research,'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': 'Support administration surveys, including executing survey fieldwork, verifying cleaning survey data, post-survey administration.Support data operations, including acquiring data, managing, updating maintaining various datasets databases.Perform data analysis report findings in form reports, infographics presentations.Conduct scans, literature search collect relevant data related entrepreneurship innovation.Provide administrative data support for special or ad-hoc projects..', 'Qualifications': 'A Honours with grounding in quantitative techniques. Candidates with pos qualifications in these fields ..', 'Essential Knowledge:': 'Data literacy; grasp descriptive inferential data concepts.Familiarity with at least one statistical software such as SPSS STATA; data manipulation eadet software such as Excel.Basic survey design on platforms such as Google Forms Qualtrics.', 'Additional Knowledge Skills would be an advant:': 'Data modeling, Data visualisation, Machine Learning concepts, exposure entrepreneurship innovation concepts.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/executive-data-research-10110524?jobId=jobstreet-sg-job-10110524§ionRank=155&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Fellow, - (Computer Sci./IT), - (R00006578)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 24 hours ago']}, {'Job Responsibilities': 'Co-evaluate business s and objectives.Identify opportunities for data acquisition.Build data systems and pipelines.Build algorithms and prototypes.Analyze and organize raw data.Interpret trends and patterns.Conduct data analysis, working independently or with data analysts, and report on results.Prepare data for prescriptive and predictive modeling.Combine raw information different sources.Explore ways to enhance data quality and reliability.Develop analytical tools and programs.Collaborate with data scientists and architects.', 'Job Requirements': 'Minimally Phd degree in Computer Science, IT, or similar field.Candidates with a Masters Degree with more than 6 years of relevant experience post Masters-degree are also welcome to apply.Previous experience as a data engineer or in a similar role.Technical expertise with data models, data mining, and segmentation techniques.Knowledge of programming languages\xa0 (e.g. Java and Python).Hands-on experience with SQL database design.Great numerical and analytical skills.Ability to integrate data /data streams different sources.Familiarity with apt programming languages and knowledge of machine learning methods.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-sci.-it-r00006578-10145674?jobId=jobstreet-sg-job-10145674§ionRank=156&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Field Applications Scientist, qPCR/CE (SG/SEA) - 217765BR'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted 2 hours ago']}, {'The role': '', 'How will you make an impact?': 'Provide independently on-site\xa0and\xa0remote scientific application support & training support on products.Perform product demonstrations\xa0and\xa0training at customer\xa0or\xa0company sites; deliver product line specific pre-sales activities.Prepare\xa0and\xa0present seminars to wide array of audiences; assist the regional sales team in the development of accounts.Support the organization in the achievement of the regional commercial,\xa0service\xa0and\xa0support goals.Diagnose & resolve product performance problems\xa0and\xa0customer queries/complaints.Remain up to date with product\xa0and\xa0groundbreaking scientific know-how\xa0and\xa0work\xa0in line with our Support &\xa0Service\xa0Competencies.Play a significant role when introducing\xa0and\xa0supporting\xa0new\xa0products\xa0and\xa0applications.Build trust with our customers\xa0and\xa0excel in customer\xa0service.May be required to support other portfolios, perform other related duties as required or assigned.', 'How will you get here?': '', 'Education': 'Degree\xa0in Biology, Biotechnology, Biomedical Sciences, Genetics, Molecular Biology, Biochemistry\xa0or\xa0similar (Masters\xa0or\xa0PhD preferred).', 'Experience': '3\xa0years\xa0Laboratory experience to include expertise in Real-Time PCR (qPCR)\xa0and\xa0Capillary Electrophoresis (CE) platforms – principle, workflow\xa0and\xa0troubleshooting..', 'Understanding of:': 'Assay Design, Optimization\xa0and\xa0Validation.Sample Preparation.Instrument Operation\xa0and\xa0Troubleshooting.Software\xa0and\xa0Data Analysis.Experience in communicating technical materials in written\xa0and\xa0verbal form; customer training experience is a plus.', 'Knowledge, Skills, Abilities': 'Customer-facing experience;\xa0strong\xa0communication\xa0and\xa0presentation skills; capable of interacting with a diverse population of internal\xa0and\xa0external contact.Support people effectively with varying levels of technical knowledge\xa0and\xa0expertise.Good\xa0computer\xa0and/or\xa0IT skills\xa0and\xa0have an interest for groundbreaking technology..Ability to read, analyze,\xa0and\xa0interpret common scientific\xa0and\xa0technical reports\xa0and\xa0apply\xa0mathematical\xa0and\xa0statistical data analysis.Ability to\xa0work\xa0effectively in a team,\xa0and\xa0troubleshoot technical problems.Ability to prioritize multiple urgent requests, customer issues..Flexibility to travel 50% of the time.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/field-applications-scientist-qpcr-ce-sg-sea-217765br-10147871?jobId=jobstreet-sg-job-10147871§ionRank=157&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
The role
[{'position': 'Senior Data Scientist (CDO Office) #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What you will be working on:': 'Facilitate discussions with stakeholders to understand their business challenges, sharpen the business use cases and translate them into data science projects.Perform data cleaning, pre-processing, feature engineering, and build data science models to address the use case.Depending on the use case, design of dashboards and interactive visualisations as tools for data exploration and storytelling may be expected\xa0.Present findings, solicit feedback and prioritise refinements to the analysis in close iteration with stakeholders while managing overall project timeline.Communicate the data insights in a clear and compelling narrative, supported with impactful visuals, to influence key decision makers.', 'What we are looking for:': 'Disciplines in Data Science, Computer Science, Statistics, Economics, Quantitative Social Science, or related qualifications. We will also factor in relevant certifications (e.g. Coursera).Minimum 4 years of experience working in public sector or data science field.Knowledgeable in data science techniques and concepts, with sound understanding of their potentials and limitations when applied to business use cases.Familiar with machine learning frameworks such as PyTorch, TensorFlow, and scikit-learn.Experience in a production environment where models are deployed is a bonus..Experience in leading data science projects.Training and relevant experience im Data science tools that uses Python (proficiency in R is a bonus) and Tableau for visual analytics (proficiency in Qlik and PowerBI is a bonus).'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-scientist-cdo-office-jobsthatmatter-10052767?jobId=jobstreet-sg-job-10052767§ionRank=158&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
What you will be working on:
[{'position': 'Research Fellow (Signal Processing and Machine Learning), R00003631 T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted 10 hours ago']}, {'Job Responsibilities': 'Develop signal processing and machine learning algorithms and methods.Perform software/hardware implementation and empirical studies.Prepare reports and presentations.Conduct project presentations and seminars.Help to supervise graduate students and contribute to proposal writing.Assist the PI in various research admin tasks.', 'Job Requirements': 'Ph.D. in Electrical Engineering, Computer Science, Statistics or other related fields.Solid Mathematical skills.Background in graph signal processing, probability theory and statistical signal processing.Experience in implementing algorithms for machine learning and data analytics.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-signal-processing-and-machine-learning-r00003631-t-10096929?jobId=jobstreet-sg-job-10096929§ionRank=159&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Manager/Assistant Manager, Data Engineering'}, {'company_name': 'Resorts World at Sentosa Pte Ltd'}, {'small_section': ['Central', 'Posted on 4-Nov-22']}, {'Job Description:': 'Supports the design, implementation and maintenance of data flow channels and data processing systems that support the collection, storage, batch and real-time processing, and analysis of information in a scalable, repeatable, and secure manner..Keep abreast of latest technologies and products in database and data processing software, and technologies..Recommend solutions to improve new and existing data platforms including migration..Experiment with, select, and implement cutting edge Big Data tools and frameworks required to provide requested capabilities..Build, deploy and manage big data tools with solid devops functions. Be able to manage CI/CD pipelines..Develop codes and scripts to process structured and unstructured data in real-time from a variety of data sources..Implement and monitor data security and privacy measures on data solutions..Maintenance and support of batch job processing in Data warehouse / data platform.Automate and optimize the data collection and analysis processes, data releasing and reporting tools..Gather requirements for data warehouse projects, conducting UAT and to provide training for end users, as and when required..Mentoring junior team members through code review and enablement training.', 'Job Requirements': 'Degree in Computer Science/Information Systems or equivalent with minimum 4 years of hands-on experience in the maintaining and supporting an enterprise level data platform..Must have hands-on ETL/ELT experience, specifically on Microsoft SSIS / Azure Data Factory, strong working experience ETL / ELT experience will also be acceptable..Proficiency in SQL and deep understanding of DWH architecture and data/table formats such as parquet/json/csv in distributed data processing and storage systems..Possess good understanding of software development life cycles..Ability to analyze large datasets, data model and interpret data pattern..Working experience in handling projects involving Data Analytics related work is a plus..Knowledgeable on cloud systems like Alicloud, Azure.Experienced in managing Tableau Servers is a plus..Good experience with programming languages like Python, R, and scripting languages such as PowerShell and bash is a plus..Experience in machine learning operations, or setting up environments for data scientists/machine learning engineers would be advantageous.Strong communication and interpersonal skills..Have a positive attitude and willingness to learn and adapt to a changing environment..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200502573D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Hotel / Hospitality', 'Benefits & Others': '-, -'}, {'Company Overview': '\n\tResorts World Sentosa (RWS), Asia’s premium lifestyle destination resort, is located on Singapore’s resort island of Sentosa. Spanning 49 hectares, RWS is home to world-class attractions including Universal Studios Singapore, S.E.A. Aquarium, Dolphin Island and Adventure Cove Waterpark. Complementing the adventure and adrenaline of its theme parks and attractions are six unique luxury hotels, the world-class Resorts World Convention Centre, a casino and the Asian flagship of a world-renowned destination spa. RWS offers award-winning dining experiences and exciting cuisines from around the world across its many renowned celebrity chef restaurants, establishing itself as a key player in Singapore’s vibrant and diverse dining scene and a leading gourmet destination in Asia for epicureans. The integrated resort also offers world-class entertainment, from original resident productions to concerts and public shows such as Lake of Dreams. RWS has been named “Best Integrated Resort” since 2011 for nine consecutive years at the TTG Travel Awards which recognises the best of Asia-Pacific’s travel industry.\n\n\tRWS is wholly owned by Genting Singapore, a company of the Genting Group. For more information, please visit www.rwsentosa.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-assistant-manager-data-engineering-10133498?jobId=jobstreet-sg-job-10133498§ionRank=160&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Analytics Executive'}, {'company_name': 'ST Logistics Pte Ltd'}, {'small_section': ['Pioneer', 'Posted on 5-Nov-22']}, {'Responsibilities': '', 'Operate the SiTadeL Supply Chain Control Tower and its Applications:': 'Address queries from users relating to any of the applications in SiTadeL and assist with troubleshooting if necessary\xa0.Manage the development and implementation of innovative Supply Chain Control Tower solutions and tools\xa0.Perform regular refresh of the various SiTadeL applications to ensure that data is accurate and relevant\xa0.', 'Analyse operational data and present insights from a business perspective\xa0': 'Extract and clean data from the various SiTadeL applications to develop purposeful data visualizations for Key Performance Indicator (KPI) reporting to key stakeholders\xa0.Conduct data analysis to provide insights and assist in identifying and solving issues faced\xa0.Communicate insights of feasibility analysis and relevant success strategies with key business stakeholders for decision making\xa0.Build partnerships with key service partners and customers within and across industries to accelerate the adoption of data analytics initiatives\xa0.', 'Manage Corporate Activities': 'Assist in the planning of meetings, workshops and other associated activities\xa0\xa0.Perform data analysis to analyse macro trends that will affect the business and communicate the findings through visualisations and slides\xa0\xa0.', 'Requirement': 'Bachelor’s Degree in business analytics, mathematics, economics, statistics or data-related fields\xa0\xa0.Entry level are welcome to apply.', 'Entry level are welcome to apply': 'Experience with data analysis (Excel, VBA, Python) and data visualization tools (Qlik, Power BI)\xa0\xa0.Preferably 2 years of experience working with data (Entry level may also apply)\xa0.Proficient in statistics and possess demonstrated knowledge and experience in analysing data and deriving business value from data.\xa0\xa0.Strong time management, project management and interpersonal skills\xa0.Highly motivated and demonstrated ability to work well with cross-divisional teams and at all levels of the organization\xa0.Keen interest to work in a Supply Chain organisation and in shaping supply chain outcomes\xa0.Singaporean only.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200412267E', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Toll City'}, {'Company Overview': '\n\tST Logistics, an acquisition of Toll since 2006, is a Singapore-based company with more than 40 years of experience providing Supply Chain Management and Integrated Logistics Solutions to the Defence, Government and Healthcare sectors. Today, ST Logistics generates annual revenues in excess of $315 million with more than 1,000 employees worldwide. Our best-in-class solutions has broadened into the commercial sectors. These developments epitomise our passion to understand the needs and challenges of our customers. We conceptualise, develop and manage – with the aim of delivering end-to-end solutions designed for each partner in the region.'}, {'url': 'http://www.jobstreet.com.sg/en/job/analytics-executive-10089713?jobId=jobstreet-sg-job-10089713§ionRank=162&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Clinical Data Analyst'}, {'company_name': 'National Cancer Centre Singapore Pte Ltd'}, {'small_section': ['Bukit Merah', 'Posted on 2-Nov-22']}, {'About Us': '', 'About the Role': '', 'Some of the Key Responsibilities Include': 'Perform clinical data abstraction, data quality management, and data entry & coding using appropriate classification systems.Analyse and interpret cancer trends such as analysing and interpreting disease and survival\xa0\xa0trends, undertaking statistical modelling to assess impact of health promotion programmes.Provide support in the planning & developing of cancer-related data collection systems, maintaining of policies & procedures and reports.Attend and record minutes of department meetings & various workgroups, and participate actively in institutional activities.', 'Job Requirements': 'Degree in Nursing, Health Sciences or Biomedical Sciences or equivalent with 2 years of relevant of working experience.Prior experience in the field of clinical database project or clinical coding or health-related data analytics or data management in clinical research project would be an advantage.Experience in predictive analytics and proficiency with using R/Python, SPSS, STATA and Tableau will be an advantage.Organized, meticulous and independent with good interpersonal, verbal and written communication skills.Resourceful and creative in problem solving and ability to handle multiple projects.Proficient in Microsoft Office.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Others, Others', 'Registration No.': '199801562Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Uniform and Non-Uniform, Others', 'Specific Location': 'Outram'}, {'Company Overview': '\n\tThe National Cancer Centre Singapore (NCCS) has evolved over the past 20 years to become one of the leading regional centres for cancer treatment and research. It has pioneered the one-stop multi-disciplinary approach to cancer treatment and is now home to oncologists, surgeons and researchers, dedicated to the care and treatment of a growing number of cancer patients.\n\tToday, NCCS see close to 65 per cent of the public sector oncology cases in Singapore. To deliver\xa0the latest cancer care and treatment, clinicians work closely with researchers who conduct robust cutting-edge clinical and translational research which has received international recognition.\xa0NCCS strives to be a global leading cancer centre, and shares its expertise and knowledge by training the next generation of medical professionals.'}, {'url': 'http://www.jobstreet.com.sg/en/job/clinical-data-analyst-10078362?jobId=jobstreet-sg-job-10078362§ionRank=163&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
About Us
[{'position': 'VP, Data Engineer, Group Technology'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Job Responsibilities': '', 'Job Requirements': '', 'Functional skillsets': '', 'Technical skillsets': '', 'Any 2 to 3 of the below technical certifications:': '', 'Good to have for added advantage:': '', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-data-engineer-group-technology-10142039?jobId=jobstreet-sg-job-10142039§ionRank=164&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Senior Machine Learning (Vision) Engineer'}, {'company_name': 'Ross Digital Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Senior Machine learning (Vision) Engineer ': '', 'The Role: ': '', ':': '', 'About You: ': '', 'About Us': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201705661E', 'Company Size': '1 - 50 Employees', 'Industry': 'Computer / Information Technology (Software)'}, {'Company Overview': 'Founded by a team of senior level executives from Fortune 500 companies, our company is an F&B concept powered by robotics & automation. We are on a mission to innovate a new customer experience by offering a variety of beverages. From coffee to nitro tea to cocktails, our innovative robotics will deliver quality drinks with precision and speed. Funded by two of Singapore’s top MNCs and a leading SEA conglomerate, we’ve already built and commercialized our robotic café/bar across China. Now, we’re currently building our Singapore presence.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-machine-learning-vision-engineer-10076767?jobId=jobstreet-sg-job-10076767§ionRank=165&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Senior Machine learning (Vision) Engineer
[{'position': 'Data Engineer/ Senior Data Engineer'}, {'company_name': 'DSBJ PTE. LTD.'}, {'small_section': ['Bishan', 'Posted on 29-Oct-22']}, {'Main Responsibilities:': 'Understand business requirements to design and implement technical solutions that address business needs while adhering to big data architectural principles..Work with the broader data engineer/IT team to ingest various types of data (e.g. structured and unstructured) in the appropriate manner (e.g. batch/real-time) from a variety of data sources..Test data pipelines thoroughly for scalability and reliability to process high data volume, variety and velocity..Develop and implement reliable data transformation and modeling solutions to achieve data curation and build a company-wide data warehouse by taking advantage of cloud-native solutions and in-house developed components..Identify and implement internal process improvements to automate data processing and ensure data integrity while meeting data security standards..Implement and monitor system performance, data security and privacy measures on existing data solutions..Develop backup data archiving systems to ensure system continuity..Perform progress checks, code reviews and documentation on the regular basis..Work with Data Scientists and the Business Analytics team to further process data in order to generate business value..Provide technical guidance and coaching to junior Data Engineer..', 'Job Requirements:': 'Bachelor’s degree in IT, Computer Science, Software Engineering, Business Analytics or equivalent. Advanced university degree would be an additional advantage..Minimum 5 years of experience in data warehousing/lake system.Experience with big data in the cloud environment (e.g. Azure, AWS, Alibaba).Expert in building and optimizing ‘big data’ data pipelines, architectures, and data sets..Expert in building curated and semantic data layer with a systematic approach..Experience in data ingestion, cleaning and enrichment..Excellent experience in data processing using Scala/Python/Java.Proficient in Big data tools and ecosystems (e.g. HIVE, HBase, Kafka, Spark, ...).Knowledge & practices of SDLC process and agile methodologies.Strong in user requirements gathering, maintenance, and support..Highly organized, self-motivated, proactive, and able to plan..Experience in data visualization and BI analytics is a plus.Experience in semiconductor/PCB manufacturing, digital supply chain is a plus..Proficiency in both English and Chinese, to liaise with the Chinese-speaking associates in China HQ office..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201907626H', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '11 days', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts), Fruits Day, Corporate Mobile Plan, Health Screening'}, {'Company Overview': "DSBJ is a leading worldwide technology partner providing critical components for loT intelligence, with a special focus on Telecommunication Equipment and Metal Precision, LED technologies and Interconnect solutions.\xa0 With a vision focused on technological breakthroughs, we constantly bring new innovative solutions, high-tech products and high-quality services that propel our customers to success.\nDSBJ takes surefooted steps forward and takes them quickly.\xa0 In April 2010, 30 years after our inception, we were listed on the Shenzhen Stock Exchange.\xa0 We've continually evolved over three decades, perpetually innovating and strategically transforming ourselves time and time again.\xa0 From a small manufacturing company to a prestigious global player, our successful journey is testament to our vision, innovative spirit and determined belief in technology.\xa0 As we embrace future challenges, we will remain steadfast in our pursuit to benefit both stakeholders and the wider society.\nTechnological innovation is in our DNA and is the cornerstone of DSBJ.\xa0 With cutting-edge production facilities and advanced technology, we constantly deliver state-of-the-art products and quality services.\xa0 Our global network of research bases and offices keeps us abreast of the latest tech breakthroughs, so we can effectively allocate resources wherever they're needed.\xa0 With an established presence in mainland China, Taiwan, South Korea, Finland, India, Sweden, Germany, Poland, Estonia, the US and Mexico, we meet customer needs quickly and competently, providing sales locally in addition to customer service and warehousing capabilities.\nWhile deeply proud of our past, we never lose focus of the future.\xa0 We believe that each and every step is a starting point.\xa0 Through investments, acquisitions and new facilities, we've streamlined our business and expanded frontiers.\xa0 In 2016 we boosted our revenue by acquiring NASDAQ-listed MFLEX, a top 5 player globally in the FPC industry, operating from the US.\xa0 In July 2018 we acquired another world-renowed company from the US: PCB solution specialists Multek.\nAt DSBJ, we embrace every opportunity while keeping up to speed with the changing landscape.\xa0 We consistently explore new avenues and seek next-generation breakthroughs.\xa0 Looking forward, we have the unwavering determination to deliver critical components and innovative solutions that advance loT development and build a smarter, more connected world.\xa0 DSBJ, building a better-connected world for tomorrow."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-senior-data-engineer-10064412?jobId=jobstreet-sg-job-10064412§ionRank=166&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Main Responsibilities:
[{'position': 'Data Anaylst, Strategy Management and Analytics (Organisation Planning and Performance)'}, {'company_name': 'Singapore General Hospital'}, {'small_section': ['Outram', 'Posted on 3-Nov-22']}, {'Requirements': 'Collaborate with stakeholders to understand business problems and derive solutions via a data-driven approach.Perform relational trending and forecasting based on historical information to establish meaningful analysis of operational and clinical data sets.Generate workload trends for Management Reporting.Ensure analytic transformation projects are well planned, implemented, and insights are accurately presented.Map business requirements with clear data logics, proper data access work flow.Extraction of data sets, or work with enterprise data warehouse team to execute data platform projects or visualization requirements for stakeholders’ business reporting.Degree in Mathematics, Statistics, Information Technology, Business Analytics or Data Science is preferred.2 years relevant experience in a healthcare environment will be an advantage\xa0.Strong analytical and communication skills.Proficient Microsoft Excel skills (pivot tables, macros).Conversant in one of the following – R, Python.Conversant in Tableau or other data visualization tools.Ability to work under tight deadline.Knowledge/ skills in data mining and/or operations research, either present or in the process of gaining such knowledge and skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198703907Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '16 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Leave benefits, 42 hours'}, {'Company Overview': "\nSingapore General Hospital is Singapore's largest flagship tertiary hospital with an 10,000-strong multi-generation diversified workforce and a rich 190 years history. Every year, the SGH Campus caters to over 1 million patients, providing advanced medical care under its 36 clinical specialties.\nAs an academic hospital, SGH plays a key role in nurturing doctors, nurses and allied health professionals and is committed to innovative translational and clinical research to provide the best care and outcomes to patients.\nWe offer a challenging, family-friendly and conducive work environment with enormous scope and opportunities to meet your career aspirations, advancement and personal development.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-anaylst-strategy-management-and-analytics-organisation-planning-and-performance-10128347?jobId=jobstreet-sg-job-10128347§ionRank=167&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Requirements
[{'position': 'Senior Research Scientist, - (R00005119) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 6-Nov-22']}, {'Key Responsibilities:': 'Play a leading role in both research and development of novel and/or enhanced assistive technologies to improve the safety of fleet drivers by (i) categorizing their driving behaviors through profiling; (ii) monitoring their well-being; and (iii) assessing driving risks and reporting to fleet manager/operator and/or drivers.', 'Job Requirements:': 'PhD degree in Computer/Electrical/Mechatronics Science or Statistics.Minimum 6 years of experience in software or hardware development, integration and refinement.Solid application background in AI for computer vision and/or data analytics.Strong project management skills.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-r00005119-urgent-10139827?jobId=jobstreet-sg-job-10139827§ionRank=168&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Project Officer, (Data Science) (R00009420)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Key Responsibilities:': '', 'Job Requirements:': 'Bachelor degree in Data Analysis, Aviation, Business, or relevant fields..Minimum 1-year production experience with spatial and temporal data; 1-year production experience in Python (these may be proven via portfolios or GitHub user page or similar).\xa0.Experience in managing own project plans, designing of experiments, delivering a research or development product to clients..Experience in the following computing skills are advantages: Machine Learning, Big Data (distributed computing), relational databases, XML, cartography, Linux..Experience in rapidly learning new subject domain matters is an advantage..Experience in aviation in particular Air Traffic Management is an advantage..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-data-science-r00009420-10070320?jobId=jobstreet-sg-job-10070320§ionRank=169&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'AI Architect (Digital)'}, {'company_name': 'Mediacorp Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Description': '', 'Key Responsibilities': 'Partner\xa0and\xa0collaborate with both Internal\xa0and\xa0External stakeholders to dive deep into data, doing analysis, discovering root causes,\xa0and\xa0designing\xa0long-term\xa0AI/ML solutions & Roadmaps.Drive the delivery of AI/ML project\xa0from\xa0beginning to end, including understanding business requirements, developing architecture, aggregating data, exploring data, building & validating predictive models, and deploying completed models to deliver business impact.Drive technical discussions\xa0and\xa0scoping meetings to establish key features, milestones,\xa0and\xa0deliverables..Provide direct technical expertise for AI/ML related opportunities.Leverage knowledge\xa0and\xa0experience to solve cross-organizational issues\xa0and\xa0remove blockers..', 'Requirements': "Bachelor's\xa0degree\xa0in Computer Science, Computer Engineering, AI\xa0or\xa0related fields.5+\xa0years\xa0of experience with architecture, design\xa0and\xa0implementation of AI/ML technologies.Technical depth in shaping\xa0and\xa0designing AI/ML architectures\xa0and\xa0infrastructure.Familiar with Cloud Infrastructures, Kubernetes, Docker, GPU, TensorFlow, Pytorch & other Opensource AI/ML framework\xa0and\xa0libraries.Experience with Programming\xa0languages\xa0(Python, Java, etc)\xa0and\xa0database (SQL & NoSQL).Strong\xa0stakeholder management skills with ability to distil information\xa0and\xa0communicate directly with stakeholders..Experience\xa0working\xa0in a fast-paced, results-oriented team..Experience\xa0working\xa0in Media & Entertainment industry is a\xa0strong\xa0plus.", 'Thank you for your interest\xa0and\xa0application to this role. Please note that only short-listed\xa0candidates\xa0will be contacted.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199201312E', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Entertainment / Media', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\nMediacorp is Singapore’s leading media company with the most complete range of platforms, spanning television, radio, newspapers, magazines, movies, digital and out-of-home media.\n\t\t\xa0\n\n\t\tIt pioneered the development of Singapore’s broadcasting industry, with the broadcast of Radio in 1936 and Television in 1963.\n\n\t\tToday, Mediacorp has over 50 products and brands in four languages (English, Mandarin, Malay and Tamil), reaching out to all adults in Singapore every week.\n\n\t\tInitiatives in the new digital space include Internet TV-on-demand, High Definition TV broadcast and Over-the-Top (OTT) interactive services.\n\t\n\tBeyond Singapore, Mediacorp is an active regional player through co-productions in TV dramas and movies, magazines publishing, as well as Channel NewsAsia International, one of the first Asian-owned English news channels.\n\t\n\t\n\t\tOur financial and strategic relationship in the region includes International Media Corporation in Vietnam, which was set up to develop and produce television entertainment and economic news content. Mediacorp also has a stake in Singapore-based retail firm Reebonz, one of the region's fastest growing luxury online retailers and a majority stake in Cubinet Interactive, a Malaysian digital games publisher.\n\t\n\tWinner of numerous international awards and accolades including Asian Television Awards' Terrestrial Broadcaster of the Year, Mediacorp’s mission is to engage, entertain and enrich audiences by harnessing the power of creativity.\n\t\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-architect-digital-10140367?jobId=jobstreet-sg-job-10140367§ionRank=170&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Research and Development Scientist'}, {'company_name': 'BTI Executive Search Pte Ltd'}, {'small_section': ['North', 'Posted on 5-Nov-22']}, {'“Apply Now”': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '201417088Z', 'EA No.': '16S8296', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '19 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\nBTI Executive Search is a major global consulting firm that specializes in board and executive search, talent management, and leadership development. BTI Executive Search leverages on the ability to align ourselves with the changing face of leadership, our deep network of proven consultants extends our reach across specific industry sectors and disciplines. We operate on the premise that every leader we place has the ability to make a positive impact to the business they enter, the people they interact with, and the community at large\n\n\t\t\tBy submitting your curricular vitae or personal data to us in connection with your job application, you are deemed to have read and agreed to the terms of our Privacy Policy, and consented to the collection, use and disclosure of your personal data by us and our affiliates, in accordance with our Privacy Policy.\xa0\n\n\t\t\tPlease visit www.btiexecutivesearch.com for a copy of our Privacy Policy.\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-and-development-scientist-10107409?jobId=jobstreet-sg-job-10107409§ionRank=171&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
“Apply Now”
[{'position': 'Data Analytics Lead'}, {'company_name': 'Hays Specialist Recruitment Pte Ltd'}, {'small_section': ['Central', 'SGD\xa07,000 - SGD\xa08,000', 'Posted on 5-Nov-22']}, {'Your new company': '', 'Your new role': 'Lead the design and delivery of data solutions at Group level for the various business units..Interact with business users and stakeholders to identify business needs and then translate them into technical requirements.Define group wide Data strategies and solutions for deployment, working with other Data Engineers, Data Analysts and Data Architects.Implement effective data management and governance tools, to ensure quality and consistency of data.Keep updated on latest data technologies in the market to be integrated..', "What you'll need to succeed": 'At least 5 years of Data Analytics experience with 1 year of leadership and technical direction management.Strong knowledge working with various data tools such as ETL tools, data warehousing, and business intelligence tools..Business analysis skills to partner with users and translate technical requirements.Experience in designing data solutions and data structure classifications.', "What you'll get in return": '', 'What you need to do now': []}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200609504D', 'EA No.': '07C3924', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Miscellaneous allowance, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Central Area'}, {'Company Overview': 'WORKING FOR YOUR TOMORROW\xa0At Hays we invest in lifelong partnerships that empower people and businesses to succeed. With over 50 years’ success under our belts and a workforce of 10,000+ people across 33 countries, we’ve evolved to put our customers at the heart of everything we do.\xa0So much more than a specialist recruitment business, what really sets us apart is our knowledge through scale, deep understanding and our ability to meaningfully innovate for our customers. By providing advice, insights and expertise on issues you face today in the fast-paced world of work, we help you make the right decisions for tomorrow.\xa0Offering an unrivalled suite of recruitment and workplace solutions, whether you’re looking for what’s next in your career, or have gap to fill, we’ll help get you get where you want to go.\xa0\xa0You can rely on us to deliver today and help you plan for tomorrow.\xa0In Singapore, our recruiting experts are available to you in the following specialisms:Accountancy & FinanceBanking & Financial ServicesConstructionEngineeringHuman ResourcesInsuranceLegalLife SciencesMarketing & DigitalOffice ProfessionalsProcurementPropertySalesSupply ChainTechnologyTo connect with a recruiting expert at Hays, visit us at www.hays.com.sg or follow Hays on LinkedIn - The #1 Recruiter on LinkedIn globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-lead-10135865?jobId=jobstreet-sg-job-10135865§ionRank=172&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Your new company
[{'position': 'Associate Analyst / Analyst (Data Analytics)'}, {'company_name': 'Marina Bay Sands Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'JOB SCOPE': '', 'Summary of Job Responsibilities': '', 'Product Analytics:': 'Analyze various aspects of the casino operations, including product and area performance, operational and manpower efficiency, dealer performance etc..Apply statistical models, optimization techniques and simulations to improve gaming floor optimization, demand forecasting, manpower scheduling, risk evaluation etc..Assist in building solutions and tools to enhance floor optimization and operational efficiency..', 'Overall:': 'Drive data based decisions through creation of insightful reports and dashboard.Design impactful data visualization/dashboards to communicate complex ideas in Data Visualization Tools.Be able to work independently on reports and analyses.Generate new ideas on how to improve processes for our team, or our stakeholders.', 'JOB REQUIREMENTS': 'Degree in Business Analytics, Applied Mathematics, Statistics or other analytical fields preferred..1- 2 years of practical experience in business analytics, slot or table game revenue or marketing analytics for Associate Analyst.\xa0.Entry level are welcomed to apply..2 - 4 years of practical experience in business analytics, slot or table game revenue or marketing analytics for Analyst OR Masters in any analytical field..Working knowledge of analytical tools such as Base SAS, SAS EG, SQL, R, Python and various slot or table game rating Software required..Working knowledge of data visualization tools, such as Tableau preferred..Ability to process massive amounts of data and complete critical projects in a correct, accurate and timely manner..Excellent communication, writing, presentation, statistdical and data analysis skills..Begun the vaccination process and are awaiting the 2nd/3rd vaccination appointment, or are within the 14 day period prior to being classified as fully vaccinated; or.Are certified to be medically ineligible for vaccination against COVID-19 by a medical professional;.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200507292R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '1 day', 'Industry': 'Hotel / Hospitality'}, {'Company Overview': '\n\n\t\tMarina Bay Sands® is Asia’s leading destination for business, leisure and entertainment delivering once-in-a-lifetime experiences. The landmark building is situated in the heart of Singapore’s Central Business District and transforms Singapore’s skyline and the country’s tourism landscape.\n\n\n\t\tThe destination offers a luxury hotel, state-of-the art convention and exhibition facilities, theaters, world-class entertainment and the best shopping and dining in the region. The three hotel towers are crowned by the Sands SkyPark® on the 57th story.\xa0\n\n\nProduct & Services\n\n\n\t\tConveniently located in the heart of the Central Business District and 20 minutes from Changi Airport.\n\n\n\t\t• Hotel: The Marina Bay Sands hotel has three 55-story towers with 2,561 luxury rooms and suites. The three towers are capped by the Sands SkyPark, which offers 360-degree views of Singapore’s skyline. It is home to restaurants, lush gardens, an infinity edged swimming pool and the world’s largest public cantilever housing an observation deck.\n\n\n\t\t• Expo and Conventions: The Sands Expo and Convention Center has 1.3 million square feet of flexible convention and exhibition space. It can host over 45,000 delegates, 2,000 exhibition booths and 250 meeting rooms. It features Southeast Asia’s biggest ballroom, which can accommodate 6,600 people for a banquet, and up to 11,000 for an auditorium-style lecture.\n\n\n\t\t• Shopping: The Shoppes at Marina Bay Sands has 800,000 square feet of retail and dining space. Luxury retailers include Bally, Cartier, CHANEL, Ferragamo, Franck Muller, Gucci, Hermès, Hublot, Hugo Boss, Louis Vuitton, Miu Miu, Omega, Patek Philippe, Prada, Tiffany & Co. and Yves Saint Laurent. New brands include Anne Fontaine, Henry Cotton’s, Leviev, Marisfrolg, Moiselle, Rabeanco, Stefano Ricci, and Wolford.\n\n\n\t\t• Restaurants: Dining at Marina Bay Sands is a gourmet experience with over 50 dining choices. These include celebrity-chef restaurants helmed by Mario Batali, (New York), Daniel Boulud (New York), Wolfgang Puck (Los Angeles), Guy Savoy (Paris), Tetsuya Wakuda (Sydney) and Justin Quek (Singapore).\xa0Marina Bay Sands features signature restaurants, modern bistros and a premium food court.\n\n\n\t\t• Entertainment: Marina Bay Sands energizes the entertainment and nightlife scene in Singapore with nightclubs, world-class entertainment, a museum and a casino.\xa0The museum, which has a lotus-inspired design, will feature blockbuster exhibitions from around the world.\xa0Two state-of-the-art theaters will open with a total of about 4,000 seats. The Broadway hit The Lion King will debut in Sands Theater, with Le Theater presenting shorter-run shows such as concerts, award ceremonies and gala events.\xa0The outdoor event plaza along the promenade next to Marina Bay will host audiences for watching events on the bay or on the plaza.\xa0\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/associate-analyst-analyst-data-analytics-10074492?jobId=jobstreet-sg-job-10074492§ionRank=173&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
JOB SCOPE
[{'position': 'DATA ANALYTICS (MANAGER) | UP TO $6.4K/MONTH | CENTRAL | 2 YEARS (CONVERTIBLE)'}, {'company_name': 'Achieve Career Consultant Pte Ltd'}, {'small_section': ['Novena', 'Posted on 27-Oct-22']}, {'Location:': '\xa0Novena.', 'Working Hours:': 'Mon – Thur, 830am – 6pm.Fri, 830am – 530pm.', 'Duration:': '2-year contract (Renewable/chance of conversion).', 'Job Descriptions:': 'Conduct audits using computer-assisted audit tools such as ACL or programming language such as Python, R, etc..Carry out data analytics tests to support Business Audits..Work with other auditors and external stakeholders (Business and IT) to obtain understanding of processes and systems, to design data analytics tests to meet audit objectives..Perform continuous auditing assignments using data analytics..Perform any other duties as assigned..', 'Job Requirements:': 'Minimum of 4 years of relevant working experience in auditing..Candidates must have scripting experience using computer-assisted audit tools, Python, R or other relevant programming languages..Candidates must have good understanding of data structures and coding..Able to work independently, a good team player and resourceful with good Candidates with experiences in using data science, AI, machine learning for audits would be greatly advantaged..', 'HOW TO APPLY:': '', 'YOUR SUCCESS IS OUR ACHIEVEMENT!': '', 'Notice:': '', 'Cessation of Collection of full NRIC Numbers:': []}, {'Career Level': 'Senior Manager', 'Qualification': 'Not Specified', 'Years of Experience': '4 years', 'Job Type': 'Contract', 'Job Specializations': 'Accounting/Finance, Audit & Taxation', 'Registration No.': '199801996Z', 'EA No.': '05C3451', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "We're Here to Help People ACHIEVE Success!ACHIEVE is a multi-award-winning ISO 9001 recruiter that has placed more than 40,000 people in positions across industries. Established since 1990, with headquarters in Singapore and an office in Malaysia,\xa0our consultants are specialists in specific areas of specialization, and have the expertise to match candidates with the right permanent positions and contract jobs. In our 30 over years as a recruiter, we are widely recognised by jobseekers, MNCs and SMEs across the Asia Pacific region. A homegrown trusted brand, we are regularly featured in the media and have been honoured with multiple awards by the business community.\xa0In 1H 2022, we were accorded the rare honour of being conferred both the Human Capital Partnership Programme for Employment Agencies (HCP) by the Ministry of Manpower (MOM) and the Singapore Prestige Brand Award (SPBA) by the Association of Small and Medium Size Enterprises (ASME), in recognition of our business transformation efforts and push to build a Singapore core in the workforce!"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-manager-%7C-up-to-%246.4k-month-%7C-central-%7C-2-years-convertible-10109235?jobId=jobstreet-sg-job-10109235§ionRank=174&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Location:
[{'position': 'Junior Scientist/Scientist'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'The officer will be required to but not exclusive to:': 'Work in an innovative, high-spirited, and fun environment to test, develop and optimize immuno-diagnostics assays and novel analytical platform.Communicate with project lead on progress of experiments, present and interpret experimental results and support in work to optimize product development in accordance with ISO13485.Provide support in design optimization and verification plans and reports in accordance with ISO 13485.Handle and perform routine sample preparation of biological and clinical samples (eg. serum, plasma, cells, and tissue).Execute product development experiments and data analysis.Support and conduct validation and verification test based on ISO 13485 processes.', 'Qualifications:': "A minimum bachelor's degree in Science, Biology or related field.", 'Work Experience:': 'Minimally 3+ years laboratory experience in diagnostic and/or basic life sciences technologies preferably in immune/protein platforms.Prior experience in the following is highly desired : immune/protein diagnostic assay product development and optimization; cartridge-based assay development; clinical mass spectrometry.Experience in ISO 13485 setting or relevant industry experience is preferred.Entry level are welcome to apply.', 'Technical Skills:': 'Ability to work independently to execute experiments in the development and optimization of immuno diagnostic assays and novel analytical platforms.Knowledge of immunodiagnostic assays fundamental.Presentation and interpretation of results to project lead/internal stakeholder.Experience with office management software such as MS office (Excel, Word, PowerPoint).', 'Soft Skills:': 'Resourceful, demonstrate eager to learn attitude.Creative problem solving.Well organized and ability to multitask.Able to communicate effectively with good interpersonal, written communication and presentation skills.Enjoys working in a dynamic environment to progress project.Ability to work independent and as a team.', 'Abilities/Aptitudes:': 'Individual who is highly motivated, proactive, and adaptable to work exigencies.Good understanding of applicable medical device regulations and design control processes that comply with ISO 13485 is preferred.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/junior-scientist-scientist-10125165?jobId=jobstreet-sg-job-10125165§ionRank=175&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
The officer will be required to but not exclusive to:
[{'position': 'Senior/Principle Scientist'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'The officer will be required to but not exclusive to:': 'Work in an innovative, high-spirited, and fun environment to test, develop and optimize molecular, immuno-diagnostics assays and novel analytical platform..Drive technical aspects of assigned project..Work independently to plan, execute, assess, and evaluate efficiency and efficacy of experiments for the development and optimization of molecular and immuno diagnostics assay and novel analytical platforms..Apply design control and phase gate driven product development processes for the development of medical device systems and hardware platform products in accordance with ISO 13485..Communicate with internal and external stakeholders on progress of experiments, present and interpret experimental results and make recommendations on ways to optimize product development in accordance with ISO13485..Write design optimization and verification plans and reports in accordance with ISO 13485..Write/contribute to project scoping/planning and proposals..Handle and perform routine sample preparation of biological and clinical samples (eg. serum, plasma, cells, and tissue)..Execute product development experiments and data analysis..Conduct validation and verification test based on ISO 13485 processes..', 'The ideal candidate should possess the following qualities:': '', 'Qualifications': 'A PhD or Masters Degree in Life Sciences / Molecular Biotechnology / Biotechnology / BioEngineering or a related discipline..', 'Work Experience': '1+ years of diagnostics industry experience inclusive of diagnostics assay product development, reagent optimization, analytical and clinical validation, and quality control in the fields of oncology and infectious diseases..Prior in-depth experience in the following is highly desired: molecular and immune diagnostic assay product development and optimization; cartridge-based assay development; clinical mass spectrometry; DNA sequencing..Good track record of diagnostic development and/or product delivery is highly desired..', 'Technical Skills': 'Ability to work independently to plan and execute, assess, and evaluate efficiency and efficacy of experiments in the development and optimization of molecular and immuno diagnostic assays and novel analytical platforms..In-depth working knowledge of molecular and immuno diagnostic assays fundamental..Presentation and interpretation of results to internal and external stake holders..Mentoring of junior scientists in skills development..', 'Soft Skills:': 'Creative problem solving..Well organised and ability to multitask..Effective communicator and good people management skills..Report writing and presentation skills, including numeracy skills, information literacy and writing skills..Enjoys working in a dynamic environment to progress project..Ability to work independent and as a team..', 'Abilities / Aptitudes': 'Individual who is highly motivated, proactive, and adaptable to work exigencies..Experience in applying design control and phase gate driven product development processes for the development of medical device systems and hardware platform products in accordance with ISO 13485..Good understanding of applicable medical device regulations and design control processes that comply with the ISO 13485, FDA 21 CFA Part 820 and the 98/79/EC IVD and MDD Directives..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-principle-scientist-10125116?jobId=jobstreet-sg-job-10125116§ionRank=176&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
The officer will be required to but not exclusive to:
[{'position': 'Assistant Head / Senior Officer (Data Science), Analytics Centre of Excellence'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities:': 'Key Member of Analytics Centre of Excellence (COE), a community where like-minded professionals come together to cross learn, acquire exposure,\xa0and\xa0contribute to the delivery of data analytics projects across A*STAR..Work\xa0with business stakeholders/users to develop end-to-end analytics solutions,\xa0from\xa0problem & use case formulation, data pipeline, proof-of-concept, to developing\xa0and\xa0deploying the solution into production..Work\xa0with business users\xa0and\xa0tech/data engineering team to continue improving the enterprise analytic platform, tooling\xa0and\xa0reusable assets..Track, validate\xa0and\xa0improve performance of analytical solutions developed..Work\xa0and\xa0share with Analytics COE members & community to continue develop advanced analytics capabilities, adoption of best-in-class techniques\xa0and\xa0practices..Responsible for providing operational support\xa0and\xa0maintenance of the data & analytics infrastructure platform\xa0and\xa0system..Responsible to curate, develop\xa0and\xa0conduct training sessions/workshops to equip COE members\xa0and\xa0wider organization with the necessary data analytics/science knowledge\xa0and\xa0skills..', 'Job Requirements:': 'Bachelor’s degree in computer science/engineering, information technology, business analytics, data science or artificial intelligence with specialty\xa0and\xa0focus in data mining, statistical / mathematical modellings\xa0or\xa0machine learning..At least 3\xa0years\xa0of experience in conceptualizing\xa0and\xa0developing advanced analytics\xa0or\xa0data science solutions to solve business problems..Familiar with analytics\xa0and/or\xa0machine learning platforms\xa0and\xa0how it integrates with upstream\xa0and\xa0downstream data\xa0and\xa0production systems..Experience of\xa0working\xa0with business users to gather/understand user requirements and\xa0working\xa0with tech/data team to improve analytics platform to resolve user pain points..Able to analyze business needs, articulate the solution framework including the model output, business decision\xa0and\xa0potential impact to drive the adoption of the solution..Excellent written, oral & inter-personal communication skills..Technical skills in SQL, R/Python, advanced analytics & visualization tools such as Tableau\xa0and\xa0PowerBI, ML packages\xa0and\xa0tools..Practical experience of cloud infrastructure\xa0and\xa0services,\xa0and\xa0data warehouse, will be an added advantage..Entry level who are keen in data science/analytics are also welcomed to\xa0apply..', 'The above eligibility criteria are\xa0not\xa0exhaustive. A*STAR may include additional selection criteria\xa0based\xa0on its prevailing recruitment policies. These policies may be amended\xa0from\xa0time to time without notice. We regret that only shortlisted\xa0candidates\xa0will be notified.': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-head-senior-officer-data-science-analytics-centre-of-excellence-10123572?jobId=jobstreet-sg-job-10123572§ionRank=177&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Data Engineer'}, {'company_name': 'ComfortDelGro Corporation Limited'}, {'small_section': ['Toa Payoh', 'Posted on 7-Nov-22']}, {'Our Team:': '', 'Your Responsibility:': '', '1.\xa0\xa0\xa0\xa0\xa0\xa0Understanding Business Needs for Data': 'Identify data engineering requirements across multiple business verticals, systems, platforms, and applications..Design technical requirements and suitable data models, based on business data needs, while ensuring compliance with group data governance, privacy, and security guidelines..Perform data profiling and advise the business on data acquisition strategy..', '2.\xa0\xa0\xa0\xa0\xa0\xa0Ensure Smooth Operations of Group Cloud Data Infrastructure': 'Guide the alignment of information management standards with the enterprise architectural plan and information security standards.Develop strategies for seamless and low-risk integration of data between systems.Communicate the data architecture, design and recommendations to stakeholders.Proactively identify and resolve blockers & issues, exploring options and solutions..', '3.\xa0\xa0\xa0\xa0\xa0\xa0Build and Maintain Data Pipelines': 'Facilitate the integration of cloud data platform with existing enterprise infrastructure.Build scalable data pipelines to extract, transform, and “serve” data to enable data analytics solutions..Test data pipelines for scalability, reliability, and exceptions handling..Monitor pipelines performance and ensure proper data audit measures are in place..Automate everything, possible..', '4.\xa0\xa0\xa0\xa0\xa0\xa0Knowledge Management and Team Mentoring (Senior Position)': 'Document internal SOPs and sharing of Data Engineering Best Practices.Guide and mentor junior team members and new joiners..', 'Requirements:': '3-5+ years of relevant tech, app development or data engineering working experience..Extensive experience in Python, SQL, or other scripting languages..Working experience in deploying data engineering pipelines, data management/ ETL tools..Experience with cloud technologies such as Microsoft Azure (ADLS, Azure SQL, Data Factory, Synapse or DataBricks, etc.) is a plus..Experience with other aspects of data management such as data governance, security, metadata management, data lifecycle management and archival..Highly analytical self-starter and self-learner who continuously keeps up to date with industry developments..Self-motivated, pro-active, and a good team player.Independent, creative problem solver, out-of-the-box thinker and looking to create the maximum impact in the shortest time!\xa0.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200300002K', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Parking, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tComfortDelGro Corporation Limited (CDG) is one of the world’s largest land transport companies with a total fleet size of more than 40,000 buses, taxis and rental vehicles. Headquartered in Singapore, the CDG also has operations in China, the United Kingdom, Ireland, Australia, Vietnam, and Malaysia. More information about CDG can be found at http://www.comfortdelgro.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10140857?jobId=jobstreet-sg-job-10140857§ionRank=178&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Our Team:
[{'position': 'Data Engineer'}, {'company_name': 'PIXL SOLUTIONS PTE.LTD.'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa08,000', 'Posted on 31-Oct-22']}, {'Job responsibilities:': '', 'ETL processing:': 'Responsible for data collection, cleaning, and conversion processing based on ElasticSearch Beats, Aws Step Function, and Aws Fluentd systems.', 'System Maintenance\u200b\u200b\u200b:': 'Responsible for data system maintenance of Elasticsearch, Athena, and Bigquery, including data maintenance, system maintenance, and routine troubleshooting.', 'Query and visualization:': 'Responsible for data query and visualization based on Esearch and Athena Bigquery systems, and can handle some data requirements of different departments..', 'Requirements:': 'Bachelor degree or above, major in mathematics, academic, computer related,.At least 1 year related work experience;.At least 1 year of experience in using Admob data analysis;.Master the relevant knowledge of statistical analysis and statistical learning methods;.Understand and master programming languages \u200b\u200b- especially Python..Possess professional data processing and analysis capabilities;.Have the ability to think independently and problems, have a certain ability to deal with work pressure, and be able to withstand work pressure;.Have good expression, communication and negotiation skills;.Data experience in the Internet advertising industry is preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201943748W', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '5 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Casual (e.g. T-shirts), perfomance bonus, Flexible'}, {'Company Overview': 'Pixl Solutions was established in 2019\xa0 and predominantly supplies very sophisticated and reliable IT services to power some of the fastest growing mobile services in the world with a strong specialty in network security and privacy protection. With tens of millions of users endorsing our capabilities, Pixl Solutions strives to help our partners achieve great success through our commitment to excellence in what we do.\xa0Pixl Solutions has its headquarters in Singapore and was set up by a group of serial entrepreneurs who are specialists in software development and marketing for the global market. Founders employs people worldwide, more than 50 percent of whom work outside Singapore as PIXL Solutions owns offices in North America, Taiwan and other countries in Asia.\xa0Combining our engineering excellence, superior product design capability and robust operational support, we help bring Internet freedom to customers over the world.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10119294?jobId=jobstreet-sg-job-10119294§ionRank=180&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing'}]
Job responsibilities:
[{'position': 'POS Analyst (Data Analytic, FMCG, North-east)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Ang Mo Kio', 'SGD\xa03,500 - SGD\xa05,000', 'Posted on 3-Nov-22']}, {'Salary up to $5000': '', 'Location: Ang Mo Kio': '', 'Job Summary:': 'Consolidate, harmonize & condition POS from multiple sources & retailers..Deploy ETL & automation for harmonization: prepare POS using Python & MS Excel..Maintaining & updating weekly & monthly POS at region & country level.Update existing dashboard & PBIs.Develop new PBI dashboards as per business needs.Deliver insights from multiple POS data: sell-in, distributor sell-out, & retailer sell-out.Deliver concise reports for your manager, stakeholders, and senior leaders.Support in campaign & NPI POS tracking.Other responsibilities: 20%.', 'Other responsibilities: 20%': 'Manage budget tracking dashboard for APAC.Manage new PO raising & monitoring for SG team on SAP.', 'Qualifications:': 'Minimum Bachelor’s degree in Computer Science/Business Administration /Mathematics /Statistics/Data Analytics Science or equivalent; MBA or Data analytics related Master’s degree is preferred.Minimum 1 yrs experience with Power BI is a must..1+ years directly related experience in delivering POS analytics for a CPG/FMCG organization (client or agency side) is preferred.Experience in POS data handling – ETL, conditioning & harmonization will be given preference..Asia Pacific/Asia/SEA experience preferred.Experience working in an agile environment..Fluent in English (verbal & written)..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/pos-analyst-data-analytic-fmcg-north-east-10128703?jobId=jobstreet-sg-job-10128703§ionRank=182&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Salary up to $5000
[{'position': 'Data Engineer'}, {'company_name': 'BYD (Singapore) Pte. Ltd.'}, {'small_section': ['North - Others', 'Posted on 3-Nov-22']}, {'Responsibilities:': '', 'Requirements:': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '201409518W', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '10 days', 'Industry': 'Automobile / Automotive Ancillary / Vehicle', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Carrors Cantre'}, {'Company Overview': 'BYD is one of China’s largest companies and has successfully expanded globally. Specializing in battery technologies, their green mission to “solve the whole problem” has made them industry pioneers and leaders in several High-tech sectors including High-efficiency Automobiles, Electrified Public Transportation, Environmentally-Friendly Energy Storage, Affordable Solar Power and Information Technology and Original Design Manufacturing (ODM) services.\nBYD (Singapore) Pte. Ltd. was established to develop the electrified transportation solutions for local customers, includes electric cars, buses, forklifts and new energy products.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10128752?jobId=jobstreet-sg-job-10128752§ionRank=183&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Senior/Executive, Business Development & Data Analytics, Line Management'}, {'company_name': 'Pacific International Lines (Pte) Ltd'}, {'small_section': ['Downtown Core', 'Posted on 4-Nov-22']}, {'Job Responsibilities include:': 'Ensure optimal application of data & analytics to support daily business decisions.Perform monthly study on contribution margin to develop cross-service product synergies.Assist with the implementation of eCommerce projects and optimization of corporate systems, data and tools to enhance department productivity\xa0.Drive internal process digitization like customer segmentation to deliver efficiency gain.Collaborate with Trade teams to review & optimize service cargo mix.Collaborate with Network Planning Team to review network coverage and service costings.Keep abreast and validate local market intelligence & evaluate product innovation opportunities.Steer improvement mindset and adoption of new technologies & processes.Other ad-hoc duties as assigned by your supervisor.', 'Job Requirements:': 'Degree in Maritime/Business or equivalent with at least 3 years of related experience or commercial work in liner shipping..Self-driven with ability to multitask and work under pressure..Possess good business acumen with strong analytical and communication skills..Proficient in Microsoft Excel.Experienced/Proficient in Tableau, Power-BI, Anaplan, programming will be an advantage\xa0.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '196700080N', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '28 days', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\nAbout PIL\n\n\tPacific International Lines (PIL) incorporated in 1967 has developed from a coastal shipowner/operator in Singapore to become one of the largest shipowners in Southeast Asia. Today, it is ranked 11th largest container carrier in the world, offering container liner services and multi-purpose services at over 500 locations in 90 countries worldwide. PIL has diversified into logistics related activities such as supply chain management, consolidation/distribution facilities, warehousing, container depot/terminal operations as well as having interest in ship-agencies worldwide, container manufacturing/repairs, ship recycling, marine services and real estate.\n\nPIL Operation\n\n\tPIL operates container liner services covering the Far East, Middle East, India sub-continent, Africa, Australasia and Latin America. It has a dedicated network of feeder services covering a comprehensive range of ports in South East Asia, the Bay of Bengal and the East Coast of India.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-executive-business-development-data-analytics-line-management-10104134?jobId=jobstreet-sg-job-10104134§ionRank=184&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Responsibilities include:
[{'position': 'Manager/Assistant Manager, Data & Analytics'}, {'company_name': 'Resorts World at Sentosa Pte Ltd'}, {'small_section': ['Central', 'Posted on 6-Nov-22']}, {'Job Description:': 'Supports the design, implementation and maintenance of data flow channels and data processing systems that support the collection, storage, batch and real-time processing, and analysis of information in a scalable, repeatable, and secure manner..Keep abreast of latest technologies and products in database and data processing software, and technologies..Recommend solutions to improve new and existing data platforms including migration..Experiment with, select, and implement cutting edge Big Data tools and frameworks required to provide requested capabilities..Build, deploy and manage big data tools with solid DevOps functions. Be able to manage CI/CD pipelines..Develop codes and scripts to process structured and unstructured data in real-time from a variety of data sources..Implement and monitor data security and privacy measures on data solutions..Maintenance and support of batch job processing in Data warehouse / data platform.Automate and optimize the data collection and analysis processes, data releasing and reporting tools..Gather requirements for data warehouse projects, conducting UAT and to provide training for end users, as and when required..Mentoring junior team members through code review and enablement training.', 'Job Requirements': 'Degree in Computer Science/Information Systems or equivalent with minimum 4 years of hands-on experience in the maintaining and supporting an enterprise level data platform..Must have hands-on ETL/ELT experience, specifically on Microsoft SSIS / Azure Data Factory, strong working experience ETL / ELT experience will also be acceptable..Proficiency in SQL and deep understanding of DWH architecture and data/table formats such as parquet/json/csv in distributed data processing and storage systems..Possess good understanding of software development life cycles..Ability to analyze large datasets, data model and interpret data pattern..Working experience in handling projects involving Data Analytics related work is a plus..Knowledgeable on cloud systems like Alicloud, Azure.Experienced in managing Tableau Servers is a plus..Good experience with programming languages like Python, R, and scripting languages such as PowerShell and bash is a plus..Experience in machine learning operations, or setting up environments for data scientists/machine learning engineers would be advantageous.Strong communication and interpersonal skills..Have a positive attitude and willingness to learn and adapt to a changing environment..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200502573D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Hotel / Hospitality', 'Benefits & Others': '-, -'}, {'Company Overview': '\n\tResorts World Sentosa (RWS), Asia’s premium lifestyle destination resort, is located on Singapore’s resort island of Sentosa. Spanning 49 hectares, RWS is home to world-class attractions including Universal Studios Singapore, S.E.A. Aquarium, Dolphin Island and Adventure Cove Waterpark. Complementing the adventure and adrenaline of its theme parks and attractions are six unique luxury hotels, the world-class Resorts World Convention Centre, a casino and the Asian flagship of a world-renowned destination spa. RWS offers award-winning dining experiences and exciting cuisines from around the world across its many renowned celebrity chef restaurants, establishing itself as a key player in Singapore’s vibrant and diverse dining scene and a leading gourmet destination in Asia for epicureans. The integrated resort also offers world-class entertainment, from original resident productions to concerts and public shows such as Lake of Dreams. RWS has been named “Best Integrated Resort” since 2011 for nine consecutive years at the TTG Travel Awards which recognises the best of Asia-Pacific’s travel industry.\n\n\tRWS is wholly owned by Genting Singapore, a company of the Genting Group. For more information, please visit www.rwsentosa.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-assistant-manager-data-analytics-10113006?jobId=jobstreet-sg-job-10113006§ionRank=185&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Assistant Manager, Data Visualisation & Process Excellence - (22000216)'}, {'company_name': 'The Great Eastern Life Assurance Co Ltd'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Purpose': '', 'The Job': 'Design and develop Tableau dashboards to automate and track business performance and project initiatives.Provide automation support for the division to improve operational efficiency.Monitor and track development of distribution incentives and challenges on a regular basis using automated reports.Drive analytics and insights on distribution performance and behavior to support business decision-making process.Work cross-functional to ensure the delivery of distribution strategic initiatives and execute any ad-hoc tasks as assigned.Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..', 'Our Requirements': 'Degree in Finance, Business Analytics, Statistics, Actuarial Science or related.At least 3 years of relevant professional experience with insurance industry knowledge.Proficient with data visualization tools (i.e. Tableau, Qlik, or Power BI).Proficient with data tools such as SQL and Python, and has working knowledge in handling large datasets.Experience in working with Microsoft Excel and PowerPoint.Ability to automate processes, reports and trackers using Excel VBA, Python, SQL..Possesses the following qualities: analytical, strategic, strong business acumen and sense of numbers, meticulous and proactive.High level of integrity, takes accountability of work and good attitude over teamwork..Takes initiative to improve current state of things and adaptable to embrace new changes..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '190800011G', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Insurance'}, {'Company Overview': '\n\tFounded in 1908, Great Eastern is a market leader and a well-established trusted brand in Singapore and Malaysia. With S$82.5 billion in assets and over 4 million policyholders, the Group also operates in Indonesia and Brunei and has a presence in China as well as a representative office in Myanmar.\n\n\tThe Great Eastern Life Assurance Company Limited and Great Eastern General Limited have been assigned the financial strength and counterparty credit ratings of "AA-" by Standard and Poor\'s since 2010, one of the highest among Asian life insurance companies.\n\n\tWe are a LIFE company and our purpose is to empower generations to live healthier and better so that they can live life to the fullest. Be it celebrating life’s simple moments or commemorating life’s major milestones, every day, in many ways, we inspire those around us to live great and celebrate life.\n\n\tPlease note that our career opportunities are only posted on our Career Website (http://grp.gelife.co/findacareer) and on our authorised job platforms which are specifically LinkedIn, JobStreet and eFinancialCareers. We do not initiate any unsolicited calls and all official emails from Great Eastern will be sent from email addresses ending with “@greateasternlife.com”. Should you receive any communications outside from these channels listed, please do not provide any personal information and do reach out to us at [email\xa0protected] or at 6248 2990 for us to assist you and confirm the legitimacy of the content.'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-manager-data-visualisation-process-excellence-22000216-10101597?jobId=jobstreet-sg-job-10101597§ionRank=186&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Purpose
[{'position': 'First VP / VP, Data Analyst, Wholesale Banking and Market Operations #WorkNow'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Technology and Operations ': '', 'Job Responsibilities': 'Manage the book of work for risk and operational efficiency related use cases across the Wholesale Banking and Market Operations teams.Identify data sources and provisioning of data into enterprise data platform.Apply database tools and statistical predictive models by analyzing datasets and derive insights using a risk lens.Responsibility for developing, maintaining and extracting knowledge from internal and external data sets.Create visualization dashboards for monitoring and analysis purpose.Implement automation in data compilation for analysis use in management meetings.Partner and support users in other internal teams to develop and deliver data science solutions to further value-add in assurance reviews and other risk programs.', 'Job Requirements': 'Degree in Computer Science, Math, Statistics, Operations Research or other quantitative discipline.\xa0.5-10 years experience in quantitative analysis and data science (machine learning / predictive modelling) with proficiency using common analysis tools (eg. SAS, Python, Hue).Proficient in visualization/dashboard tools (eg. Qliksense, Power BI).Excellent communication skills (verbal, written) to deliver insights to senior management and stakeholders.Deep dive into data to find answers to yet unknown questions and have a natural desire to go beneath the surface of a problem..Ask relevant questions and possess the skills to build algorithms necessary to find meaningful answers..Motivated and driven, able to work independently and a good team player as part of a multidisciplinary team.', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/first-vp-vp-data-analyst-wholesale-banking-and-market-operations-worknow-10083897?jobId=jobstreet-sg-job-10083897§ionRank=188&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Research Assistant, - (Operations Mgmt., Sharing Economy), R00010315'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 23 hours ago']}, {'Job Responsibilities': 'Support the PT in research efforts.Conduct literature surveys and write reports.Collect data, assist in data analysis and reporting of results.Data entry, data cleanup, and edit write-ups.Model assigned research problems and publish journal papers.', 'Job Requirements': 'Bachelor or Master degree in business analytics, operations research, computer science, mathematics, or related areas.Ability to conduct and write literature reviews and research reports.Meticulous with good programming skills, especially Python, R, or Matlab programming skills.Strong written and communication skills in English.Candidate with research experience in inventory management, sharing economy are preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-operations-mgmt.-sharing-economy-r00010315-10145728?jobId=jobstreet-sg-job-10145728§ionRank=189&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Infrastructure Engineer (Data Architect/ Management)'}, {'company_name': 'Triton AI Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa05,500 - SGD\xa09,000', 'Posted on 6-Nov-22']}, {'Permanent position, Salary up to $9,000 with AWS + 3 months VB': 'Permanent position, Salary up to $9,000 with AWS + 3 months VB.Reputable Healthcare Sector, West MRT.', 'Reputable Healthcare Sector, West MRT': 'The ideal candidate should possess at least 5 years of experience in data architecture/ engineering and working/ programming knowledge in Python, R, Java, or C#.', 'The ideal candidate should possess at least 5 years of experience in data architecture/ engineering and working/ programming knowledge in Python, R, Java, or C#': "Collaborate with stakeholders to understand requirements for data structure, availability, scalability & access..Establish and maintain data pipelines from ingestion (batch, real-time, or streaming), stage, extract-transform-load (or extract-load-transform), fuse, and use in analytics and machine learning (batch, real-time and asynchronous).Establish and maintain data virtualization over ingested datasets in the company's Data Lake, for data consistency, standardization, and ease of use..Assist in data governance quality assurance for oversight, monitoring and reporting results.Collaborate with infrastructure and operations teams to architect and implement performance-tuning solutions for data storage and analytics..Communicate and build partnerships with stakeholders, vendors, developers, and testers, presenting technical concepts to business stakeholders in understandable terms to garner support for solution architectures, resourcing, and budgeting to align with the data architectural roadmap..Foster continuous improvement by looking for opportunities to improve design practices and technical approaches within the department..Evaluate tools and techniques, engaging vendors where needed, to support estimation of effort, costs, and bill of materials, and create common ground for the solution to be developed..Serve as a technical expert on solution design, development, and implementation requirements to address business needs while balancing financial and technical constraints such as scalability, security, performance, and reliability..Bachelor’s Degree in Business, Digitalization, Technology or related discipline.At least 5 years of experience in data architecture/engineering..Working knowledge of common programming languages such as Python, R, Java, or C#..Experience with relational databases (including SQL fluency) and nonrelational databases..Familiarity with extract-transform-load/extract-load-transform operations is a must (eg Informatica)..Familiarity with data warehousing concepts (schemas, operational data stores, feature stores, datamarts) is a must..Experience with cloud-based computing, storage, analytics, administration, and management, such as Healthcare Commercial Cloud..Prior experience in the healthcare industry or technology startups will be an advantage.Professional certification in cloud infrastructure, Project Management, data engineering, data-ops, or equivalent areas would be advantageous..Working knowledge of streaming ingestion and streaming analytics is an advantage..Working knowledge of container technology is an advantage..", 'Interested candidates can forward their CVs in MS Word format to jermaine#triton-ai.com': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '21C0661', 'EA No.': '21C0661', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '5 days', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'TRITON AI\xa0(EA License Number 21C0661)\xa0is a Singaporean-owned talent resource organization formed with the purpose of developing a Singaporean core for our clients.Established since 2011 and formally operating as Talent Touche Pte Ltd,\xa0TRITON AI\xa0has undergone a total rebranding exercise in 2021 in alignment with our mission to enhance the effectiveness of Talent Acquisition and People-Powered Projects with\xa0Technology\xa0and\xa0Artificial Intelligence.\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-infrastructure-engineer-data-architect-management-10138890?jobId=jobstreet-sg-job-10138890§ionRank=190&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Permanent position, Salary up to $9,000 with AWS + 3 months VB
[{'position': 'Data Analyst | Central'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa08,000', 'Posted on 1-Nov-22']}, {'Job responsibilities': "Extract and clean the data from various data sources to generate daily, weekly and monthly reports.Set up the automation of reports from data extracted and stored by AWS.Provide data analysis and insights to identify and recommend areas of improvement.Fulfil ad-hoc data request from client and management.Have some experience in ETL processes and mapping different sources of data with key identifiers.Writing SQL queries to retrieve information quickly.Management and Identification of key data points, trends that can be used in tandem with operations to increase KPI's.", 'Knowledge/Skills Required': 'Experience in contact centre/service industry including data/trend prediction & analysis, self-help migration.Experience in building reports using Excel, Tableau, SQL, Power BI, Python, or other business intelligence and data analytics tools Strong communication and presentation skills.Proactive and able to work independently with minimum supervision.Excellent time management with strong critical thinking and ability to handle pressure.', 'click the "APPLY NOW" button': []}, {'Career Level': 'Non-Executive', 'Qualification': 'Not Specified', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-%7C-central-10123801?jobId=jobstreet-sg-job-10123801§ionRank=191&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job responsibilities
[{'position': 'Research Fellow (Colorectal Cancer Research Laboratory)'}, {'company_name': 'Singapore General Hospital'}, {'small_section': ['Bukit Merah', 'Posted 24 hours ago']}, {'Requirements:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '198703907Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '16 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Leave benefits, 42 hours'}, {'Company Overview': "\nSingapore General Hospital is Singapore's largest flagship tertiary hospital with an 10,000-strong multi-generation diversified workforce and a rich 190 years history. Every year, the SGH Campus caters to over 1 million patients, providing advanced medical care under its 36 clinical specialties.\nAs an academic hospital, SGH plays a key role in nurturing doctors, nurses and allied health professionals and is committed to innovative translational and clinical research to provide the best care and outcomes to patients.\nWe offer a challenging, family-friendly and conducive work environment with enormous scope and opportunities to meet your career aspirations, advancement and personal development.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-colorectal-cancer-research-laboratory-10145597?jobId=jobstreet-sg-job-10145597§ionRank=192&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Requirements:
[{'position': 'Scientist (Visual Intelligence), I2R'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'JOB REQUIREMENT': 'PhD in Computer Science, Computer Engineering, Electronic Engineering or\xa0related fields;.Minimum 1 year of relevant experience in Computer Vision, Deep Learning\xa0or Machine Learning areas;.Good programming skills in Python, working experience in using deep\xa0learning techniques for computer vision applications in the area of feature\xa0representation learning and metric learning, able to at least modify and\xa0improve existing NN architecture for better performance, experienced in\xa0few-shot learning, incremental learning, deep hash embedding, or rankbased\xa0metrics would be most welcome;.Familiar with PyTorch, TensorFlow, Keras or other deep learning frameworks,\xa0computer vision open source libraries, Linux OS and GPU;.Passionate about deploying research outcomes to industry applications\xa0besides publications;.Critical thinker, self-motivated, can work both independently and in teams,\xa0with good analytical, interpersonal, presentation and communication skills..', 'JOB DESCRIPTION': '', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-visual-intelligence-i2r-10127671?jobId=jobstreet-sg-job-10127671§ionRank=193&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
JOB REQUIREMENT
[{'position': 'Sr. Data Platform Engineer- Java/ Kafka'}, {'company_name': 'Avensys Consulting Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa07,000 - SGD\xa012,000', 'Posted on 3-Nov-22']}, {'Job Responsibilities:': '', 'WHAT’S ON OFFER': '', 'CONSULTANT DETAILS': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200710657H', 'EA No.': '12C5759', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '1 day', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tAvensys is a leader in providing technology enabled business solutions and services. Since inception, Avensys has helped clients use IT more efficiently to improve their operations and profitability, focus on core competencies and achieve business results such as increased agility, innovation and profitable growth. Our in-depth technical knowledge coupled with industry experience and our unique methodologies enable us to successfully deliver and meet our customer’s expectations.'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-data-platform-engineer-java-kafka-10128964?jobId=jobstreet-sg-job-10128964§ionRank=194&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Officer / Junior Scientist'}, {'company_name': 'Start up in Singapore'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Summary\xa0': '', 'Research Officer / Junior Scientist\xa0': '', 'Duties & Responsibilities': '', '·\xa0\xa0\xa0\xa0\xa0\xa0\xa0': '', 'Job Requirements & Attributes': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '202040341G', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '1 day', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'A molecular diagnostics start-up is looking for pioneers\xa0to join them in their Research and Development team. The role will allow you to contribute and participate in the design and development of an automated IVD platform and assay.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-officer-junior-scientist-10074524?jobId=jobstreet-sg-job-10074524§ionRank=195&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Summary
[{'position': 'Data Analyst Compliance'}, {'company_name': 'MBA Michael Bailey Associates Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Jobscope:': 'Facilitate internal data requests for all global entities to assure quality and data integrity for external audits and exams, and to provide analysis on customer profiles, transaction activity and company financial data.Creating and maintaining operational and tools analytics in support of our operational effectiveness and tuning the efficiency of our tools.Design and implement analytics strategies to convert data into actionable business intelligence.Build and automate key performance dashboards and metrics reporting for all Compliance & Finance processes to display insights and provide transparency about our customers and our platform.Map all required data points to understand the current data architecture and seek improvements, where necessary.Assist in defining, and developing deep insights and root cause analysis for our Compliance and Finance teams.Collaborate across product, engineering, data science, marketing, business development, finance and our customers to help build and continuously improve the data pipeline.Hone your skills on data visualisation to create and maintain automated dashboards.', 'Job Requirements:': 'Experience in developing data analytics solution or machine learning models for compliance.Experience in design, development and implementation of data analytics solution using Python and data visualisation tools such as Power BI / Qlikview / Tableau..Good knowledge in statistical analysis, data mining and processing, decision tree design, clustering, knowledge of SQL, Python or other analytics tools are essential..Compliance reporting is a nice to have.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201100372C', 'EA No.': '11C5721', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '12 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\nOur business:\n\n\tWe are a leading international resourcing consultancy with thirteen offices across Europe and Asia Pacific (London, Amsterdam, Eindhoven, Brussels, Munich, Düsseldorf, Zurich, Singapore, Sydney, Kuala Lumpur). Our clients are global market leaders in the IT, Telecommunications, Oil & Gas, Pharmaceutical and Finance & Risk sectors.\n\n\tOur success is built on a strong set of values and a history of working in close partnership with clients and contractors to provide long term staffing solutions. We take a strategic approach based on trust, knowledge and support to supply expert consultants of the highest calibre.\n\nWorking at Michael Bailey Associates:\n\n\tCommitment, resilience, innovation, passion, honesty and integrity are the attributes that we look for in our employees. In return, we are committed to fully supporting our team as they develop their careers.\n\t\n\t\n\t\tAs a well-established international company, we offer outstanding career opportunities at all levels. We invest heavily in training, technology and infrastructure to create a working environment that drives success, and we offer a competitive rewards and incentives package.\n\nContracting for us:\n\n\t\tWe are committed to providing the best support available for our contractors. With dedicated Account Managers working in partnership with clients and contractors, our reputation is extremely positive with both clients and contractors, enabling us to attract and retain the best talent available.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-compliance-10066064?jobId=jobstreet-sg-job-10066064§ionRank=197&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Jobscope:
[{'position': 'Research Fellow, (Data Scientist in Air Traffic Management) (R00010489)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:\xa0': 'The Research Fellow shall work on subprojects to conduct research on advanced air traffic management concepts, for example but not limited to a novel Air Traffic Flow Management Concept..', 'Job Requirements:': 'PhD degree in Data Science, Air Traffic Management or relevant fields..Minimum of 4 years’ production experience with spatial and temporal data.Minimum of 4 years’ production experience in Python (these may be proven via portfolios or GitHub user page, or similar).Experience in managing own project plans, designing of experiments, delivering a research or development product to clients.Knowledge in the following computing skills is advantageous: Machine Learning; Big Data (distributed computing), relational databases.Experience in aviation in particular Air Traffic Management, Air Traffic Services, Air Traffic Control.Work on subprojects of a larger CONOPS study, to develop a plan, conduct experiments using simulators, analyse data, find insights/hypothesis, visualize data, liaise with the sponsor, deliver project reports..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-scientist-in-air-traffic-management-r00010489-10046334?jobId=jobstreet-sg-job-10046334§ionRank=198&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'AI Engineer'}, {'company_name': 'Randstad - Corporate'}, {'small_section': ['Singapore', 'SGD\xa06,000 - SGD\xa07,000', 'Posted on 5-Nov-22']}, {'about the company': '', 'about the job': 'Work with end customers and internal vision system development team to define business challenges that require the use of various ML/DL & Computer Vision Algorithmic techniques.Analyze large sets of Visual (images and videos) and Sensor data and train machine learning models using commercial tools such as Cognex as well as open-source platforms(TensorFlow, pyTorch, OpenCV) for detection, classification, tracking, behavioral analysis, anomaly detection..Gather customers feedback and continuously improve existing ML models and algorithms..Write code (Python/C++/C#) to prepare, use, enhance and test models..', 'about the manager/team': '', 'skills and Experience required': 'Proficient in C# required..Knowledge in Image processing and vision inspection systems is preferable..Experience in using one of ML open-source platforms(TensorFlow, pyTorch, OpenCV) is required..Knowledge in programming languages such as C++ is an added advantage..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'EA No.': '94C3609', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tHeadquartered in the Netherlands, Randstad is the second largest recruitment & HR services provider globally. Operating in 39 countries, Randstad employs over 567,700 people in meaningful employment everyday.\n\n\tWith global reach and local expertise, Randstad Singapore has close to 20 years experience in the Singapore market and are dedicated to delivering high quality, consistent service to our clients and candidates.\n\n\tOur passionate, consultants will provide you with career advice and opportunities that meet your career goals and aspirations. With the widest range of industry specialists across:\n\t\xa0\n\n\n\t\tAccounting\n\n\t\tBanking & Financial Services\n\n\t\tCorporate Support\n\n\t\tEngineering\n\n\t\tHuman Resources\n\n\t\tInformation Technology\n\n\t\tLife Sciences\n\n\t\tSales, Marketing & Communications\n\n\n\n\t\tLet us help you shape your work of work.\n\n\t\tSearch for your next career opportunity at www.randstad.com.sg/jobs or contact us on +65 6510 1350.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-engineer-10137045?jobId=jobstreet-sg-job-10137045§ionRank=199&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
about the company
[{'position': 'Assistant Manager/Manager, Business Analyst (5388)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Responsibilities:': 'Design and perform business-oriented, comprehensive data analysis (both sales and web analytics data) to monitor business performance , identify trends, generate key insights and discover potential business opportunities, both at day to day operational and strategic level.Develop Business Dashboards & Automation of Reporting across functions.Conduct Pricing Competitive Benchmark and develop pricing strategy along with internal stakeholders to help drive standard configurations and profitable growth.Support in Marketing Experimentation through Segmentation, Operationalization & Post-Mortem Analysis.Build customer segmentation strategies together with performance marketing team and implement short and long-term plans for growth and retention of customers to increase profitable growth..Provide suggestions on marketing experiments to run, develop actionable insights insights about the customer / business and collaborate with various stakeholders to design meaningful marketing promotion and digital experiments to optimize conversion performance and improve business performance.Develop basic analytical models with tools that help solve business problems / provide directions for our online business.Provide insightful analysis to management and internal stakeholders for decision making.Work with Analytics / Data Science team to interpret the output of the predictive models to develop digital marketing experimentation plan.Work with the Tech team to drive marketing technology changes and enhancement to support performance goal.Support and manage adhoc key projects and/or business initiatives.', 'Requirements:': 'Degree in Business / Statistics / Computer Science or related field.Possess strong analytical skills with at least 3 - 5 years of experience in Data Analytics and Business Intelligence.Strong background in statistical concepts and calculations.Innovative and strong analytical and algorithmic problem solvers.Experience with scripting languages (e.g., Python) for orchestration and data manipulation.Data engineering experience, including SQL and experience manipulating structured and unstructured data sources for analysis..Technically advanced in MS Office (Excel and Powerpoint) and business Intelligence tools (eg Microstrategy, Tableau).Knowledge of data modeling and database technologies..Experience working in a matrix cross-functional organization and being a team player.Experience working in digital marketing and hands-on digital experiments for eCommerce will be a bonus.Familiarity in Campaign Measurement, Predictive Modelling, Segmentation, Hypothesis Testing, Cross Sell and Up Sell Analytics, Forecasting, A/B Testing.Familiarity in marketing tools - Adobe Marketing Cloud and Oracle Responsys will be a bonus.Strong acumen / interest in consumerism trends and eCommerce developments.Strong communication skills (verbal and written/visual) to create and deliver compelling presentations of experimentation plans and insights to teams, senior management and internal & external stakeholders..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-manager-manager-business-analyst-5388-10143541?jobId=jobstreet-sg-job-10143541§ionRank=200&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Fellow (Mathematical AI for Molecular Data Analysis) | [R00008503] #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Responsibilities': 'Perform molecular data analysis, including molecular dynamics analysis, quantum mechanism analysis, geometric and topological modeling.Data analysis with machine learning and deep learning models.', 'Job Requirements': 'PhD in Mathematics, computer sciences, bioinformatics, computational physics/chemistry/biology, or other related areas.Previous experience on topological data analysis, machine learning and molecular data analysis is preferred.Have good training on computation, algorithm design and modeling.Research areas on applied topology, computational geometry/topology, molecular dynamics, bioinformatics, data analysis, and machine learning.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-mathematical-ai-for-molecular-data-analysis-%7C-%5Br00008503%5D-urgent-10138946?jobId=jobstreet-sg-job-10138946§ionRank=201&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate / (Data Science & Mobility), R00004884 #LetsGetToWork'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 1-Nov-22']}, {'Job Responsibilities': 'Survey and data collection for active mobility (walking, cycling, and riding PMD) safety.Statistical & causal correlation analysis for the collected data.Modelling and analysis of the interaction behaviour.Report writing and documentation for the project.', 'Job Requirements': 'Possess Master degree in Transportation Engineering/Data Science/Computer Science/Statistics/Social Science or related disciplines.Experience in transportation engineering.Experience in data analytics.Good interpersonal skills.Excellent teamwork awareness.Good communication and writing in English.Strong responsibility for research / work.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-science-mobility-r00004884-letsgettowork-10072507?jobId=jobstreet-sg-job-10072507§ionRank=202&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Assistant Principal Data Engineer, Product, Smart Enterprise Platform, GEC'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Description for Principal Data Engineer - Product': '', 'Key Responsibilities': 'Participate in the design, development, and testing of an open architecture, open source based, and cloud native data analytics platform product.Explore and evaluate modern data management and MLOps components for continuous improvement of data analytics platform product.Contribute to the design and integration of data management & data governance capabilities for the product.Establish best practices and guidelines to be followed by engineers working on data pipelines.Assist in the setup and maintenance of big data, machine learning and Kubernetes clusters.Work with Data Scientists, Data Analysts, and other internal stakeholders to assist with data-related technical issues and support their data pipeline infrastructure and data preparation needs.', 'Job Requirements': 'Bachelor or Master’s degree computer science, software engineering, information systems or related field.\xa0.The candidate should have at least 8 years of technical experience in Information Technology with at least 4 years, preferably 6 years in Big Data, Data Warehousing or Business Intelligence technology with knowledge of analytics and AI technologies.Broad knowledge of various aspects of Big Data with good understanding and hands-on experience in Hadoop based technologies such as HDFS, Hive, Spark, Kafka etc.\xa0.Deep understanding of relational, NoSQL, NewSQL database technologies such as PostgreSQL, Oracle DB, CitusDB, SingleStore, Cassandra, MongoDB, Neo4J etc..Good knowledge of programming languages such as Java, Python or Scala on Linux/Windows platforms.\xa0.Experienced in Kubernetes and Kubeflow is a plus point.Familiar with visualization and reporting software.\xa0.Experienced in designing production grade ETL/BI solutions.\xa0.Experienced in DevOps and DataOps.Familiar with Linux/UNIX system administration.Experienced in operational support for Big Data solutions.\xa0.Effective oral and written communication with strong analytical, problem solving, multitasking and project management skills are essential on the job.\xa0.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-principal-data-engineer-product-smart-enterprise-platform-gec-10071057?jobId=jobstreet-sg-job-10071057§ionRank=203&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Description for Principal Data Engineer - Product
[{'position': 'Senior Research Scientist (HWP), IMCB'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Job Requirements:': 'Ph.D. in Life Science, Biomedical Science or related field with solid publication / preprint record.At least 5 years of relevant experience.Candidates with prior animal study experience would be an advantage.Excellent critical thinking, interpersonal, written and oral communication skills.Ability to both work in teams and independently and enjoys collaboration.Highly motivated and willing to learn.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biomedical', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-hwp-imcb-10096454?jobId=jobstreet-sg-job-10096454§ionRank=204&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Requirements:
[{'position': 'Software Engineer/Senior Software Engineer for AI Singapore (AI Technology)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description': '', 'Duties & Responsibilities\xa0': '', 'Qualifications': '', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/software-engineer-senior-software-engineer-for-ai-singapore-ai-technology-10115114?jobId=jobstreet-sg-job-10115114§ionRank=205&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Associate Analyst / Analyst (Customer Data Analytics)'}, {'company_name': 'Marina Bay Sands Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'JOB SCOPE': '', 'Job Responsibilities': '', 'Key areas of focus, include:': 'Leverage customer data and analytics to acquire, develop, and retain high-value customers more profitably and effectively.Work with the casino sales team to optimize structure, communication, and coverage.Develop a robust behavioral and needs-based segmentation to create more relevant, actionable, and personalized campaigns, offers, and engagements.Collaborate with the marketing technology team to enhance CRM and real-time rules capabilities.', 'Analytics:': 'Apply advanced analytics, modelling and machine learning on patron behavior, CLV prediction and profitability analysis..Enhance our 360° view of our most valuable guests and create actionable segmentations of patrons across the entire Integrated Resort..Work closely with Sales and Marketing departments to:.Monitor the business and highlight trends and opportunities..Translate modelling results and segmentations into business strategy via data/dashboards with impactful visualization..Design data-driven personalized offers and A/B testing..Evaluate the effectiveness of our marketing strategies..Work closely with Business Intelligence, data warehouse, IT and smart IR teams to implement analytical solutions..', 'JOB REQUIREMENTS': 'Degree in Business Analytics, Applied Mathematics, Statistics or other analytical fields preferred..Marketing graduates with flair for numbers and interest in customer and marketing analytics are welcome..1 to 2 years of practical experience in business analytics, customer analytics or marketing analytics preferred. Entry levels are welcomed to apply for Associate Analyst..2 - 4 years of practical experience in business analytics, customer analytics or marketing analytics or Masters in any analytical field for Analyst..Experience building and implementing predictive models and machine learning will be an added advantage..Casino related experience is a bonus but not compulsory..Programming skills using analytical tools such as Base SAS, SAS EG, SQL, R or Python is required..Proficient in data visualization tools, such as Tableau preferred..Ability to process massive amounts of data and complete critical projects in a correct, accurate and timely manner..Strong logical thinking, data analysis and problem-solving skills..Excellent communication and presentation skills..Passionate about data, customers, and building your career with Marina Bay Sands..Begun the vaccination process and are awaiting the 2nd/3rd vaccination appointment, or are within the 14 day period prior to being classified as fully vaccinated; or.Are certified to be medically ineligible for vaccination against COVID-19 by a medical professional;.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200507292R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '1 day', 'Industry': 'Hotel / Hospitality'}, {'Company Overview': '\n\n\t\tMarina Bay Sands® is Asia’s leading destination for business, leisure and entertainment delivering once-in-a-lifetime experiences. The landmark building is situated in the heart of Singapore’s Central Business District and transforms Singapore’s skyline and the country’s tourism landscape.\n\n\n\t\tThe destination offers a luxury hotel, state-of-the art convention and exhibition facilities, theaters, world-class entertainment and the best shopping and dining in the region. The three hotel towers are crowned by the Sands SkyPark® on the 57th story.\xa0\n\n\nProduct & Services\n\n\n\t\tConveniently located in the heart of the Central Business District and 20 minutes from Changi Airport.\n\n\n\t\t• Hotel: The Marina Bay Sands hotel has three 55-story towers with 2,561 luxury rooms and suites. The three towers are capped by the Sands SkyPark, which offers 360-degree views of Singapore’s skyline. It is home to restaurants, lush gardens, an infinity edged swimming pool and the world’s largest public cantilever housing an observation deck.\n\n\n\t\t• Expo and Conventions: The Sands Expo and Convention Center has 1.3 million square feet of flexible convention and exhibition space. It can host over 45,000 delegates, 2,000 exhibition booths and 250 meeting rooms. It features Southeast Asia’s biggest ballroom, which can accommodate 6,600 people for a banquet, and up to 11,000 for an auditorium-style lecture.\n\n\n\t\t• Shopping: The Shoppes at Marina Bay Sands has 800,000 square feet of retail and dining space. Luxury retailers include Bally, Cartier, CHANEL, Ferragamo, Franck Muller, Gucci, Hermès, Hublot, Hugo Boss, Louis Vuitton, Miu Miu, Omega, Patek Philippe, Prada, Tiffany & Co. and Yves Saint Laurent. New brands include Anne Fontaine, Henry Cotton’s, Leviev, Marisfrolg, Moiselle, Rabeanco, Stefano Ricci, and Wolford.\n\n\n\t\t• Restaurants: Dining at Marina Bay Sands is a gourmet experience with over 50 dining choices. These include celebrity-chef restaurants helmed by Mario Batali, (New York), Daniel Boulud (New York), Wolfgang Puck (Los Angeles), Guy Savoy (Paris), Tetsuya Wakuda (Sydney) and Justin Quek (Singapore).\xa0Marina Bay Sands features signature restaurants, modern bistros and a premium food court.\n\n\n\t\t• Entertainment: Marina Bay Sands energizes the entertainment and nightlife scene in Singapore with nightclubs, world-class entertainment, a museum and a casino.\xa0The museum, which has a lotus-inspired design, will feature blockbuster exhibitions from around the world.\xa0Two state-of-the-art theaters will open with a total of about 4,000 seats. The Broadway hit The Lion King will debut in Sands Theater, with Le Theater presenting shorter-run shows such as concerts, award ceremonies and gala events.\xa0The outdoor event plaza along the promenade next to Marina Bay will host audiences for watching events on the bay or on the plaza.\xa0\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/associate-analyst-analyst-customer-data-analytics-10074672?jobId=jobstreet-sg-job-10074672§ionRank=206&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
JOB SCOPE
[{'position': 'Data Science Team Lead #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Team Introduction': '', 'How do we work': '', 'Job Overview': '', 'What to Expect': '', 'You will be involved in a range of tasks including the following': 'Manage a team of 2-3 data scientists and data engineers deployed to the agencies that we partner with, to drive the growth of data science capabilities at the partner agency that you are deployed to..Work closely with business stakeholders at the partner agency to build a strong pipeline of impactful projects. This will involve understanding their business challenges, scoping the problem and developing business cases on how to turn data into critical information and knowledge which can then translate into action and impact..Organise and guide the team to execute the pipeline of projects by performing data cleaning, pre-processing, and feature engineering to build relevant models to conduct meaningful analysis. Iterate with key stakeholders to perform subsequent deep dives based on initial insights. Depending on the use case, design dashboards and interactive visualizations as tools for data exploration and storytelling..Work with the agency Chief Data Officer (CDO)’s and Chief Information Officer (CIO)’s Offices to improve the agency’s data management and analytics infrastructure, and to grow data science capabilities within the agency’s workforce..Support the professional growth and development of the data scientists and data engineers in your team and forge a positive team culture to ensure staff retention.', 'How to Succeed': 'A Bachelor’s Degree or in Computer Science, Statistics, Economics, Quantitative Social Science, or related discipline. Advanced degrees are preferred. Relevant training and certifications (e.g. Coursera) may also be considered..At least 5 years of relevant experience, in data science and/or the public sector, preferably with experience managing a team..Have strong analytical, conceptualization and problem-solving skills. Able to take broad, strategic perspectives, and when necessary, drill deep to understand business needs and challenges..Understand key concepts, techniques and considerations in statistics, machine learning and data analytics..Training and relevant experience in one or more of the following areas:.Data science tools such as R, Python\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Visual analytics technologies like Tableau, Qlik.Demonstrable experience in project management of technical initiatives.Have excellent oral and written communication skills, along with the ability to pitch ideas and influence stakeholders at all levels on the adoption of analytics. Able to present technical concepts and results of technical analyses to non-technical audience in a concise manner..Adaptable to dynamic operating contexts and able to work with multiple stakeholders across different teams and agencies.Strong people manager who can inspire, motivate and grow the team and has strong organization skills. Effective in setting and managing individual and team KPIs.Have passion for improving public service through the use of analytics and data..', 'Preferred Skills': 'Experience in model deployment with skillsets in ML Ops, DevOps or software engineering.Knowledge in data management, data warehousing, data engineering.Experience in agile project management.Experience in developing capability in others.Understanding of processes in digital transformation.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-science-team-lead-jobsthatmatter-10052791?jobId=jobstreet-sg-job-10052791§ionRank=207&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Team Introduction
[{'position': 'Executive, Information Management & Analytics (IMA)'}, {'company_name': 'National Healthcare Group Polyclinics'}, {'small_section': ['Central', 'Posted on 4-Nov-22']}, {'Principle Responsibilities:': 'Provide data support, report generation and analysis to business users..Participate in the requirement gathering and enhancements of the Business Information (BI) systems..Extract, review and analyze business information which can include operational data, finance information and patient clinical outcomes..Present the results and findings to different levels of staff from time to time..Implement and maintain the management dashboard comprising management reports and operational data..Support the reporting and data needs for Healthier SG and Population Health programs..Perform the data provider role for Data Exchange Office (DXO)..Manage and maintain NHGP’s business information system to ensure data integrity..Coach fellow team members..Train, coach and empower BI users on the use of data for reporting, operational support or analysis..', 'Secondary Responsibilities': 'Other ad-hoc duties may include minute taking and act as secretariat to task forces, committees and management meetings..May also participate in quality improvement projects..Participate in knowledge management projects..Management of information and reports presented on the intranet..Perform any other duties that may be assigned from time to time..', 'Requirements:': 'Bachelor’s Degree in Social Science (Economics), Information Management, Mathematics, Statistics or equivalent..Masters Degree will be an added advantage..Business analytics in the service industry..Management reporting and performance indicators tracking.\xa0\xa0\xa0\xa0.Analytical mind with an attention to details..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '52929305J', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '23 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Sports (e.g. Gym), Business (e.g. Shirts)'}, {'Company Overview': "\nNational Healthcare Group Polyclinics (NHGP) forms the primary healthcare arm of the National Healthcare Group (NHG). Its seven polyclinics serve a significant proportion of the population in the central and northern parts of Singapore.\n\n\tNHGP provides a comprehensive range of health services for the family, functioning as a one-stop health centre providing treatment for acute medical conditions, management of chronic diseases, women & child health services and dental care.\xa0 The focus of NHGP's care is on health promotion and disease prevention, early and accurate diagnosis, disease management through physician led team-based care as well as enhancing the capability of Family Medicine through research and teaching."}, {'url': 'http://www.jobstreet.com.sg/en/job/executive-information-management-analytics-ima-10083629?jobId=jobstreet-sg-job-10083629§ionRank=208&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Principle Responsibilities:
[{'position': 'VP / AVP, Senior Business / Data Analyst - Treasury & Markets - (WD44004)'}, {'company_name': 'DBS Bank Limited'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Description': '', 'Responsibilities': 'Identify right data to capture for specific use cases for Treasury Sales (Corporate Advisory, Financial Institutions, Wealth Management) and Trading (FX, IR, Equities, Credit).Profile and analyze the data and assist with the Data Wrangling, ETL and cleansing.Data Storytelling to present and frame the data to answer specific business hypotheses.Prepare simple visualizations to communicate the findings via established BI tools (i.e. Tableau).Build interactive dashboards and dashboard control towers (aligned to DDOM Value Maps).Prepare metadata to aid data ingestion into enterprise ADA.Explore new data sources both internal cross BU/SU, external market data or even external alternative data to make available for business use.Work closely with Data Translator and Data Scientists on converting business requirements to functional requirements on cross regional T&M use cases.Lead the Business User testing and validation of data model outputs.Help to create, maintain and own in-house reusable data marts and asset tools to accelerate product / segment / channel / journey analytics (as needed).Promote data self-service within the Product Manager community.', 'Requirements': 'At least 8 years of experience in a business analyst role at a major bank or financial institution or a credible Strategy / Management Consulting firm.Bachelor’s degree holder or above.Working knowledge and familiarity with trading/treasury products, system applications and end-to-end processes would be useful.Excellent data visualization, data story-telling and communication skills.Proficient with data wrangling, analytics, transformation using tools such as SQL, Tableau, Excel etc. Python is good to have.JIRA, Bitbucket, Github are good to have.Proficiency with tools like Kedro to build & manage reusable pipelines is good to have.Motivated team player, self-starter, strong client focus and meticulous.Able to work under pressure and possess Excellent communication and analytical skills.Able to confidently communicate and collaborate with senior stakeholders.Excellent interpersonal and verbal and writing skills. You are confident in presentations to senior management and to a mass audience.\xa0.'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '196800306E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '26 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Business (e.g. Shirts)'}, {'Company Overview': '\n\tDBS is a leading financial services group in Asia, with over 280 branches across 18 markets. Headquartered and listed in Singapore, DBS has a growing presence in the three key Asian axes of growth: Greater China, Southeast Asia and South Asia. The bank\'s "AA-" and "Aa1" credit ratings are among the highest in the world.\n\t\n\t\tDBS is at the forefront of leveraging digital technology to shape the future of banking, and has been named “World’s Best Digital Bank” by Euromoney in 2016 and 2018. The bank has also been recognised for its leadership in the region, having been named “Asia’s Best Bank” by several publications including The Banker, Global Finance, IFR Asia and Euromoney since 2012. In addition, the bank has been named “Safest Bank in Asia” by Global Finance for nine consecutive years from 2009 to 2017.\n\n\t\tDBS provides a full range of services in consumer, SME and corporate banking. As a bank born and bred in Asia, DBS understands the intricacies of doing business in the region’s most dynamic markets. DBS is committed to building lasting relationships with customers, and positively impacting communities through supporting social enterprises, as it banks the Asian way. It has also established a SGD 50 million foundation to strengthen its corporate social responsibility efforts in Singapore and across Asia.\n\n\t\tWith its extensive network of operations in Asia and emphasis on engaging and empowering its staff, DBS presents exciting career opportunities. The bank acknowledges the passion, commitment and can-do spirit in all of its 26,000 staff, representing over 40 nationalities.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-avp-senior-business-data-analyst-treasury-markets-wd44004-10080784?jobId=jobstreet-sg-job-10080784§ionRank=210&token=0~e1f18a01-d8d1-4025-a182-e02e68771405&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Snr AI Engineer / AI Engineer for AI Singapore (Innovation)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/snr-ai-engineer-ai-engineer-for-ai-singapore-innovation-10130796?jobId=jobstreet-sg-job-10130796§ionRank=212&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
[{'position': 'Bioinformatics Specialist, Genome Research Informatics and Data Science Platform, GIS'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job description:': '', 'Requirements': '', 'Candidates who meet most of the requirements will be considered.': 'BSc, MSc or equivalent experience in Bioinformatics, Computational Biology, or related.Demonstrated experience in Python, preferably applied to task automation and data analysis.Experience in analysis of high-throughput sequencing data.Knowledge of standard bioinformatics file formats (BAM/CRAM, (g)VCF…), tools (samtools, bcftools, IGV…) and data repositories (dbSNP, ClinVar, Ensembl, gnomAD…).Excellent attention to detail and problem-solving skills.Strong communication skills and ability to work as a team.Good organisational skills.Ability to learn quickly on the job.Familiarity with various tools such as Docker/Singularity, Conda and/or nextflow is a plus.Familiarity with cloud computing environments (especially AmazonWebServices) is a plus.Experience with version control systems such as Git/GitHub is a plus.Experience with Atlassian software (Jira, Confluence) is a plus.', 'Responsibilities': 'Design, develop and implement workflows for analysing results from high-throughput sequencing experiments.Design, develop and implement cloud infrastructure to support population-scale WGS pipelines.Document analysis workflows and their associated data flow into SOPs, work instructions, protocols and other technical documentation.Follow established protocols in order to process consortia samples at large-scale.Contribute to collaborations with local and international industry partners in both the Biotech and Pharma sectors.Raise, troubleshoot and document unexpected outcomes in production workflows, and collaborate with colleagues to promptly resolve them.Implement standards and best practices (e.g. GA4GH).Coordinate with members of the Dev Ops team to identify improvement areas, suggest solutions and implement them following a controlled changed process.Deliver internal training on various aspects of the production workflow.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/bioinformatics-specialist-genome-research-informatics-and-data-science-platform-gis-10124860?jobId=jobstreet-sg-job-10124860§ionRank=213&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Job description:
[{'position': 'Data Consultant (Manager / Senior Manager) #Urgent'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Objectives of this Role': 'Provide consultative guidance on data management and data governance-related principles within the institution, while also inputting external client proposals when necessary..Design and manage databases and data flows to ensure smooth business operations..Develop conceptual data models to improve processes and add strategic value to the business..Focus on joining up the necessary stakeholders across departments to address gaps and pain points in data journeys..Work with stakeholder divisions (data stewards) and the engineering team to consult on data usage..', 'Daily and Monthly Responsibilities': 'Data management, data warehousing, data integration, data migration, business intelligence, analytics, and project delivery across advisory and technical delivery projects..Examine data, processes, and technologies to evaluate the current state and critical problems for both internal business functions and external client projects..Research and make recommendations about training, equipment, and technology to improve data use..Create automated data reports to inform stakeholder divisions, including documentation, toolkits, and FAQ guides..Train and mentor teams in data input, use, meaning, and analysis..', 'Skills and Qualifications': "Bachelor's Degree in Computer Science, Engineering, or Information Technology.Educated at a Masters or PhD level in a mathematical subject will be an added advantage.Preferably at least 5-8 years of relevant work experience.Ability to deal with various senior stakeholders across the business.Python, Java OR Scala.Kafka OR Spark.Microservices exposure.Strong client-facing experience as a data engineer/consultant.Strong understanding of analytics and data science.A keen eye for detail\xa0.Proactive, self-sufficient, positive attitude."}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-consultant-manager-senior-manager-urgent-10104792?jobId=jobstreet-sg-job-10104792§ionRank=214&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Objectives of this Role
[{'position': 'Research Scientist / Senior Research Scientist (Cancer Science Institute)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Description': '', 'Sample Vitrification:': 'Proteins will be produced separately, hence experience in protein production is not required, although favoured.Candidate will be responsible for optimisation of the vitrification of grids\xa0.', 'Data Collection:': 'Candidate will oversee collecting screening and high resolution cryo-EM data from the T12 and Krios\xa0.', 'Data analysis:': 'Candidate will oversee processing the data and producing cryo-EM maps from high resolution Krios data collections.Candidate will help setup the processing pipeline for CSI.', 'Education:': 'Oversee training personnel from both CSI and Tan lab on cryo-EM.', 'Qualifications': 'PhD in cryo-EM or structural biology related field.Firm understanding of the principles of cryo-EM\xa0.Experience in single-particle cryo-EM sample vitrification, data collection and data processing.Good publication record.Excellent written and spoken English.Friendly and personable.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-senior-research-scientist-cancer-science-institute-10106582?jobId=jobstreet-sg-job-10106582§ionRank=215&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Engineer (Machine learning algorithms for drone surveillance) 5GTL #Immediate'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Participate in and manage the research project with Principal Investigator (PI), Co-PIs and the industry collaborator to ensure all project deliverables are met..Design, optimization and test the ML algorithms in the network to ensure the end-to-end performance metrics are met under different drone surveillance scenarios..Develop North-bound APIs for dynamic network orchestration and test overall model performance under high-speed switching scenarios..Carry out Risk Assessment, and ensure compliance with Work, Safety and Health Regulations..Research on existing hardware technologies and coordinate procurement and liaison with vendors/suppliers..Work independently, as well as within a team, to ensure proper operation and maintenance of equipment..', 'Job Requirements:': 'Have relevant competence in networking with open network switch configuration..Experience in network configuration and maintenance on Linux-based devices..Working knowledge of SDN technologies and/or machine learning algorithms.REST APIs for north-bound communication will be an advantage..Knowledge in virtualization technologies (Hypervisor, VMware NSx) will be an advantage..Have a relevant degree in Communication Networks or equivalent. Possessing a Master’s or PhD degree will be advantageous.Knowledge of Python, Java and R will be advantageous..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-algorithms-for-drone-surveillance-5gtl-immediate-10104718?jobId=jobstreet-sg-job-10104718§ionRank=216&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Asst. Vice President, - Senior Digital Analyst'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Assistant Vice President, Senior Digital Analyst': '', 'About UOB': '', 'About the Department': '', 'Job Responsibilities': 'Reporting into Group Head of Digital Analytics, TMRW are seeking a digital analyst and team player..You are likely to have five years’ experience.\xa0.Experience in retail banking or financial services is an obvious advantage but not essential..Working with internal (Group and local marketing & Customer Engagement teams) and external stakeholders (Media agencies and platform providers), you will help the implementation of Digital Tagging and Tracking and the reporting of digital behavior insights..', 'Scope & Responsibilities': 'Stakeholder relationship management, including Local Market Marketing and Technical Teams, Platform Vendors (Google, Adobe & AppsFlyer etc) & Digital Analytics Agencies..Defining business reporting goals and KPI’s, Designing Tagging Plans, Implementation and UAT Tagging verification..Analyze of new digital features and content performance and liaise with Product owners and Group Technology to define and implement Digital Analytics requirements..Interpretation of Digital Analytics Data to communicate appropriate insights and offer recommendations including media optimization and in-app user experiences..Produce reports to help group marketing teams, regional teams, and executive leadership to make more informed decisions..Effectively communicate findings with actionable recommendations to business leaders verbally and in presentations..Motivated, proactive, creative problem solver not afraid to challenge conventions and help drive positive business change..', 'Job Requirements': 'An understanding, Web analytics; Adobe, Google Analytics (Firebase) and AppsFlyer preferred..An understanding of digital advertising (display, mobile, e-mail, video and social media.An understanding of digital platform development and operation (Apps & Websites)..5+ years of work experience as a digital analyst or from an associated digital background, including data analysts or IT engineering or similar.Experience in Digital Retail Banking and App-development obviously an advantage but not essential..Experienced\xa0 in using the Microsoft excel and PowerPoint.Knowledge of web measurement technologies: Website analytics software (e.g. Adobe, Google Analytics and AppsFlyer) and advantage but not essential (Training provided).An appreciation for web design, digital marketing, user experience, information architecture.Detail-oriented with the ability to manage multiple tasks simultaneously..Ability to build and maintain good rapport with internal and external customers communicating ideas and concepts with an end result of increased sales and profitability while handling situations with confidence, tact and resourcefulness.This is an opportunity for those looking to progress their career in data or potentially wanting to get into Digital Analytics or Data Analytics for the first time..We have a strong focus on training and development for all of our existing and new data analytics staff and structured approach to achieving your long term career goals..Training of specific Digital Analytics platforms such as Adobe Analytics, GA, Firebase and AppsFlyer can be provided to those without prior knowledge or experience..We offer a strong competitive package, working with a fun vibrant team..', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/asst.-vice-president-senior-digital-analyst-10083955?jobId=jobstreet-sg-job-10083955§ionRank=217&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Assistant Vice President, Senior Digital Analyst
[{'position': 'Assistant Professor in Economics & Data Science [R00006466]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 1-Nov-22']}, {'Emoluments': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-professor-in-economics-data-science-%5Br00006466%5D-10072439?jobId=jobstreet-sg-job-10072439§ionRank=218&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Emoluments
[{'position': 'Data Operation Engineer ( Data Ops , Linux , Azure , SQL , COTS , Fresh Welcome )'}, {'company_name': 'TRUST RECRUIT PTE. LTD.'}, {'small_section': ['Central', 'SGD\xa03,500 - SGD\xa05,000', 'Posted on 5-Nov-22']}, {'Job Description:': 'Be part of a team to build and maintain data systems or pipelines..Perform setup, installation, configuration, troubleshooting and/or upgrade for COTS products..Develop or implement ways to improve data warehouses, data lakes or equivalent platforms..Involve in the creation of documentations e.g. design documents, troubleshooting guides etc..', 'Requirements:': "Diploma/Degree in Computer Engineering/Computer.Preferably 1 - 4 years' of working experience in related fields..Science/Information Technology or related technical discipline.Knowledge and/or experience in data management or data engineering.Experience with Linux commands and shell script.Knowledge and/or experience in relational (including SQL) or NoSQL database (e.g. document, graph).Knowledge and/or experience in one or more of the following will be an advantage:.Data / Search / Automation platforms such as Hadoop, Elasticsearch, Ansible respectively.Data integration tools such as Talend, DataStage, Denodo.Programming languages such as Python, Spark.Microsoft Azure Cloud services such as Azure Data Factory, Azure Synapse Analytics.Analytics platforms such as Databricks, Dataiku, Data Robot.Good problem-solving skills.Able to work independently and as a team.", 'HOW TO APPLY:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201935022Z', 'EA No.': '19C9950', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '5 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tTrust Recruit is Singapore’s leading relationship-based human resource and recruitment firm. With more than 20 years of collective consulting experience, we provide personalized workforce solutions for our corporate clients, ranging from multinational corporations to the public sector, as well as small and medium enterprises.\n\n\n\tAt Trust Recruit, integrity and reliability permeates every level of our recruitment process. TRUST is our currency of interactions; be it with our valued clients, talented job-seekers or our own employees. Through our premium staffing services, we are committed to connecting and developing quality relationships between candidates and companies.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-operation-engineer-data-ops-linux-azure-sql-cots-fresh-welcome-10137130?jobId=jobstreet-sg-job-10137130§ionRank=219&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Scientist (Mathematics/Computer Science/Electrical) [R00004445] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Research Scientist (Mathematics/Computer Science/Electrical Engineering)': '', 'Job Responsibilities': 'Identify and procure relevant targets and devices for research targets in project scope.Device preparation and test bed setup (hardware and software) for investigation of secure boot process.Application of analysis techniques to assess the vulnerability of the secure boot process.Implement end to end exploits.Report and document the finding with recommendations for mitigation.Disseminate the finding in publications at top venues like CHES, USENIX, TIFS etc.Collaborate with other team members in different research projects.Train junior members/interns of the team.', 'Job Requirements': 'PhD in mathematics, computer science, electrical engineering, or related disciplines, with strong track record in research and development (publications in international journals and conferences).Experienced in security evaluation and have understanding of crypto- graphic algorithms (symmetric and asymmetric). Coding background in C/Java/Assembly/Python/VHDL for analysis is required.Experience in working with embedded/IoT devices or android devices for vulnerability assessment.Previous lab experience in developing prototypes, FPGA design, manipulating oscilloscopes, writing device drivers and communication interfaces, which are used in analysis of implemented designs.Knowledge of side-channel or fault attacks is a plus.Good writing and communication skills.Creative, curious, self-motivated and a team player with good analytical and problem-solving skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-mathematics-computer-science-electrical-%5Br00004445%5D-jobsthatmatter-10053238?jobId=jobstreet-sg-job-10053238§ionRank=220&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Research Scientist (Mathematics/Computer Science/Electrical Engineering)
[{'position': 'Research Assistant, - (Computer Science and Data Science) - (R00003669) #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': '', 'Job Requirements:': 'Bachelor’s degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal and graph data.Programming skills, and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-and-data-science-r00003669-worknow-10072753?jobId=jobstreet-sg-job-10072753§ionRank=221&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Assistant, - (Computer Science and Data Science) - R00006992'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Key Responsibilities': 'The Research Assistant(RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning. The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data. This includes:.Conduct literature study.Design and implement new algorithms and machine learning models.Collect datasets and conduct experiments on the datasets.Write research papers and present the results at conferences.', 'Job Requirements': 'Bachelor degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal data.Programming skills, and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-and-data-science-r00006992-10046624?jobId=jobstreet-sg-job-10046624§ionRank=222&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'AI Engineer (AIAP) for AI Singapore'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-engineer-aiap-for-ai-singapore-10079367?jobId=jobstreet-sg-job-10079367§ionRank=223&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
[{'position': 'Deputy Director, Analytics Centre of Excellence'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'About Digital Transformation, Innovation & Data Division (DTID)': '', 'Job Responsibilities': 'Management of Analytics Centre of Excellence (COE), a community where like-minded professionals come together to cross learn, acquire exposure\xa0and\xa0contribute to the delivery of data analytics projects across A*STAR..Work\xa0with business stakeholders/users to develop end-to-end advanced analytics solutions,\xa0from\xa0problem & use case formulation, data sourcing to develop\xa0and\xa0deploying the solution into production..Work\xa0with business users to continue improving the enterprise analytic platform, tools,\xa0and\xa0reusable assets..Work\xa0and\xa0share with Analytics COE & community to continue develop advanced analytics capabilities, adoption of best-in-class techniques\xa0and\xa0practices..Responsible to curate, develop\xa0and\xa0conduct training sessions/workshops to equip COE members\xa0and\xa0wider A*STAR officers with the necessary data analytics/science knowledge\xa0and\xa0skills..Assume Tech-lead role to coach junior data scientists\xa0and\xa0instill best practices.', 'Job Requirements': 'Bachelor’s/Master’s\xa0degree\xa0in computer science/engineering, information technology, business analytics, data science or artificial intelligence with\xa0strong\xa0focus in data mining, statistical / mathematical modellings,\xa0or\xa0machine learning..15+\xa0years\xa0of experience in conceptualizing\xa0and\xa0developing advanced analytics\xa0or\xa0data science solutions to solve business problems..Familiar with analytics\xa0and\xa0machine learning platforms\xa0and\xa0how it integrates with upstream\xa0and\xa0downstream data\xa0and\xa0production systems..Experience of\xa0working\xa0with business users to gather/understand user requirements and\xa0working\xa0with tech/data team to improve analytics platform to resolve user pain points..Experience of managing complex\xa0and\xa0cross departments/domain projects..Full stack data science experience covering end-to-end problem formulation, developing training pipeline\xa0and\xa0deploying solution to production..Familiar with developing machine learning pipelines following dev practice such as versioning, branching, merging, linting, testing\xa0and\xa0writing codes in structured\xa0and\xa0modularized way..Able to analyze business needs, articulate the solution framework including the model output, business decision\xa0and\xa0potential impact to drive the adoption of the solution..Excellent problem-solving skills\xa0and\xa0strategic thinker..Excellent written, oral & inter-personal communication skills..', 'The above eligibility criteria are\xa0not\xa0exhaustive. A*STAR may include additional selection criteria\xa0based\xa0on its prevailing recruitment policies. These policies may be amended\xa0from\xa0time to time without notice. We regret that only shortlisted\xa0candidates\xa0will be notified.': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '15 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/deputy-director-analytics-centre-of-excellence-10125218?jobId=jobstreet-sg-job-10125218§ionRank=224&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
About Digital Transformation, Innovation & Data Division (DTID)
[{'position': 'Research Asst., - (Computer Science and Data Science), - (R00003669) #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Key Responsibilities:': '', 'Job Requirements:': 'Bachelor’s degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal and graph data.Programming skills, and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-asst.-computer-science-and-data-science-r00003669-worknow-10127522?jobId=jobstreet-sg-job-10127522§ionRank=225&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Head\xa0of\xa0Generative Artificial Intelligence - #Worknow'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Head of Generative Artificial Intelligence': 'Golden Opportunity with\xa0Global Defence Consultancy.Career Succession to become Head of Corporate Research Lab.Around S$200k annual package.', 'About the Client': '', 'Main Duties & Responsibilities': "Reporting to the Head of Corporate Research\xa0and\xa0Engineering Centre, leading a team of principal AI Scientists\xa0and\xa0Engineers.Liaise with existing Institute of High Learning (IHLs), Academia\xa0and\xa0Corporate Research Labs for joint Data Analytics\xa0and\xa0Artificial Intelligence Research.Be involved in state-of-the-art AI\xa0and\xa0Data Analytics research, publications, patents on international journals such as IEEE.Build the group's AI\xa0and\xa0Data Analytics research roadmap particularly in Generative AI.Work\xa0with your team to develop POCs for AIDA technologies, Edge solutions, Mobility innovations, Maintenance, Repair\xa0and\xa0Overhaul (MLO).Work\xa0with the Engineering Centre to translate POCs to business products.", 'Education Backgrounds': 'PhD in Computer Science, Engineering, Mathematics\xa0or\xa0equivalent with at least 10\xa0years\xa0of proven Generative AI research\xa0and\xa0product development experience.In-depth knowledge\xa0and\xa0experience in unsupervised learning in the area of digital images, videos, audio\xa0or/and\xa0text.Experience in one of more of the following: Quantum ML, Agent\xa0Based\xa0Simulation, Computational Intelligence, Predictive Maintenance\xa0or/and\xa0Deep Learning.Experience\xa0working\xa0on at least one of the following: Mobility AI/DA, Generative AI, MLO, Edge Analytics.Experience in leading a team of PhD\xa0and\xa0Masters AI Research Scientist, Engineers\xa0and\xa0Software Developers.Prior experience in Research, Corporate Lab, Defence or Consulting industries will be highly preferred.', 'Interest &\xa0Apply': '', 'Personnel Registration\xa0No\xa0R1980978': '', 'EA license\xa0No. 09C5803': []}, {'Career Level': 'Senior Manager', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/head-of-generative-artificial-intelligence-worknow-10039174?jobId=jobstreet-sg-job-10039174§ionRank=226&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Head of Generative Artificial Intelligence
[{'position': 'Senior Manager/Manager, Advanced Analytics & Modelling'}, {'company_name': 'Agency for Integrated Care'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Job Requirements:': "Oversee the business analytics and program evaluation work of the Strategy, Research and Data Division..Supervise regular and ad-hoc data reporting (e.g. dashboards) to support the work of other AIC divisions..Oversee and/or perform statistical analyses of large scale quantitative studies, including modelling and simulation studies, and studies using Geographical Information Systems (GIS) to help AIC management predict demand for AIC and Community Care services, and the future burden of disease/disabilities of interest to AIC..Provide guidance on research and statistical methods to the division and AIC staff to support the design of quantitative studies and/ or performance of quantitative analyses..Conduct talks and workshops to improve understanding of statistics among AIC staff and Community Care sector partners..Build up and guide the team to support taking on a higher volume of quantitative program evaluation work from MOH PRED, particularly for the evaluation of AIC programmes. The addition of this experienced managerial level analyst is anticipated to increase the rate of output by developing the expertise within the team and help AD(Research) oversee the team's work..Build up and guide the team in statistical modeling using administrative and secondary survey datasets from various sources to answer policy and strategic questions..Support additional analytic work related to the projects such as Eldercare Centre Review, Communities of Care project, and One Rehab that may arise..A relevant degree at the Master's level is needed, preferably with higher level degree qualifications (PhD) in relevant fields such as statistics, econometrics, biostatistics, or epidemiology..[Senior Manager] Minimum 5 years of working experience preferably in healthcare or social sectors with at least 3 years of supervisory management experience..Extensive experience in conducting statistical or econometric analyses, and performing modelling and simulation studies, preferably with publications in peer-reviewed academic journals..Familiarity with at least one statistical software package (e.g. Stata, R, SPSS, or SAS)..Experience with business intelligence tools (e.g. Oracle OBIEE, Qlikview, Tableau…etc) will be a plus..Experience with budget impact analysis and/ or cost effectiveness analysis will be a plus..Excellent written and oral communication skills..Able to work independently and in teams..Flexible, self-motivating, and able to manage multiple tasks efficiently..Proficient in a Microsoft Windows environment.."}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': '200915135W', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Non-Profit Organisation / Social Services / NGO', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business Casual'}, {'Company Overview': 'About Agency for Integrated Care Pte LtdAgency for Integrated Care Pte Ltd (AIC) aims to create a vibrant care community for people to live well and age gracefully. Our role at the heart of Singapore’s care sector brings the entire community together to improve lives through care. With the belief that care is uplifted by the power of community, we play an active part in spreading care throughout the community. Supporting clients and seniors will always remain at the Heart of what we do at AIC.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-manager-manager-advanced-analytics-modelling-10143718?jobId=jobstreet-sg-job-10143718§ionRank=227&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Job Requirements:
[{'position': 'Data Engineer (Analytics)'}, {'company_name': 'Mediacorp Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Description': '', 'Key Responsibilities:': 'Manage the tagging of advanced analytics tools across different platforms within the organization..Utilize deep understanding of Adobe Analytics, along with other analytics platforms to assist the various decision making teams..Execute A/B tests and work on personalization and recommendation systems.Design, develop and support reporting and analytics applications leveraging data integration tools..Work closely with Data Architects & Data Scientists to enforce tracking requirements across different platforms.', 'Requirements': 'Degree holder in a technical discipline (Computer Science, IS/IT or related disciplines).Minimum 3 years of experience in working with Tag Management Solutions Primarily on Adobe Launch.Good to know - Google Tag Manager or Tealium/ Ensighten..Strong Experience in Tag migration - Adobe Heartbeat implementation, Mobile app Adobe AEP SDK implementation.Strong Proficiency in JavaScript, specifically as it relates to digital analytics implementation..Experience in A/B testing tools such as Adobe Target and/or Optimizely.', 'Thank you for your interest and application to this role. Please note that only short-listed candidates will be contacted.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199201312E', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Entertainment / Media', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\nMediacorp is Singapore’s leading media company with the most complete range of platforms, spanning television, radio, newspapers, magazines, movies, digital and out-of-home media.\n\t\t\xa0\n\n\t\tIt pioneered the development of Singapore’s broadcasting industry, with the broadcast of Radio in 1936 and Television in 1963.\n\n\t\tToday, Mediacorp has over 50 products and brands in four languages (English, Mandarin, Malay and Tamil), reaching out to all adults in Singapore every week.\n\n\t\tInitiatives in the new digital space include Internet TV-on-demand, High Definition TV broadcast and Over-the-Top (OTT) interactive services.\n\t\n\tBeyond Singapore, Mediacorp is an active regional player through co-productions in TV dramas and movies, magazines publishing, as well as Channel NewsAsia International, one of the first Asian-owned English news channels.\n\t\n\t\n\t\tOur financial and strategic relationship in the region includes International Media Corporation in Vietnam, which was set up to develop and produce television entertainment and economic news content. Mediacorp also has a stake in Singapore-based retail firm Reebonz, one of the region's fastest growing luxury online retailers and a majority stake in Cubinet Interactive, a Malaysian digital games publisher.\n\t\n\tWinner of numerous international awards and accolades including Asian Television Awards' Terrestrial Broadcaster of the Year, Mediacorp’s mission is to engage, entertain and enrich audiences by harnessing the power of creativity.\n\t\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-analytics-10062264?jobId=jobstreet-sg-job-10062264§ionRank=228&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Research Fellow, - (Data Restoration), R00003935'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'The Research Fellow will work on a project to conduct the research on the development of Data Analysis of Recovered Data from Flash Memory for image and video data. The roles of this position include:.Development of image and video data restoration algorithms and software development in Android System.Develop image and video recovery methods of corrupted zip file.Recovery of encrypted data in Android system.', 'Job Requirements': 'PhD in Electrical and Electronic Engineering, Computer Science or related field specialization in Data Restoration.At least 3 years research experience in research institute or university in related area is required.Expertise in video algorithms and machine learning.Good publication track record is required.Proficiency in basics of programming languages such as C, C++ and Python.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-restoration-r00003935-10135801?jobId=jobstreet-sg-job-10135801§ionRank=229&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Senior/ Data Analyst (Data Analysis, FMCG Industry)'}, {'company_name': 'Talent Trader Group Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'https://www.careers-page.com/talent-trader-group/job/R8Y6Y6': []}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201230353E', 'EA No.': '13C6305', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tOur business philosophy stems from our belief that Mid management are vital to all organisations.\n\tWe thus focused our specialisation to the placement of these professionals and we are now among Singapore’s leading Mid management recruitment firms.\n\n\tOur understanding of Mid recruitment spans the following areas:\n\n\n\t\tIndustry knowledge\n\n\t\tCandidate psychology\n\n\t\tPre-recruitment analysis\n\n\t\tRecruitment\n\n\t\tPost recruitment maintenance\n\n\n\n\tWe are fully committed to achieving excellence in every assignment through leveraging our vast candidate pool, industry connections and strategic insights.\n\n\tFor candidate who applied for the advertised position is deemed to have consented to us that we may collect, use or disclose your personal information for purpose in connection with the services provided by us.\n\n\tMOM License No. 13C6305\n\n\thttp://talenttradergroup.com/'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-analyst-data-analysis-fmcg-industry-10112142?jobId=jobstreet-sg-job-10112142§ionRank=231&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
https://www.careers-page.com/talent-trader-group/job/R8Y6Y6
[{'position': 'Data Analyst [Fintech-Financial Data/Python-SQL/CBD/Up to $8,000] #Worknow'}, {'company_name': 'Good Job Creations (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa04,000 - SGD\xa08,000', 'Posted on 29-Oct-22']}, {'[Order Number:': '', '2208-62766': '', ']': '', 'Responsibilities': 'Help users to collect and interpret data.Help with improving the data quality and work together with the data engineers to get solutions implemented.Identify patterns and trends in data sets.Work closely with traders and researchers to consume and analyze data faster and more efficiently.Help with monitoring of the health of the data platform.Any other ad hoc duties assigned.', 'Requirements': 'Minimum 2 years of experience working with financial data.Knowledge of SQL, Python.Knowledge of BI tools like Looker, Tableau.Experience with data warehouse, BI platforms and SQL.Familiarity with software development practices.', 'CV_Edward(at)goodjobcreations.com.sg': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200618166E', 'EA No.': '07C5771', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '7 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGood Job Creations Singapore (License Number: 07C5771) provides total HR solutions with core values of customer focus, teamwork, professionalism and contribution to the society and our clients. Our vision is to create opportunities for Asian talents in Singapore and across the region. For more information, visit us at www.goodjobcreations.com.sg\n\n\tGOOD JOB CREATIONS (SINGAPORE) PTE. LTD.\n\n\tEA License No.: 07C5771\n\tKimiya Shibazaki\n\tRegistration NO.: \u200bR1325719\n\n\tWe agree to protect all personal information and contact details sent to us via your resume according to the Personal Data Protection Act (PDPA) with effect from 2nd July 2014.\n\tAll information collected is strictly for the purpose of processing your job application and internal administrative use.\xa0\xa0\n\tBy sending your resume to us, you acknowledge your consent to the collection and use of your personal data for the above purposes only.\xa0\xa0\xa0\xa0\n\n\tOur Company’s Privacy Policy:\n\thttp://www.goodjobcreations.com.sg/en/privacy/\n\n\tDo not hesitate to contact our officer if you have further queries with regards to the Personal Data Protection Act.\n\tData Protection Officer: Mr. Kimiya Shibazaki\n\tContact: +65 6258 8051\n\n\t[*PDPA clause]\n\n\tYour data may be used by our affiliated companies under WILL Group Asia Pacific (https://willgroup.co.jp/en/index.html) for the sole purpose of recruitment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-%5Bfintech-financial-data-python-sql-cbd-up-to-%248-000%5D-worknow-10114248?jobId=jobstreet-sg-job-10114248§ionRank=234&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
[Order Number:
[{'position': 'Data Platform Engineer _ Kafka, Java, data processing'}, {'company_name': 'Avensys Consulting Pte Ltd'}, {'small_section': ['East', 'SGD\xa09,000 - SGD\xa011,000', 'Posted on 1-Nov-22']}, {'Sr. Data Platform Engineer': '', 'Experience & Skills:': '', 'Job Responsibilities:': '', 'Experience': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '7 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200710657H', 'EA No.': '12C5759', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '1 day', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tAvensys is a leader in providing technology enabled business solutions and services. Since inception, Avensys has helped clients use IT more efficiently to improve their operations and profitability, focus on core competencies and achieve business results such as increased agility, innovation and profitable growth. Our in-depth technical knowledge coupled with industry experience and our unique methodologies enable us to successfully deliver and meet our customer’s expectations.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-platform-engineer-_-kafka-java-data-processing-10123860?jobId=jobstreet-sg-job-10123860§ionRank=236&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Sr. Data Platform Engineer
[{'position': 'Data Analytics, Executive (Public Health) Ref: PP'}, {'company_name': 'JOBSTUDIO PTE LTD'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Scope:': 'Provide data support, report generation and analysis to business users..Extract, review and analyse business information..Present results and findings..Implement and maintain the management dashboard comprising of reports and operational data..Perform the data provider role for Data Exchange Office (DXO)..Manage and maintain business information system to ensure data integrity..Train, coach and empower BI users on the use of data for reporting, operational support or analysis..', 'Requirement': "Bachelor's Degree in Statistics / Mathematics / Information Management.Minimum 2 years of relevant working experience."}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '201021424D', 'EA No.': '10C4754', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '7 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\nWhy JobStudio?\n\n1. We Genuinely Care About You\n\t\tAt JobStudio, we care about how you grow in your career. We make it our priority to understand you, your needs as well as ambitions. While monetary rewards are important, we know it is more than that. A job is about colleagues, opportunities for growth and inspiration. We try to stand in your shoes and understand what you truly want from a job and in life.\n\n2. Rely on a Strong Network\n\t\tOver the years, we have acquired experience and expertise in many sectors. As a result, we have built strong relationships with major companies, providing us with the latest job openings. More importantly, we know how you work and how you can fit into each company's culture. If you are a professional, JobStudio is able to find the right job for you.\n\n\n3. You Deserve the Best\n\t\tWithin a short span of seven years, we have made a name for ourselves in the staffing and executive search industry. We hold about 70% of the healthcare recruitment sector. As a testimony to our stellar growth, our founder was awarded with Entrepreneur of the Year Award in 2014. We are confident that we can find the best job for you because we are the best in recruitment.\n\n\nOur Mission\n\t\tOur mission is to forge strong relationships by genuinely caring for our candidates and clients.\n\n\nOur Vision\n\t\tBuilding Careers & Growing Companies\n\n\nOur E.T.H.I.C.S Values\n\n\t\tEmpathy: Taking a leaf out of your book, we will stand in your shoes.\n\n\t\tTrustworthiness: You can trust us like a friend.\n\n\t\tHard Work: We will work hard for you, going that extra mile always.\n\n\t\tInnovation: We will continue to look at ways to improve ourselves so that we can serve you better.\n\n\t\tCooperation: We do not just work for you, we work with you.\n\n\t\tSuccess: Ultimately, we want you to succeed in life!\n\n\t\tPDPA disclaimer: By submission of your application or resume\xa0 to JobStudio, you will be deemed to have consented to JobStudio collecting, using, retaining and / or disclosing your personal information to prospective employers for their consideration.\xa0\n\t\t\n\t\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-executive-public-health-ref%3A-pp-10120077?jobId=jobstreet-sg-job-10120077§ionRank=237&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Job Scope:
[{'position': 'Research Fellow / Scientist (Photonics Tech)'}, {'company_name': 'Advanced Micro Foundry'}, {'small_section': ['Clementi', 'Posted on 4-Nov-22']}, {'Research Scientist / Principle Engineer –': '', 'Technology Development\xa0': '', 'Job Responsibilities:': "Project management and execution with target deliverables and schedule..Fabrication of silicon photonics integrated circuits based on silicon photonics platform..Independently carry out opto-electronic characterization to verify device / circuit design and performance..Design / optimize photonic integrated circuit for various applications..Test result documentation and performance analysis..Performs other duties as assigned. Duties will vary according to the project progress and/or the specific goals of the company.Collaborate with project team members to ensure device meets specification and verify device's performance.", 'Job Requirements:': 'Ph.D in Integrated photonics or Electrical / Electronics.Hands-on experience in silicon photonics, especially for photonic circuit design.Hands-on experience in photonic simulation using software such as Lumerical / Rsoft, Electrical simulation using software such as Ansys / Synopsys / Silvaco and Layout drawing.Preferred experience in high-speed devices (MOD / PD) design / characterization.Experience in fabrication of silicon photonics is a bonus point.Strong self-motivation and interest on silicon photonics.Strong oral and written communication skills and demonstrated ability to work in a team-oriented environment.Problem analysis and problem solving skill.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '201720322R', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '25 days', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Singapore Science Park II'}, {'Company Overview': 'AMF is a pioneer in Si Photonics technology with an experience of 15 years in developing a unique set of Intellectual Property covering both devices and fabrication processes. This technology is supporting a large number of customers in a wide range of applications from telecommunications and data centers to LiDAR and sensing.This unparalleled experience is made available to our customers through a versatile platform offering in our 200mm Fab. These platforms offer best-in-class performance over a broad spectrum of wavelengths from visible to Mid-Infrared and can be deployed over a wide range of substrates including Si, Silicon-on-Insulator, glass…Together with our Process Development Kit, the versatility of our platforms allows customers to develop innovative cutting-edge Photonics Integrated Circuits for integration into their products.What you’ll receive for the great work you provide:Life InsuranceMedical BenefitsDental BenefitsFlexi BenefitsBonusesPaid Time-Off'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-scientist-photonics-tech-10085076?jobId=jobstreet-sg-job-10085076§ionRank=239&token=0~747fead5-465d-4446-8505-ecb219da6832&fr=SRP%20Job%20Listing'}]
Research Scientist / Principle Engineer –
[{'position': 'Professional Officer (Centre for Digital Enablement -- Data Architect) 498109 #Immediate'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities': 'Collaborate with faculty and corporate divisions on the data-related LLOS projects..Supervise external parties and mentor students in the development of the projects..Analyse user requirements, research, design, write, maintain, and/or disseminate the new data operation components..Manage digital technology related resources within the division such as (but not limited to) being a system administrator for software, hardware systems, and equipment..Provide support in ad-hoc activities such as (but not limited to) promoting awareness in digital and data literacy..Develop and deliver digital skills literacy related courses or workshops to undergraduate students and staff. Development of learning activities and assessment of students is one of the responsibilities..Provide consultations to undergraduate students and staff on digital skills/technology related queries and access feasibility of potential project ideas..', 'Job Requirements': 'Holding a PhD or Master degree in Electronic Engineering or Computing science from a recognized University, with 3-5 years of relevant experience..Have published in renowned international scientific conferences and/or journals..Proficient in programming and experienced in several languages such as (but not limited to) C, C++, Java, Python..Experience in data warehouse, data lake, data analytics, and various big data platforms and tools such as (but not limited to) Apache Hadoop, Apache Attic, Apache Impala, Apache Spark..Experience in cloud platforms such as Amazon Web Services, Microsoft Azure, and or Google Cloud Platform. Holding a valid official professional certification for the platform will be an additional advantage..Experience in using statistical programming tools to manipulate data and draw insights from large data sets..Has knowledge of a variety of machine learning techniques such as (but not limited to) clustering, decision tree learning, artificial neural network, and their real-world advantages/drawbacks..Has knowledge of advanced statistical techniques and concepts such as (but not limited to) regression, properties of distributions, statistical tests, and proper usage..Keen interest to support academic project work, with demonstrated ability in developing software solutions to technical problems..Possess strong supervisory skills and project management skills..Enjoy working with students in an educational environment..Demonstrate proficiency to stay up to date on emerging technologies and new applications..Good interpersonal skills and ability to work individually or in a team and with other divisions..Innovative mindset and passion in digital technology is required..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/professional-officer-centre-for-digital-enablement-data-architect-498109-immediate-10108357?jobId=jobstreet-sg-job-10108357§ionRank=242&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': '#Professional Officer (Centre for Digital Enablement - Data Architect) 498109 #Immediate'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities': 'Collaborate with faculty and corporate divisions on the data-related LLOS projects..Supervise external parties and mentor students in the development of the projects..Analyse user requirements, research, design, write, maintain, and/or disseminate the new data operation components..Manage digital technology related resources within the division such as (but not limited to) being a system administrator for software, hardware systems, and equipment..Provide support in ad-hoc activities such as (but not limited to) promoting awareness in digital and data literacy..Develop and deliver digital skills literacy related courses or workshops to undergraduate students and staff. Development of learning activities and assessment of students is one of the responsibilities..Provide consultations to undergraduate students and staff on digital skills/technology related queries and access feasibility of potential project ideas..', 'Job Requirements': 'Holding a PhD or Master degree in Electronic Engineering or Computing science from a recognized University, with 3-5 years of relevant experience..Have published in renowned international scientific conferences and/or journals..Proficient in programming and experienced in several languages such as (but not limited to) C, C++, Java, Python..Experience in data warehouse, data lake, data analytics, and various big data platforms and tools such as (but not limited to) Apache Hadoop, Apache Attic, Apache Impala, Apache Spark..Experience in cloud platforms such as Amazon Web Services, Microsoft Azure, and or Google Cloud Platform. Holding a valid official professional certification for the platform will be an additional advantage..Experience in using statistical programming tools to manipulate data and draw insights from large data sets..Has knowledge of a variety of machine learning techniques such as (but not limited to) clustering, decision tree learning, artificial neural network, and their real-world advantages/drawbacks..Has knowledge of advanced statistical techniques and concepts such as (but not limited to) regression, properties of distributions, statistical tests, and proper usage..Keen interest to support academic project work, with demonstrated ability in developing software solutions to technical problems..Possess strong supervisory skills and project management skills..Enjoy working with students in an educational environment..Demonstrate proficiency to stay up to date on emerging technologies and new applications..Good interpersonal skills and ability to work individually or in a team and with other divisions..Innovative mindset and passion in digital technology is required..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/professional-officer-centre-for-digital-enablement-data-architect-498109-immediate-10106231?jobId=jobstreet-sg-job-10106231§ionRank=243&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'VP, Data Analytics and Business Strategist'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About UOB': '', 'Job Responsibilities': 'We are looking for a data analytics and business strategist to develop business improvement plans and strategies..The responsibilities of a strategist include performing exploratory data analysis, developing and presenting recommendations, market research, generating and implementing ideas..Work with internal stakeholders to understand their challenges and gather, document, perform exploratory data analysis to propose solutions to address them.Conduct market research. Analyse data and perform research for market insight e.g. comparisons of companies based on available data on platforms such as SGX webpage or in the media..Create and present strategic plans. Responsible for the communication of action plans and following-up on action items..Design, build and implement data visualization/ dashboard, data analytics and reports for internal stakeholders to aid in key decision making.Identify and lead projects to drive automation and process improvement.', 'Job Requirements': 'Degree in IT or Data-related fields..At least 5 years of relevant experience in data analytics or analyst roles..Outstanding communication and interpersonal abilities..Strong leadership skills..Exceptional analytical and problem-solving skills..Excellent knowledge of MS Office, databases and information systems..Good understanding of research methods and data analysis techniques..', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-data-analytics-and-business-strategist-10100873?jobId=jobstreet-sg-job-10100873§ionRank=244&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Market Development Scientist - 216846BR'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted 4 hours ago']}, {'Summary of Job:': '', 'Responsibilities:': 'Identify strategic product/application opportunities in the selected market verticals. Develops partnerships with customers to advance the new application/idea to potential business opportunities..Provide hands-on application and solution development based on customer requirements to demonstrate feasibility of the application, often requiring rapid prototyping and/or product demo for client.Use in-depth product knowledge to provide technical expertise to commercial team and customer. Participate in presentations and demonstrations in various customer engagement activities (seminars, conference etc)..Assist the commercial team in assessing potential application of company products to meet customer needs and may prepare detailed product specifications for the development and implementation of customer products/applications/solutions..Analyse market data to identify trends/opportunities, develop strategic direction from market information, and build compelling market analysis presentations..Responsible in promoting new applications/ideas to internal partner as well as external market..', 'Qualifications:': 'Bachelor’s Degree or higher in Chemistry or equivalent.Deep product and technical knowledge of advanced hyphenation techniques in LC/MS, GC/MS, ICP/MS or IOMS. Able to conduct expert level of competitive positioning and differentiation..Proven practical hands-on expertise in chromatography and/or mass spectrometer techniques, including relevant sample preparations and analytical workflows. Minimum 5 years or more meaningful work experience..Demonstrates good oral & written communication skills.Great teammate with positive demeanor, excellent interpersonal skills, and ability to work in a highly collaborative, fast-paced environment to demonstrate the benefits of our products/solutions to customers.Prior experience working in a matrix organization working with distributors and other internal partners will be helpful..Ability to travel within the region (~25%) as and when travel restrictions are lifted.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/market-development-scientist-216846br-10147360?jobId=jobstreet-sg-job-10147360§ionRank=245&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Summary of Job:
[{'position': 'Market Development Scientist (220869BR)'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted 1 hour ago']}, {'Summary of Job:': '', 'Responsibilities:': 'Identify strategic product/application opportunities in the selected market verticals. Develops partnerships with customers to advance the new application/idea to potential business opportunities..Provide hands-on application and solution development based on customer requirements to demonstrate feasibility of the application, often requiring rapid prototyping and/or product demo for client.Use in-depth product knowledge to provide technical expertise to commercial team and customer. Participate in presentations and demonstrations in various customer engagement activities (seminars, conference etc)..Assist the commercial team in assessing potential application of company products to meet customer needs and may prepare detailed product specifications for the development and implementation of customer products/applications/solutions..Analyse market data to identify trends/opportunities, develop strategic direction from market information, and build compelling market analysis presentations..Responsible in promoting new applications/ideas to internal partner as well as external market..', 'Qualifications:': 'Bachelor’s Degree or higher in Chemistry or equivalent.Deep product and technical knowledge of advanced hyphenation techniques in LC/MS, GC/MS, ICP/MS or IOMS. Able to conduct expert level of competitive positioning and differentiation..Proven practical hands-on expertise in chromatography and/or mass spectrometer techniques, including relevant sample preparations and analytical workflows. Minimum 5 years or more meaningful work experience..Demonstrates good oral & written communication skills.Great teammate with positive demeanor, excellent interpersonal skills, and ability to work in a highly collaborative, fast-paced environment to demonstrate the benefits of our products/solutions to customers.Prior experience working in a matrix organization working with distributors and other internal partners will be helpful..Ability to travel within the region (~25%) as and when travel restrictions are lifted.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/market-development-scientist-220869br-10147922?jobId=jobstreet-sg-job-10147922§ionRank=246&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Summary of Job:
[{'position': 'Snr/Executive, Plans & Analytics'}, {'company_name': 'SMRT Buses Ltd'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Responsibilities': 'To review, analyse and interpret business data and information, include presentation of findings to draw new insights for business growth and competitiveness.Propose optimal solutions for gaps identified by examining operations and procedures and simulate new scenarios, while contribute and drive continuous process improvement initiatives to meet business needs.Collaborate with internal stakeholders to understand business needs and produce return-on-investment analysis, budgets for project execution, and deployment plans.Identify and collect appropriate data from publicly available sources to better understand our competitors, with analysis..Ability to translate data into executable and effective market and intelligence reports, presentations, and dashboards with insights presentation to the leadership team for strategic decision making and implementation..Market insight database to include price comparisons, competitive information – operational practices, new innovations, and other information.', 'Qualifications & Work Experience': '1+years of experience in business analytics and/or degree in Business Management, Finance, Economics.Proficiency in data analysis and statistical analysis tools such as SQL, R and Python.Results oriented and comfortable working in a fast-paced environment requiring prioritisation and ownership.Confident communicator with the ability to interact at all levels, including working closely with cross functional teams.Aptitude to identify new ways and think creatively.', 'Skills': '', 'Technical skills include:': '', 'Generic skills include:': 'Effective Communications.Creative Thinking.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Admin/Human Resources, Clerical/Administrative Support', 'Registration No.': '198202292D', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '11 days', 'Industry': 'Transportation / Logistics'}, {'Company Overview': '\n\nSMRT Buses Ltd, a subsidiary of SMRT Corporation, is one of Singapore’s major public bus operators. Anchored on our core competencies in operations, maintenance and training bus professionals, we operate bus services and manage bus depots and interchanges.\n\n\t\tAs the second largest public bus service operator in Singapore, we strive to deliver the best-in-class commuter experience by valuing commuters as our operational focus, developing our people as a key differentiator and innovating as an enabling strategy.\n\n\t\tWe have set our core values to be Integrity, Service & Safety and Excellence. SMRT is committed to provide safe, reliable and comfortable service for our commuters.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/snr-executive-plans-analytics-10092219?jobId=jobstreet-sg-job-10092219§ionRank=247&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Manager, Digital and Analytics (LW Advisory)'}, {'company_name': 'Tripartite Alliance Limited'}, {'small_section': ['Jurong East', 'SGD\xa03,300 - SGD\xa06,000', 'Posted on 2-Nov-22']}, {'Job Responsibilities:': 'Analyse TADM’s and its tripartite partners’ (MOM, NTUC and SNEF) needs, scope the problem and develop a business case to address it. This includes building a cross-agencies integrated system with chatbot and data analytics to better serve the needs of customers..Work with TADM’s vendor(s) on solutions and designs for clarification and acceptance..Work with TADM’s users to ensure smooth deployment and adoption of new solution..Write code that is clean, readable, and consistent for use on Google Dialogflow or equivalent.Be able to copy edit/write the chatbot content and ensure accuracy and readability.Be able to troubleshoot return errors in the chatbot independently.Data Analysis on both structured and unstructured data.Collaborate closely with other specialists and business units.', 'Job Requirements:': 'Tertiary Education in relevant fields is preferred.Hands-on experience in at least 3-5 years of project development life cycles.Strong programming language and fundamentals (e.g. C#, Java), strong analytical skills and learning agility..Strong analytical and problem-solving capabilities with the ability to grasp business issues and technical problems; and provide sound and logical solutions.Good knowledge in integration services.Good command of English and able to communicate clearly, concisely and logically, verbally and in writing..', 'The following are\xa0added advantages:': 'Experience in chatbot implementation with Google Dialogflow.Experience in SQL and Databases, HTML5, CSS, JavaScript tools and web services (REST and SOAP).'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201606688Z', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '14 days', 'Industry': 'Others', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "Tripartite Alliance Limited was incorporated in March 2016 and is jointly established and owned by the tripartite partners — Ministry of Manpower (MOM), the National Trades Unions Congress (NTUC) and the Singapore National Employers Federation (SNEF). Under the stewardship of TAL Chairman, Mr Stephen Lee and the Board of Directors, TAL aims to cement the spirit of Singapore Tripartism, bringing together the resources and expertise of the tripartite partners to build progressive workplaces.TAL currently comprises three agencies:Tripartite Alliance for Employment Dispute Management (TADM). Established in April 2017, TADM helps employees and employers manage disputes amicably through advisory and mediation services.\xa0https://www.tal.sg/tadmTripartite Alliance for Fair & Progressive Employment Practices (TAFEP). Established in May 2006, TAFEP promotes the adoption of fair, responsible and progressive employment practices among employers, employees and the general public.\xa0https://www.tal.sg/tafepWorkplace Safety and Health Council (WSHC). Established in April 2008, WSHC works closely with MOM, government agencies, various industry sectors, unions, and professional associations to develop strategies and programmes to raise WSH standards in Singapore.\xa0https://www.tal.sg/wshcTogether as one tripartite alliance, the three agencies work towards a unified vision of 'Progressive workplaces. Harmonious work relations'.\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-digital-and-analytics-lw-advisory-10036426?jobId=jobstreet-sg-job-10036426§ionRank=248&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Sr. Research Scientist [R00005119] #LetsGetToWork #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Senior Research Scientist (Computer/Electrical/Mechatronics Science/Statistics)': '', 'Key Responsibilities:': 'Play a leading role in both research and development of novel and/or enhanced assistive technologies to improve the safety of fleet drivers by (i) categorizing their driving behaviors through profiling; (ii) monitoring their well-being; and (iii) assessing driving risks and reporting to fleet manr/operator and/or drivers.', 'Job Requirements:': 'PhD in Computer/Electrical/Mechatronics Science or Statistics.Minimum 6 of experience in software or hardware development, integration and refinement.Solid application background in AI for computer vision and/or data analytics.Strong project manment skills.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-research-scientist-%5Br00005119%5D-letsgettowork-seekbetter-10135684?jobId=jobstreet-sg-job-10135684§ionRank=250&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Senior Research Scientist (Computer/Electrical/Mechatronics Science/Statistics)
[{'position': 'CV Hub Engineer (AI Singapore)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Description': '', 'Duties & Responsibilities': '', 'Qualifications': 'Degree in computer science, machine learning, statistics, AI, and other relevant equivalent quantitative fields.Experience in writing production level Python code.Experience in developing AI/Machine learning solutions that are deployed in a production setting.Experience in AI/Machine learning frameworks such as Tensorflow and Pytorch.Experience in using deployment tools such as Docker.Data story-telling, information visualisation and technical writing skills.Previous working experience in Computer Vision will be advantageous\xa0.Previous experience in deployment on edge devices will be advantageous.', 'COVID-19 Message': '', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/cv-hub-engineer-ai-singapore-10079295?jobId=jobstreet-sg-job-10079295§ionRank=251&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Engineer'}, {'company_name': 'NTUC LearningHub Pte Ltd'}, {'small_section': ['Central - Others', 'Posted on 28-Oct-22']}, {'Job Description': '·T support and ensure the smooth running of the data infrastructure and fine-tuning of the database. To co-develop ETL with vendor during implementation To enable LHUB to be more self-sufficient for Enterprise Data Hub maintenance and position the team.Design, develop, implement, support and maintain old and new data models, data warehouses, cubes, ETL packages and core data infrastructure crucial to the needs of the business..Retrieve, cleanse, validate and analyse data using different techniques in order to retain the data integrity and availability for Business Supports..Work closely with internal stakeholders to collect and understand business requirements then build, design and manage interpret solutions for either reporting or dashboard solutions required ).Work with management and stakeholders to prioritize business and information needs.Transform business requirement to data requirement, data analysis and profiling.Design data models for use cases and data warehousing.Perform data cleaning and ensure data quality and integrity in data warehouse.Root cause analysis of data issues and coming up with stable long terms solutions.Support data store’s inbound and/or outbound development.Perform data acceptance testing together with users.Implement and build a reliable data warehouse which meets the business needs of all stakeholders and according to data warehouse architecture guidelines.Identify data from different source systems and build the target data models.Ensure business rules and data definition are standardised across users and reports/dashboards.Ensure company’s data policy, data security standard and data governance guidelines are adhered to.', 'Requirements': 'Strong experience with Talend Studio and related tools.Diploma/BS in any relevant field (e.g., Statistics, mathematics, computer science or information technology)..At least 3-5 years relevant working experience as Data Engineer/Business Intelligence..Highly proficient in composing, maintaining and optimising complex SQL queries..Strong analytical skills with the ability to collect, organize, analyze, and disseminate significant amounts of information with attention to detail and accuracy..Strong knowledge of and experience on data management, structure, retrieval and ETL processes (structured and unstructured data sources).Knowledge of ODS an advantage.Ability to present information in a meaningful and structured manner (report and dashboard).Familiarity with programming languages such as Java, Python and its libraries.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200409359E', 'Company Size': '201 - 500 Employees', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts), Flexi Benefits, Family Care Leave', 'Specific Location': '73 Bras Basah'}, {'Company Overview': 'NTUC LearningHub Private Limited was corporatised in 2004 with the mission to enhance the lifelong employability of Singapore’s workforce by providing high quality, innovative products and affordable learning. The training programmes provided by NTUC LearningHub comprise Infocomm Technology, Professional IT Certificates, Soft Skills & Literacy, Workplace Safety & Health, Employability Skills System, Customer Service Training, Trades, Cleaning, WSQ Security and Manufacturing Skills. To date, it has trained close to 800,000 executives and working adults, and has worked with more than 10,000 companies to identify training needs, define curriculum roadmaps and deliver contemporary training programmes. The organization has evolved to meet the burgeoning training needs of Singaporeans to continuously keep pace with the dynamic business economy.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10023351?jobId=jobstreet-sg-job-10023351§ionRank=252&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Engineer'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Description': 'Work with internal and external stakeholders including customers, partners and colleagues to solicit requirements, design, develop, test and maintain\xa0Machine Learning\xa0systems.Responsible for documentation of system specifications.Conduct technical exploration of new Machine Leaning tools, techniques and platforms.Assist to maintain Machine Learning/AI knowledge repository.Support pre-sales initiatives, proposal development and provide post-sales support for Machine Learning systems.', 'Job Requirements': 'Degree, Master’s Degree or PhD in Computer Science/Engineering, Knowledge Engineering, Information Systems, Information Technology, Mathematics or equivalent with working experience in\xa0development of Machine Learning systems.Recognized professional or industrial certifications in relevant Machine Learning technologies or competencies.At least 1-3 years of professional experiences in design and development of Machine Learning systems.In-depth technical knowledge in at least two of the below areas:.Data Modelling.Data Mining.Statistical Analysis.Simulation.Operations Research.Data Visualisation.Predictive Analytics.Technical expertise in Python, R, SQL, Java, C/C++, MATLAB, Scala etc..Knowledge of big data technologies e.g. Hadoop, Spark, Hive, HBase etc. will be an added advantage.Knowledge of cloud computing platforms e.g. AWS, Google Cloud Platform, Microsoft Azure will be an added advantage\xa0.Experience in agile development methodologies.Knowledge of\xa0MLOps best practices in model development and deployment, CI/CD, version control etc..Excellent written and verbal communications skills;.Highly organized, motivated, independent and resourceful team player.Strong analytical thinking, interpersonal and problem-solving skills.Able to work productively in an agile and fast-paced consulting environment.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/engineer-10073273?jobId=jobstreet-sg-job-10073273§ionRank=254&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Fellow (AI Technology) AI Singapore #Seekbetter'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': '', 'Duties & Responsibilities\xa0': '', 'Qualifications': '', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-ai-technology-ai-singapore-seekbetter-10111060?jobId=jobstreet-sg-job-10111060§ionRank=256&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Fellow (Bio-Data Science)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {}, {'Career Level': 'Manager', 'Qualification': 'Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-bio-data-science-10086963?jobId=jobstreet-sg-job-10086963§ionRank=257&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
[{'position': 'Data Visualization Lead'}, {'company_name': 'Michael Page International Pte Ltd'}, {'small_section': ['Central', 'Posted on 4-Nov-22']}, {'Data Visualization Lead.': [], 'Client Details': '', 'Description': '', 'technical': '', 'non-technical': '', 'business partners': '', 'analysis, design': '', 'development': '', 'data visualization': '', 'Profile': '', 'Analytical and Reporting': '', 'BusinessObjects, Qlik Sense, PowerBI': '', 'Design, develop': '', 'QlikSense, BO, Power BI': '', 'functional dashboards': 'Exposure to other products in MS Power Platform (Power Automate) - Desirable.', 'Job Offer': '', 'Stability': '', ' remuneration': '', 'competitive': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Hardware', 'Registration No.': '199804751N', 'EA No.': '90C4069', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tMichael Page International is a leading professional recruitment consultancy specialising in the recruitment of permanent, contract and temporary positions on behalf of the world¦s top employers. Now, after more than 40 years in the recruitment market, we have secured our position as leaders in international recruitment and hiring. We currently have 140 offices that create a network that spans 36 countries around the world, with strong opportunities for more growth within Asia Pacific.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-visualization-lead-10132706?jobId=jobstreet-sg-job-10132706§ionRank=258&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Data Visualization Lead.
[{'position': 'Technical Sales Specialist – Molecular Biology\xa0and\xa0Sample Prep - 218746BR'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted 2 hours ago']}, {'About Us:': '', 'Location': '', 'How will you make an impact?': '', 'Job Description': '', 'What will you do?': 'Selling\xa0and\xa0promoting the Molecular Bio\xa0and\xa0Sample-Prep portfolios across a defined territory.Drive business growth through the development of\xa0new\xa0business\xa0and\xa0by growing business with current customers.Put customers first - Respond efficiently to customer requests, explore customer business goals\xa0and\xa0be a technical resource.Establish technical credibility\xa0and\xa0develop relationships with accounts\xa0and\xa0colleagues.Apply\xa0technical\xa0and\xa0business knowledge to present an\xa0attractive\xa0value proposition to customers.Work\xa0within a broader sales team\xa0and\xa0engage with multiple internal collaborators.Attend Trade Exhibitions to generate leads\xa0and\xa0prospects for the company’s products.Develop\xa0and\xa0implement technology seminars applicable to the account research focus.Collect, process,\xa0and\xa0disseminate market feedback\xa0and\xa0competitive intelligence to support evolution of our product offerings.Accept\xa0and\xa0adapt to change quickly while remaining effective\xa0and\xa0efficient.Independently balance multiple tasks in parallel\xa0and\xa0prioritize workload.Manage employee development, train\xa0and\xa0promote growth\xa0and\xa0development.Field travel is required (50%\xa0or\xa0more).', 'How will you get here?': '', 'Education': 'Masters in Life Sciences\xa0or\xa0equivalent.', 'Experience': '5+\xa0years\xa0technical sales experience (or\xa0equivalent\xa0work\xa0experience) in life sciences, serving academic, government,\xa0and\xa0biopharma customers is highly preferred.Strong\xa0life science knowledge in molecular biology, gene synthesis,\xa0and\xa0sample preparation would be helpful.Open to\xa0candidates\xa0with relevant technical knowledge, who wants to switch over to sales role.High motivation\xa0and\xa0energy level to develop\xa0new\xa0business.'}, {'Career Level': 'Senior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Sales - Eng/Tech/IT', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/technical-sales-specialist-molecular-biology-and-sample-prep-218746br-10147732?jobId=jobstreet-sg-job-10147732§ionRank=260&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
About Us:
[{'position': 'Lead Professional Officer, Software - Machine Learning, AI - 2309 - JT'}, {'company_name': 'CTES Consulting Pte Ltd'}, {'small_section': ['West', 'SGD\xa08,000 - SGD\xa09,000', 'Posted on 2-Nov-22']}, {' Lead Professional Officer/ Senior Professional Officer - Software Engineering (Machine Learning/ Deep Learning/ Artificial Intelligence)': '', 'The responsibilities of this role are:': 'Work with faculty in the development, design, planning and set-up of laboratories for teaching and research activities.\xa0 This may involve activities to plan, procure and manage equipment in the lab, provide training to staff and students on usage of specific laboratory or equipment as well as development of lab manuals..Mentor students during hands-on projects and laboratory activities for ICT year-1 and year-2 student to enhance their practical problem-solving skills. This may involve conduct of relevant practical activities as well as supervision of students in their projects and laboratory assignments as a part of applied learning..Guide students to navigate the industry environment during their Integrated Work Study Programme (IWSP)..Support the faculty in the supervision and assessment of students for IWSP, ITP (integrative team project) and for Final Year Projects/Capstones..When innovation project opportunities arise, participate in the project/s together with faculty and students..Working in a team to manage and ensure the readiness, operations and proper maintenance of the laboratories resources..Carry out Risk Assessment, and ensure compliance with Work, Safety and Health Regulations in the laboratories.', 'The ideal candidate will need to have the following qualities and experience:': 'A good degree in Computing or Data Science from a recognized University. Major in Software Engineering or possessing a Master degree will be advantageous..', 'A good degree in Computing or Data Science from a recognized University. Major in Software Engineering or possessing a Master degree will be advantageous.': 'Proven AI industry practitioner and working experience as a Machine Learning Software Engineer or similar role, with good knowledge of industry practices and technological applications in the field. Familiarity with machine learning frameworks and libraries (such like Caffe, Spark ML, Keras, PyTorch, TensorFlow, Scikit-Learn, CNTK etc).', 'Proven AI industry practitioner and working experience as a Machine Learning Software Engineer or similar role, with good knowledge of industry practices and technological applications in the field. Familiarity with machine learning frameworks and libraries (such like Caffe, Spark ML, Keras, PyTorch, TensorFlow, Scikit-Learn, CNTK etc)': 'At least 10 years’ experience in the knowledge domain.', 'At least 10 years’ experience in the knowledge domain': 'Must have a firm grasp and understanding of data structures, data modeling and software architecture using Python, R, Java and C, as well as deep knowledge of math, probability, statistics and algorithms..', 'Must have a firm grasp and understanding of data structures, data modeling and software architecture using Python, R, Java and C, as well as deep knowledge of math, probability, statistics and algorithms.': 'Keen interest to support research and academic project work, with demonstrated ability in developing software solutions to technical problems..Possess strong supervisory skills and enjoy working closely with students in an educational environment..Self-starter with hand-on knowledge to setup network and server systems, manage software development environment and configuration activities to support testing and maintenance of information system, software applications, hosted services and websites..Demonstrate proficiency to keep abreast of development in the field and pursue professional certification programs. Possess of industrial certifications in relevant areas will be an added advantage..Professional Officers appointed at senior levels may have managerial responsibilities..A committed believer in continuous learning and self-improvement, with a strong sense of confidence in managing his/her own learning process..Good communication and interpersonal skills..Passionate about training, coaching and mentoring..Able to build and maintain strong working relationships with people within and external to the university..Self-motivated team player and flexibility to work across functions/teams in a dynamic hand-on environment..Possess strong analytical and critical thinking skills..Show strong initiative and take ownership of work..', 'An exciting career awaits the right candidate! Click "Quick Apply" to register your interest now.': '', "All applicants' CV will be treated with the strictest confidentiality. We regret to inform that only shortlisted candidates will be contacted.": []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200509226D', 'EA No.': '07C3481', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\nEA License No.: 07C3481\n\n\tOur Recruitment Consultants are equipped with extensive recruitment and industry expertise in their areas of specialisation.\n\n\tThe experience combined with their commitment to establish a deep understanding of our client and their business priorities enable CTES to deliver value far beyond the service provided by traditional search firms.\n\n\tWe provide an impeccable match. At CTES, we believe in providing a seamless match between candidate and client. We deem it our responsibility to thoroughly understand our client's needs, and to obtain in-depth knowledge of the job requirements and the culture of the client's organization. This enables us to provide suitable and proficient candidates to our clients.\n\n\tBy ensuring a close match between the candidate and position, we are able to foster a win-win situation, for both our clients and our candidates.\n\n\tCTES aims to be an organisation renowned throughout the Asia-Pacific region, integral to both employers and career seekers. We hope to become the preferred HR and career consultants for our clients and candidates respectively.\n\n\tFor more information, visit our Opportunities Page for more available jobs at www.CTES.com.sg! Alternatively, email us at [email\xa0protected].sg to contact us!\n\n\tLinkedIn @\xa0www.linkedin.com/company/ctes-consulting-pte-ltd\n\n\tFacebook @\xa0www.facebook.com/CTESConsulting"}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-professional-officer-software-machine-learning-ai-2309-jt-10124247?jobId=jobstreet-sg-job-10124247§ionRank=261&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Lead Professional Officer/ Senior Professional Officer - Software Engineering (Machine Learning/ Deep Learning/ Artificial Intelligence)
[{'position': 'Senior Research Scientist | [Bioinformatician - Cancer Science Institute]'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-%7C-%5Bbioinformatician-cancer-science-institute%5D-10110249?jobId=jobstreet-sg-job-10110249§ionRank=262&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Manager (Customer Data Analytics)'}, {'company_name': 'Marina Bay Sands Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'JOB SCOPE': '', 'Background': '', 'Job Responsibilities': '', 'Key areas of focus, include:\xa0': 'Leverage customer data and analytics to acquire, develop, and retain high-value customers more profitably and effectively.Work with the casino sales team to optimize structure, communication, and coverage.Develop a robust behavioral and needs-based segmentation to create more relevant, actionable, and personalized campaigns, offers, and engagements\xa0.Collaborate with the marketing technology team to enhance CRM and real-time rules capabilities.', 'Analytics:': 'Apply advanced analytics, modelling and machine learning on patron behavior, CLV prediction and profitability analysis..Enhance our 360° view of our most valuable guests and create actionable segmentations of patrons across the entire Integrated Resort..Work closely with Sales and Marketing departments to:.Monitor the business and highlight trends and opportunities..Translate modelling results and segmentations into business strategy via data/dashboards with impactful visualization..Design data-driven personalized offers and A/B testing..Evaluate the effectiveness of our marketing strategies..Work closely with Business Intelligence, data warehouse, IT and smart IR teams to implement analytical solutions..Lead a team of high performing analysts to deliver excellent results and coach junior team members..', 'JOB REQUIREMENTS': 'Degree in Business/Marketing Analytics, Applied Mathematics, Statistics or other related analytical fields..At least 5 years of hands-on experience in analytics required..Experience in customer analytics from management consulting, Finance or E-commerce Industries preferred..Experience building and implementing predictive models and machine learning preferred..Experience leading a small analytics team will be an added advantage..Casino related experience is a bonus but not compulsory..Programming skills using analytical tools such as Base SAS, SAS EG, SQL, R or Python is required..Highly proficient in data visualization tools, such as Tableau..Strong logical thinking, data analysis and problem-solving skills..Excellent communication and presentation skills..Passionate about data, customers, and building your career with Marina Bay Sands..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '200507292R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '1 day', 'Industry': 'Hotel / Hospitality'}, {'Company Overview': '\n\n\t\tMarina Bay Sands® is Asia’s leading destination for business, leisure and entertainment delivering once-in-a-lifetime experiences. The landmark building is situated in the heart of Singapore’s Central Business District and transforms Singapore’s skyline and the country’s tourism landscape.\n\n\n\t\tThe destination offers a luxury hotel, state-of-the art convention and exhibition facilities, theaters, world-class entertainment and the best shopping and dining in the region. The three hotel towers are crowned by the Sands SkyPark® on the 57th story.\xa0\n\n\nProduct & Services\n\n\n\t\tConveniently located in the heart of the Central Business District and 20 minutes from Changi Airport.\n\n\n\t\t• Hotel: The Marina Bay Sands hotel has three 55-story towers with 2,561 luxury rooms and suites. The three towers are capped by the Sands SkyPark, which offers 360-degree views of Singapore’s skyline. It is home to restaurants, lush gardens, an infinity edged swimming pool and the world’s largest public cantilever housing an observation deck.\n\n\n\t\t• Expo and Conventions: The Sands Expo and Convention Center has 1.3 million square feet of flexible convention and exhibition space. It can host over 45,000 delegates, 2,000 exhibition booths and 250 meeting rooms. It features Southeast Asia’s biggest ballroom, which can accommodate 6,600 people for a banquet, and up to 11,000 for an auditorium-style lecture.\n\n\n\t\t• Shopping: The Shoppes at Marina Bay Sands has 800,000 square feet of retail and dining space. Luxury retailers include Bally, Cartier, CHANEL, Ferragamo, Franck Muller, Gucci, Hermès, Hublot, Hugo Boss, Louis Vuitton, Miu Miu, Omega, Patek Philippe, Prada, Tiffany & Co. and Yves Saint Laurent. New brands include Anne Fontaine, Henry Cotton’s, Leviev, Marisfrolg, Moiselle, Rabeanco, Stefano Ricci, and Wolford.\n\n\n\t\t• Restaurants: Dining at Marina Bay Sands is a gourmet experience with over 50 dining choices. These include celebrity-chef restaurants helmed by Mario Batali, (New York), Daniel Boulud (New York), Wolfgang Puck (Los Angeles), Guy Savoy (Paris), Tetsuya Wakuda (Sydney) and Justin Quek (Singapore).\xa0Marina Bay Sands features signature restaurants, modern bistros and a premium food court.\n\n\n\t\t• Entertainment: Marina Bay Sands energizes the entertainment and nightlife scene in Singapore with nightclubs, world-class entertainment, a museum and a casino.\xa0The museum, which has a lotus-inspired design, will feature blockbuster exhibitions from around the world.\xa0Two state-of-the-art theaters will open with a total of about 4,000 seats. The Broadway hit The Lion King will debut in Sands Theater, with Le Theater presenting shorter-run shows such as concerts, award ceremonies and gala events.\xa0The outdoor event plaza along the promenade next to Marina Bay will host audiences for watching events on the bay or on the plaza.\xa0\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-customer-data-analytics-10074483?jobId=jobstreet-sg-job-10074483§ionRank=265&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
JOB SCOPE
[{'position': 'Senior Data Engineer'}, {'company_name': 'Hudson Global Resources ( HQ )'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Major European-based Chemical Manufacturing Organisation in Singapore': 'Major European-based Chemical Manufacturing Organisation in Singapore.Newly Created role.', 'Newly Created role': 'Key Strategic Data Engineering Role.', 'Key Strategic Data Engineering Role': '', 'Java and SQL': '', 'Talend': '', 'Snowflake': 'Experience working in a virtual team setting and self-driven with desire to take the lead and drive tasks to completion in a remote environment.Detail-oriented and strict attention to details and the ability to quickly spot and fix problems.MUST be currently based in Singapore and has relevant working experience in Singapore.', 'MUST be currently based in Singapore and has relevant working experience in Singapore': []}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199501238M', 'EA No.': '18S9265', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tHudson is a talent solutions company with expertise in leadership, specialized recruitment and talent management.\n\n\tOur Singapore office specializes in recruiting mid-to-senior level positions across Accounting & Finance, Financial Services, Human Resources, Technology and Sales & Marketing.\n\n\tTo find the right talent for your team or to explore opportunities, please visit hudson.sg.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-engineer-10122491?jobId=jobstreet-sg-job-10122491§ionRank=266&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Major European-based Chemical Manufacturing Organisation in Singapore
[{'position': 'Data Analyst | Central Area'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa08,000', 'Posted on 30-Oct-22']}, {'Job responsibilities': "Extract and clean the data from various data sources to generate daily, weekly and monthly reports.Set up the automation of reports from data extracted and stored by AWS.Provide data analysis and insights to identify and recommend areas of improvement.Fulfil ad-hoc data request from client and management.Have some experience in ETL processes and mapping different sources of data with key identifiers.Writing SQL queries to retrieve information quickly.Management and Identification of key data points, trends that can be used in tandem with operations to increase KPI's.", 'Knowledge/Skills Required': 'Experience in contact centre/service industry including data/trend prediction & analysis, self-help migration.Experience in building reports using Excel, Tableau, SQL, Power BI, Python, or other business intelligence and data analytics tools Strong communication and presentation skills.Proactive and able to work independently with minimum supervision.Excellent time management with strong critical thinking and ability to handle pressure.', 'click the "APPLY NOW" button': []}, {'Career Level': 'Non-Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-%7C-central-area-10116734?jobId=jobstreet-sg-job-10116734§ionRank=267&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Job responsibilities
[{'position': 'Research Fellow - (Air Traffic Management/Machine Learning) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Undertake research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data mining, doing analytics, and building high quality strategic planning system for future for Air Traffic Management systems.Provide expertise on algorithmic concepts for the broader applied analytics of ATM and inspire the adoption of advanced analytics and data science across the entire breadth of ATM system..', 'Job Requirements:': 'PhD Degree in Computer Science/Aerospace Eng/Operation Research.Good programming skill (Python / MATLAB / C++).Good English writing and communication skills.Independent and team player.Good publication records.Demonstrated relevant experience in Artificial Intelligence / Machine Learning.Publication track record in peer-reviewed and reputed journals/conferences related to Artificial Intelligence / Machine Learning / AI&ML applied to ATM.Hands-on experience in using machine learning libraries such as Scikit-learn, etc..Hands-on experience in using deep learning library (either TensorFlow or PyTorch).Experiences in at least two of the following areas is a strong plus:.Tempo-spatial data mining and analysis,.Time series analysis and prediction,.Generative models.Reinforcement Learning and/or Inverse Reinforcement Learning.Probabilistic Modeling / Bayesian Machine Learning.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-air-traffic-management-machine-learning-urgent-10135616?jobId=jobstreet-sg-job-10135616§ionRank=268&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Assistant Vice President, - Senior Digital Analyst'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Job Responsibilities': 'Reporting into Group Head of Digital Analytics, TMRW are seeking a digital analyst and team player..You are likely to have five years’ experience.\xa0.Experience in retail banking or financial services is an obvious advantage but not essential..Working with internal (Group and local marketing & Customer Engagement teams) and external stakeholders (Media agencies and platform providers), you will help the implementation of Digital Tagging and Tracking and the reporting of digital behavior insights..', 'Scope & Responsibilities': 'Stakeholder relationship management, including Local Market Marketing and Technical Teams, Platform Vendors (Google, Adobe & AppsFlyer etc) & Digital Analytics Agencies..Defining business reporting goals and KPI’s, Designing Tagging Plans, Implementation and UAT Tagging verification..Analyze of new digital features and content performance and liaise with Product owners and Group Technology to define and implement Digital Analytics requirements..Interpretation of Digital Analytics Data to communicate appropriate insights and offer recommendations including media optimization and in-app user experiences..Produce reports to help group marketing teams, regional teams, and executive leadership to make more informed decisions..Effectively communicate findings with actionable recommendations to business leaders verbally and in presentations..Motivated, proactive, creative problem solver not afraid to challenge conventions and help drive positive business change..', 'Job Requirements': 'An understanding, Web analytics; Adobe, Google Analytics (Firebase) and AppsFlyer preferred..An understanding of digital advertising (display, mobile, e-mail, video and social media.An understanding of digital platform development and operation (Apps & Websites)..5+ years of work experience as a digital analyst or from an associated digital background, including data analysts or IT engineering or similar.Experience in Digital Retail Banking and App-development obviously an advantage but not essential..Experienced\xa0in using the Microsoft excel and PowerPoint.Knowledge of web measurement technologies: Website analytics software (e.g. Adobe, Google Analytics and AppsFlyer) and advantage but not essential (Training provided).An appreciation for web design, digital marketing, user experience, information architecture.Detail-oriented with the ability to manage multiple tasks simultaneously..Ability to build and maintain good rapport with internal and external customers communicating ideas and concepts with an end result of increased sales and profitability while handling situations with confidence, tact and resourcefulness.', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-vice-president-senior-digital-analyst-10083956?jobId=jobstreet-sg-job-10083956§ionRank=269&token=0~410213b4-28cf-40c5-b8c8-42db96640f5c&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Data Analyst Fraud'}, {'company_name': 'MBA Michael Bailey Associates Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Job Responsibilities:': "Job Responsibilities:.Data exception monitoring (Anti-frauders): through long-term data monitoring, conduct in-depth investigations on the frauders of various products/promotions on the platform, study frauders behavior paths and user profile, and propose implementable anti-fraud solutions. Coordinate relevant teams to implement solutions in a timely manner, and ultimately optimize the overall product-side risk control logic;.Growth product/promotions effect analysis: conduct pre-launch risk control verification for growth-related products/promotions, and post-launch effect analysis to help product teams iterate plans, continuously track effects/roi, and ultimately achieve efficient users growth of the overall platform;.Increase conversion rate: Improve the final conversion rate of users through the analysis of the user's overall conversion road.", 'Job Requirements:': '1-5 years of work experience is required, and English can be used as a working language;.Proficient in using sql/python/spss and other data analysis tools, with certain data modeling capabilities;.High data sensitivity, and can analyze data and provide solutions from the perspective of business optimization;.Interested in the crypto industry /blockchain industry, and it will be better have a deep level of participation;.Good communication skills, able to maintain good communication and collaboration with multiple teams;.Strong self-driven, with strong learning ability and curiosity..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201100372C', 'EA No.': '11C5721', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '12 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\nOur business:\n\n\tWe are a leading international resourcing consultancy with thirteen offices across Europe and Asia Pacific (London, Amsterdam, Eindhoven, Brussels, Munich, Düsseldorf, Zurich, Singapore, Sydney, Kuala Lumpur). Our clients are global market leaders in the IT, Telecommunications, Oil & Gas, Pharmaceutical and Finance & Risk sectors.\n\n\tOur success is built on a strong set of values and a history of working in close partnership with clients and contractors to provide long term staffing solutions. We take a strategic approach based on trust, knowledge and support to supply expert consultants of the highest calibre.\n\nWorking at Michael Bailey Associates:\n\n\tCommitment, resilience, innovation, passion, honesty and integrity are the attributes that we look for in our employees. In return, we are committed to fully supporting our team as they develop their careers.\n\t\n\t\n\t\tAs a well-established international company, we offer outstanding career opportunities at all levels. We invest heavily in training, technology and infrastructure to create a working environment that drives success, and we offer a competitive rewards and incentives package.\n\nContracting for us:\n\n\t\tWe are committed to providing the best support available for our contractors. With dedicated Account Managers working in partnership with clients and contractors, our reputation is extremely positive with both clients and contractors, enabling us to attract and retain the best talent available.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-fraud-10066094?jobId=jobstreet-sg-job-10066094§ionRank=273&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Scientist (Artificial Intelligence), Computing & Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Requirement': '', 'Preferred qualifications (one or more of the following)': []}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-artificial-intelligence-computing-intelligence-ihpc-10117893?jobId=jobstreet-sg-job-10117893§ionRank=274&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Requirement
[{'position': 'Product Owner (Data & BI Hive)'}, {'company_name': 'Achieve Career Consultant Pte Ltd'}, {'small_section': ['East', 'SGD\xa016,000 - SGD\xa017,000', 'Posted on 2-Nov-22']}, {'About the Product Owner (Data & BI Hive) role:': '', 'Key Responsibilities': 'Own all aspects of the business logical design and delivery of the Athena data platform..Be well versed of Data Analytics industry trends and new technologies..Have a strategic mindset and the ability design and implement Data and BI strategies for CPBB in the context of overall CPBB strategy..Manage Business BAU delivery of standard and consumable data and reporting capabilities..Deliver insights to help shape strategy across a wide spectrum of business and technology areas..Manage Data Analytics Process and ensure solid governance and control in place..Being a change agent in Business Analytics; challenging status quo; never settles. Lead the effort to build a strong and capable team in GBS off-shore centre..Be the business owner of risk for CPBB data platform; work close with Operational Risk function..Be the business owner for data governance and data management..', 'Key Requirements:': '', 'degree': '', '12+ years of experience': '', '8+ years': 'Strong understanding of consumer lending products like Credit Cards, mortgages, loans and overdrafts is a must..Deep experience developing successful data and BI platforms and solution to business problems..Proven track record of solving ambiguous and highly complex data problems..Experience with statistical analytics and AI / ML models. Hands on experience in open-source programming language, e.g., SQL, Python, R, Scala and ML frameworks..Strong interpersonal and communication skills. Must be able to explain technical concepts and analysis implications clearly to a wide and senior audience, and be able to translate business objectives into actionable analysis..Ability to design processes and procedures which are continually reviewed, improved and changes communicated for effective implementation, with consensus of key leaders in the wider organization..Ability to understand and connect business drivers and rationale for and application of those relevant to the Retail business..', 'Required Technical Competencies:': 'Big Data Management and Analytics..Data Science..Data Warehousing..Information Management..Logical Data Modelling..Requirements Analysis..', 'HOW TO APPLY:': '', 'Wong Jing Kai': '', 'Beldric Chua, at 6590 9920 ': '', 'YOUR SUCCESS IS OUR ACHIEVEMENT!': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '12 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199801996Z', 'EA No.': '05C3451', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "We're Here to Help People ACHIEVE Success!ACHIEVE is a multi-award-winning ISO 9001 recruiter that has placed more than 40,000 people in positions across industries. Established since 1990, with headquarters in Singapore and an office in Malaysia,\xa0our consultants are specialists in specific areas of specialization, and have the expertise to match candidates with the right permanent positions and contract jobs. In our 30 over years as a recruiter, we are widely recognised by jobseekers, MNCs and SMEs across the Asia Pacific region. A homegrown trusted brand, we are regularly featured in the media and have been honoured with multiple awards by the business community.\xa0In 1H 2022, we were accorded the rare honour of being conferred both the Human Capital Partnership Programme for Employment Agencies (HCP) by the Ministry of Manpower (MOM) and the Singapore Prestige Brand Award (SPBA) by the Association of Small and Medium Size Enterprises (ASME), in recognition of our business transformation efforts and push to build a Singapore core in the workforce!"}, {'url': 'http://www.jobstreet.com.sg/en/job/product-owner-data-bi-hive-10124908?jobId=jobstreet-sg-job-10124908§ionRank=275&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
About the Product Owner (Data & BI Hive) role:
[{'position': 'Research Scientist (Diagnostics R&D)'}, {'company_name': 'Denka Life Innovation Research Private Limited'}, {'small_section': ['West', 'Posted on 31-Oct-22']}, {'Requirements:': 'Expertise in molecular biology techniques like DNA/RNA manipulation and amplification..Expertise/Experience in aptamers or antibodies..Experience in point of care devise or cartridge development..Experience in microbiology and cell culture techniques such as bacteria, fungi, or virus isolation..Perform data analyses & interpretation, and report writing..Skills in bioinformatics analysis would be advantages..PhD in Microbiology, Molecular or Cell Biology, Immunology or other suitable life science discipline.\xa0.2 to 5 years’ experience in industry or diagnostics R&D is advantageous..Enthusiastic, highly motivated, able to multi-task, with excellent interpersonal and communication skills..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '201620322M', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '23 days', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tDenka Life Innovation Research Private Limited (DLIR) is established in Biopolis, Singapore, with the aim of securing the Denka Group’s first overseas R&D base specializing in the healthcare and life science field. DLIR’s location and setting are expected to help the company secure and nurture researchers capable of leading cutting edge R&D projects that involve collaboration with different institutions around the world.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-diagnostics-r-d-10031674?jobId=jobstreet-sg-job-10031674§ionRank=276&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Requirements:
[{'position': 'Head (Data & Analytics Platform Delivery)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job responsibilities:': 'Manage organisation’s data management platform project end-to-end delivery, including support and maintenance phases..Manage project’s business and technical requirements, tendering and procurement of projects and/or services.Work closely with the Data Engineering & Data Analytics Teams to understand and finalize functional and technical requirements.Manage project with vendors to ensure project deliverables meet project’s requirements within budget and schedule..Plan and collaborate across various stakeholders and teams to manage technical dependencies of the solution.Plan, monitor, track and manage risks/issues related to project delivery with the vendors.Work closely with vendors to ensure solution design complies with organisation’s data policy & governance, data security and GovTech’s Instruction Manual for ICT & SS Management.Work closely with vendors to ensure completion of User Acceptance Testing (UAT), performance / load testing and system security testing with quality results.Escalate issues that impacts project schedule on timely basis and propose workarounds/resolutions.Provide regular status updates to Management.Perform knowledge management with proper project documentations and records.', 'Job Requirements': 'Bachelor’s Degree in computer science, information technology, business computing, business analytics, software/computer engineering or\xa0related disciplines.More than 8 years experiences in front-end consultations & solutioning (internally with stakeholders and externally with vendors), vendors management, managing and delivering data and analytics systems/platforms (preferably at enterprise or organisation level).Experience in software/system life cycle, functional and technical specifications, and system/unit level testing.Excellent communications skills with various stakeholders, both internally within division/organisation and externally\xa0\xa0\xa0with vendors and technology partners..Demonstrate leadership in leading a complex project and delivering solutions/systems.Forward thinking approach to challenges with outstanding influencing, negotiating and persuasion skills.Resourceful team player, and proven result-oriented person with a focus on delivery.Experience with Cloud Services & Infrastructure, and Data Warehousing services (Microsoft Cloud, AWS or Google Cloud), Snowflakes, Denodo and data quality tools are highly valued.Experience with building or working with data flows and pipelines, and understanding of size and performance constraints will be an added advantage.Good problem solving, analytical, synthesis, system thinking and solutioning skills.A natural mentor and have a sense of knowledge sharing and focus on individual personal development.High drive and self-motivated. Ability to think out of the box..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/head-data-analytics-platform-delivery-10124047?jobId=jobstreet-sg-job-10124047§ionRank=277&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Job responsibilities:
[{'position': 'VP/AVP, Project Analyst, Enterprise Data Management, Data Management Office'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Data Management Office and Big Data Analytics': '', 'Data Management Office': 'The single point of contact for users across UOB for data issue escalations. The EDM ensures that data hosted in data warehouse is of good quality and conforms to data standards such as completeness, accuracy and consistency, to support regulatory and management reports. The team also promotes data automation and makes use of data to help develop initiatives to improve productivity..Data discovery through provision data requests to respective playpen for business units across the Group. The objective advocates self-service data exploration and analysis within and among Business/Support Units. Data definition and specification documents are available to provide navigational guidance and support for data provision purposes..', 'Job Responsibilities': 'Gathering and documenting business requirements & functional specifications on data related initiatives..Perform data profiling and gap analysis, source to target mappings, data issue capturing, resolution and escalation..Provide end-to-end project delivery support, including workshop planning, conducting of workshop walkthrough, user acceptance testing, defect support, continuous validation and assisting with rollout activities..Able to perform complex SQL scripting to meet user’s requests..Foster strong working & collaborative relationships with the business & technology stakeholders..', 'Job Requirements': 'Minimum Bachelor Degree or equivalent professional qualifications in Computer Science with at least 5 years of working experience in banking industry, preferably with business / functional knowledge;.Experience in gathering and documentation of business requirements;.Knowledge of architecting and modeling in Systems Integration, Data Warehousing, BI tools, Big Data platforms and experienced in the use of analytical /query and visualisation tools. Must be able to query and understand database solutions..Extensive experience designing, developing, and documenting data-driven solutions – including capturing architectures, metadata systems, data dictionaries, databases and applications..Good team player who possesses drive and initiative;.Excellent written / oral communication skills to effectively interact with different stakeholders and external vendors, able to work independently under pressure..', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-avp-project-analyst-enterprise-data-management-data-management-office-10082655?jobId=jobstreet-sg-job-10082655§ionRank=278&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Research Associate (Statistical Analysis)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-statistical-analysis-10115382?jobId=jobstreet-sg-job-10115382§ionRank=279&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
[{'position': 'Post Doctoral Fellow, Laboratory of Cancer Epigenetic Regulation, GIS'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Responsibilities:': 'Perform scientific experiments related to Cancer Epigenetics and Cancer Genomics..Generate\xa0genomics\xa0data to obtain insights on the human cancer landscape at various levels ranging from bulk tumours down to the single-cell level..Lead manuscript writing for high impact journal publication..Deliver scientific presentations..Collaborate with clinicians and scientists from local and international institutions.Assist the PI in grant applications..', 'Skills/Background:': 'PhD in a\xa0Biology related\xa0field..Candidates with and without postdoctoral experience will be considered..Experience with\xa0next generation sequencing\xa0techniques (e.g., CRISPR-Cas9, Single-cell profiling, ChIP-Seq, ATAC-Seq, RNA-seq etc)..Experience with molecular biology techniques (e.g., Cell culture, Transfection/Transduction, Western Blot, qPCR and Cell cloning etc)..Knowledge of programming skills (e.g., R and/or Python etc) will be advantageous..Some experience with\xa0next generation sequencing\xa0data analysis (e.g., whole-exome/whole-genome sequencing, RNA-seq, single-cell RNA-seq, ATAC-seq, ChIP-seq etc), especially for human cancers will be advantageous..Highly motivated, able to work independently and committed team player..A track record of peer-reviewed publications in relevant areas to be provided..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/post-doctoral-fellow-laboratory-of-cancer-epigenetic-regulation-gis-10096560?jobId=jobstreet-sg-job-10096560§ionRank=280&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Fermentation Scientist, SIFBI'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Work Scope:': 'Designing and performing bioprocess experiments ranging from simple flask to large laboratory-scale bioreactor systems (1L to 10L) with little supervision..Performing bioprocess experiments in larger scale (>10L)..Operating basic Downstream Process equipment (e.g. Crossflow filtration)..Collecting representative bioprocess samples with subsequent preparation for sample characterization..Conducting basic measurements such as OD, substrate, and product concentration..Fixing the experimental outcomes by careful evaluation and summary of the obtained results with subsequent clear presentation of own results..Authoring publications..Supporting of writing proposals..Mentoring junior team members..Administrative tasks as assigned..', 'The ideal candidate should have:': "Practical experience in lab scale fermentation (< 10L)..Experience with various basic analytical methods (HPLC, GC,\xa0spectrophotometer\xa0etc.)..Familiar with MS Office (Word, Excel, PowerPoint) at a level where reports and presentations can be properly prepared..Accuracy and care in handling and measuring samples and generating data..Good organization and time management in planning daily work activities..Commitment to strict compliance with established standards for safe work practices..Experience to develop and follow process SOPs and batch sheets, risk assessments and specifications for scale up, and tech transfer..Self-motivation and perseverance..Excellent communication and teamwork skills..A constant striving for further development of one's own abilities..", 'Advantageous but not a necessity will be:': 'Hands-on experience with design of experiments (DOE) applied to bioprocesses and associated software (JMP, MiniTab)..Practical experience in handling larger bioreactors (10 l to 200 l)..Knowledge of relevant large-scale industrial fermentation practices..Practical experience with in-situ extraction methods..Practical or theoretical experience with gas fermentation bioreactors..Background knowledge on bioprocesses for food applications (precision fermentation, alternative proteins etc.)..Knowledge of Downstream Processing methods as an additional focus..Automated fermentation control strategies..Willing to have a flexible schedule and occasionally work part of the weekend to expand fermentation coverage (time will be balanced during the week).', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/fermentation-scientist-sifbi-10096942?jobId=jobstreet-sg-job-10096942§ionRank=282&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Work Scope:
[{'position': 'Data Engineer (Up to S$6.5k, Leading Tech Giant, Entry Level)'}, {'company_name': 'RecruitFirst Pte. Ltd'}, {'small_section': ['Central', 'SGD\xa05,000 - SGD\xa06,500', 'Posted on 2-Nov-22']}, {'Job Scope': '', 'Requirements': '', '*To apply, send your resume to josephyap[at]recruitfirst.com.sg with reason(s) for leaving past employment, last drawn and expected salary.': '', 'All applications will be treated with strictest confidentiality. We regret that only shortlisted candidates will be notified. Thank you.': '', 'RecruitFirst Pte Ltd E.A. 13C6342': '', 'Joseph Yap Shi Hao (R1767577)': []}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '13C6342', 'EA No.': '13C6342', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '13 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGrow your company with RecruitFirst!\n\n\n\tThe business environment today is a highly competitive one, which is ever evolving. Having the right human resource business partner with a strong network of consultants and candidates has become key to the success of industry leading businesses.\n\n\n\tRecruitFirst is the fastest growing human resource consultancy in the Asia Pacific. Our mission is Helping People Find Better Jobs, and Organisations Find Better People. We live by this mission by ensuring that the best candidates and employers are connected via the rigorous recruitment processes and extensive database that we are continuously developing.\n\n\n\tBe the first to recruit with us and start realising the value-add that we are able to provide to your organisation!\n\tEnjoy the expansive array of human resource solutions and network which RecruitFirst has to offer.\n\tTogether with our affiliates, we have operations in 8 countries and 10 cities across Asia Pacific – Singapore, Kuala Lumpur, Bangkok, Hong Kong, Shanghai, Beijing, Guangzhou, Taipei, Tokyo and Seoul. This geographical network gives us the strategic advantage of acquiring the best candidates to satisfy the human resource strategies of multi-national companies. In addition, with this large network of consultants, we are also able to provide for all your human resource needs, including, temporary staffing, contract staffing, executive search, payroll services, global placement or management consultancy.\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-up-to-s%246.5k-leading-tech-giant-entry-level-10126760?jobId=jobstreet-sg-job-10126760§ionRank=283&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Job Scope
[{'position': 'Digital Business Analyst - (Data Analytics) #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What to Expect:': "You will be involved in a range of tasks including the following:.partner with the Agency’s business teams to elicit citizen/business needs through human-centric, visual methods such as service journeys and develop the appropriate business case.apply Design Thinking / Service Design methodology and tools to develop and execute the approach to derive current state gaps and challenges, and future state design and solutions.work with fellow Govtechies and the Agency's project teams to develop user stories, functional/technical specifications and acceptance criteria.adopt best practices in data governance, perform data cleansing, pre-processing and feature engineering that facilitate meaningful analysis.design interactive visualization dashboards for data exploration and provide insights to Agency’s business teams.evaluate and recommend suitable technology while aligning with GovTech’s technology directions (such as cloud-based, enterprise architecture and modernization of legacy systems, adoption of SG Tech Stack).identify and adopt the appropriate development methodology (e.g. Agile or Waterfall) in an Outsourced, Co-Sourced or In-house development environment.ensure system or product readiness for smooth deployment, adoption and operations.analyse impact of requested changes and propose improvements to continuously address changing business needs, and work with support team to understand and address technical problems (Operations & Maintenance phase).assist the CIO to identify new opportunities for the Agency’s digital transformation.", 'How to Succeed:': 'Diploma/Degree in Computer Science, Infocomm Technology, Computer or Electronics Engineering or related subject area with minimum 3 years of relevant experience. Candidates with more years of experience will be considered for more senior roles.Prior working experience in IT business analysis, application solutioning design and testing.Participated in at least one full software or product development cycle, preferably using Agile Methodology.Strong analytical, conceptualization and problem-solving skills.Good communication skills with the ability to pitch ideas and influence.A driven and motivated personality with an inquisitive mind.Ability to learn and apply.', 'Preferred Skills:': 'Business Analysis certification, e.g. Certified Business Analysis Professional (CBAP).Past development or consulting experience.Relevant experience in one or more of the following areas:.Data manipulation using scripting languages like Python or using ETL tools Visual analytics technologies like Tableau, Power BI End-to-end analytics architecture, preferably with some working knowledge of big data stack.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/digital-business-analyst-data-analytics-jobsthatmatter-10053119?jobId=jobstreet-sg-job-10053119§ionRank=284&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
What to Expect:
[{'position': 'Principal Research Scientist (MRO)'}, {'company_name': 'ST Engineering Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Background:': '', 'Job Description:': 'Lead a team of researchers to explore and develop new or improved analytical techniques through both organic and collaborative R&D efforts.Develop POCs to demonstrate viability of DA/AI technologies for our different MRO businesses.Demonstrate research efficacy by publishing conference papers, journal articles and other means of asserting IP ownership.Work with our Group Engineering Centre and lines of businesses to translate research outcomes into commercially viable products or services.', 'Requirements:': "Master's or PhD in Science/Engineering/Mathematics with at least 6 to 10 years of working experience in research & analytical work in the MRO domain.In-depth technical knowledge and experience in any of the following:.Anomaly Detection.Forecasting.Computational Fluid Dynamics.Digital Twins.Computational Intelligence.Operations Research.Deep Learning.Social & Cognitive Computing.Knowledge Representation.Agent-based Simulation.Computer Vision.Behavioural Modelling.Interpretable/Explainable AI.", 'Job Discription': 'Good experience with end-to-end analytics process – ideation/value elicitation, requirements definition, data profiling, analytical modelling, testing, validation, visualization, and solutioning.Strong problem solving skills and passion for artificial intelligence and data science research.Experienced in SQL (any flavour), Python, R, Matlab, Java, C++/ C.Experienced in preparing research papers using standard document preparation tools such as Microsoft Word or Latex.Familiar with distributed computing, modelling & simulation, optimization, and visualization tools.Excellent coordination and time management skills to handle complex projects.Willing and enthusiastic about continuous learning.'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199706274H', 'Company Size': '51 - 200 Employees', 'Industry': 'Construction / Building / Engineering'}, {'Company Overview': '\n\n\t\tAt ST Engineering, our purpose is to apply our technology and innovation to solve real-world problems and improve lives. Our dedication to excellence and our strong track record have earned us a distinctive reputation for quality and trust as a global technology, defence and engineering group. Our diverse portfolio of businesses spans the aerospace, smart city, defence and public security segments.\n\n\n\t\tWe succeed because of our ability to deliver what our partners and customers need. Together, we transform and future-proof cities to make them more mobile, more secure and more liveable for communities. With our expertise and facilities around the world, we keep aircraft flying safely and seagoing vessels operating efficiently.\n\n\t\tWe help nations protect their citizens by meeting their air, land and sea defence needs and equipping their fighting forces to perform on the battlefield. Our cybersecurity and critical systems help our customers enforce public and homeland security in an increasingly digital world. And our satellite communications equipment contribute to much of the world’s network connectivity.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-research-scientist-mro-10070768?jobId=jobstreet-sg-job-10070768§ionRank=285&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Background:
[{'position': 'Solution Architect, Data Engineering & Management - 4973'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Responsibilities': 'Recommend the enterprise data architecture, strategy, vision and processes..Manage and oversee enterprise data engineering data management solution from initiation to implementation, working with various stakeholders..Conducts analysis, design and evaluation of system architecture capabilities.Responsible for successful delivery of data engineering data management solution.Determines, describes and documents the most effective technical approach to define and resolve identified problems. Maintains data related system architecture diagrams, including all related components..Adhere to the IT management policy, governance and security guidelines to ensure the data management comply with policies and guidelines.Knowledge of Continuous Integration/Continuous Delivery environment with change/version control process and methodologies..Work with Analytics team to respond to RFQ and Tenders.', 'Requirements': 'Bachelor’s or Master’s degree in Computer Science, Information Systems or the equivalent combination of education, training, or work experience..Big-picture thinking and vision.Experienced in the implementation of enterprise data solutions/platforms and applications for at least 5 years will be advantageous..Deep experience in designing and building enterprise data integration solutions.Familiar with major data integration technologies..Ability to diagnose problems and identify solutions..Strong analytical and critical thinking skills..Knowledge of analytics tools on architecture and design as well as best practices.Knowledge of networking, computing platform, storage, database, security, middleware, network and systems management, and related infrastructure technologies and practices..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/solution-architect-data-engineering-management-4973-10140408?jobId=jobstreet-sg-job-10140408§ionRank=287&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate (Biostatistician)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description': '', 'The primary role of the Biostatistician is to provide basic and advanced statistical support for clinical studies and assist with study design, literature review, data analyses, and reports of findings. The incumbent will work under Prof Zhang Cuilin’s team, specializing on conducting research on Global Asian women’s health cohorts on cardio-metabolic disease, nutrition and reproductive health, mental health and epidemiology based in Singapore.': '', ':': 'Analysing clinical or research data via basic and advanced statistical methods, according to the PI’s research directions.', 'Analysing clinical or research data via basic and advanced statistical methods, according to the PI’s research directions': 'Ensure accuracy and completeness of data collection based on medical records and data entry.', 'Ensure accuracy and completeness of data collection based on medical records and data entry': 'Develop visualizations and written reports for research methodology, process, and findings for presentation and dissemination to key stakeholders.', 'Develop visualizations and written reports for research methodology, process, and findings for presentation and dissemination to key stakeholders': 'Maintain regular communication with other team members in PI’s group and collaborators.', 'Maintain regular communication with other team members in PI’s group and collaborators': 'Other ad-hoc analyses as required by the PI.', 'Other ad-hoc analyses as required by the PI': '', 'Qualifications': 'Master’s degree in Statistics or Biostatistics.', 'Master’s degree in Statistics or Biostatistics': 'Strong skills in statistical software (e.g., STATA, SPSS, SAS, R, etc.).', 'Strong skills in statistical software (e.g., STATA, SPSS, SAS, R, etc.)': 'At least 2 years of experience in research, preferably in clinical research environment.', 'At least 2 years of experience in research, preferably in clinical research environment': 'Meticulous, possess good interpersonal and organising skills \xa0.', 'Meticulous, possess good interpersonal and organising skills \xa0': '', 'Able to work independently as well as in a team': 'Track record of scientific publication and leading projects is advantageous.', 'Track record of scientific publication and leading projects is advantageous': 'Option for Part-time commitment.', 'Option for Part-time commitment': '', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-biostatistician-10142908?jobId=jobstreet-sg-job-10142908§ionRank=288&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Technical Specialist'}, {'company_name': 'Hays Specialist Recruitment Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Your new company': '', 'Your new role': '', "What you'll need to succeed": 'Degree in Life Sciences or Biotechnology or related fields.Minimum 1-2 years of relevant experience with proven track records.Experience in NGS/Molecular/Genomics/ DNA/RNA is advantageous.Good interpersonal and communication skills, ability to work under pressure.', "What you'll get in return": '', 'What you need to do now': []}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '200609504D', 'EA No.': '07C3924', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Miscellaneous allowance, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'WORKING FOR YOUR TOMORROW\xa0At Hays we invest in lifelong partnerships that empower people and businesses to succeed. With over 50 years’ success under our belts and a workforce of 10,000+ people across 33 countries, we’ve evolved to put our customers at the heart of everything we do.\xa0So much more than a specialist recruitment business, what really sets us apart is our knowledge through scale, deep understanding and our ability to meaningfully innovate for our customers. By providing advice, insights and expertise on issues you face today in the fast-paced world of work, we help you make the right decisions for tomorrow.\xa0Offering an unrivalled suite of recruitment and workplace solutions, whether you’re looking for what’s next in your career, or have gap to fill, we’ll help get you get where you want to go.\xa0\xa0You can rely on us to deliver today and help you plan for tomorrow.\xa0In Singapore, our recruiting experts are available to you in the following specialisms:Accountancy & FinanceBanking & Financial ServicesConstructionEngineeringHuman ResourcesInsuranceLegalLife SciencesMarketing & DigitalOffice ProfessionalsProcurementPropertySalesSupply ChainTechnologyTo connect with a recruiting expert at Hays, visit us at www.hays.com.sg or follow Hays on LinkedIn - The #1 Recruiter on LinkedIn globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/technical-specialist-10143255?jobId=jobstreet-sg-job-10143255§ionRank=289&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Your new company
[{'position': 'Research Assistant, - (Computer Science and Data Science), - R00006992'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities': 'The Research Assistant(RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning. The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data. This includes:.Conduct literature study.Design and implement new algorithms and machine learning models.Collect datasets and conduct experiments on the datasets.Write research papers and present the results at conferences.', 'Job Requirements': 'Bachelor degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal data.Programming skills, and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-and-data-science-r00006992-10054538?jobId=jobstreet-sg-job-10054538§ionRank=290&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Lead Software Engineer (Big Data Platform) (220000RB)'}, {'company_name': 'The Great Eastern Life Assurance Co Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Job Purpose': '', 'The Job': '', 'As the Big Data Lead, your will provide leadership in the following:': 'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities..Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the development activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..', 'Our Requirements': 'Experience in Architecture, design, implementation, and deployment of high volume, highly available, cloud-based/hybrid systems would be a plus..Hands on experience in Java/Scala/Python or any programming language software development skills..Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, SQL, ETL tools, data masking technology, Informatica..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics..Experience with Agile software development methodologies and Test-Driven Design..Proven ability to evaluate and adopt new technology..A proactive and eager nature for tackling new challenge..High level of integrity, takes accountability of work and good attitude over teamwork..Takes initiative to improve current state of things and adaptable to embrace new changes..', 'About Great Eastern': '', 'To all recruitment agencies:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '190800011G', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Insurance'}, {'Company Overview': '\n\tFounded in 1908, Great Eastern is a market leader and a well-established trusted brand in Singapore and Malaysia. With S$82.5 billion in assets and over 4 million policyholders, the Group also operates in Indonesia and Brunei and has a presence in China as well as a representative office in Myanmar.\n\n\tThe Great Eastern Life Assurance Company Limited and Great Eastern General Limited have been assigned the financial strength and counterparty credit ratings of "AA-" by Standard and Poor\'s since 2010, one of the highest among Asian life insurance companies.\n\n\tWe are a LIFE company and our purpose is to empower generations to live healthier and better so that they can live life to the fullest. Be it celebrating life’s simple moments or commemorating life’s major milestones, every day, in many ways, we inspire those around us to live great and celebrate life.\n\n\tPlease note that our career opportunities are only posted on our Career Website (http://grp.gelife.co/findacareer) and on our authorised job platforms which are specifically LinkedIn, JobStreet and eFinancialCareers. We do not initiate any unsolicited calls and all official emails from Great Eastern will be sent from email addresses ending with “@greateasternlife.com”. Should you receive any communications outside from these channels listed, please do not provide any personal information and do reach out to us at [email\xa0protected] or at 6248 2990 for us to assist you and confirm the legitimacy of the content.'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-software-engineer-big-data-platform-220000rb-10103885?jobId=jobstreet-sg-job-10103885§ionRank=291&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Job Purpose
[{'position': 'Lead Data Analyst (Assistant Manager), Emergency Department (Contract)'}, {'company_name': 'Ng Teng Fong General Hospital'}, {'small_section': ['Jurong East', 'Posted on 5-Nov-22']}, {'Responsibilities': "Support the development of a Health Index AI tool in Electronic Medical Records, including validating and assessing the feasibility of the tool in clinical settings..Work with Clinical Leads to evaluate clinical programmes in order to identify areas for improvement, including the identification of predictive factors and trends, as well as evaluation of clinical outcomes through risk adjustment models..Lead programme evaluation efforts, including preparing the study design & conducting cost effectiveness analysis where required..Conduct literature reviews to support uptake of evidence-based practice..Conduct data analysis and evaluation using statistical and quantitative data analysis software..Submit and present reports, findings and updates at management level platforms and committees..Collaborate with multidisciplinary team to improve clinical outcomes and patients' satisfaction..", 'Requirements': "Good Postgraduate/ Bachelor's Degree in Statistics, Business Analytics, Health Economics, Public Health or equivalent..At least 2 to 3 years relevant working experience..Excellent communication and interpersonal skills, able to work with a diverse group of stakeholders..Excellent project management and organisational skills, able to handle multiple tasks and prioritise projects to meet deadlines..Strong mixed-methods skills (Quantitative & Qualitative) and experience in data analysis and synthesis..Proficient in analytics tools such as Tableau and R..Positive and self-motivated team player with a passion for data analytics..", 'About us:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Others, Others', 'Registration No.': '200910555Z', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '27 days', 'Industry': 'Healthcare / Medical'}, {'Company Overview': '\n\tJurongHealth Campus is a part of the National University Health System (NUHS) group, serving the community in the western region.\n\n\tJurongHealth Campus comprises the integrated 700-bed Ng Teng Fong General Hospital (NTFGH) and 400-bed Jurong Community Hospital (JCH) which were designed and built together from the ground up as an integrated development to complement each other for better patient care, greater efficiency and convenience. NTFGH and JCH were envisioned to transform the way healthcare is provided, and together with the National University Hospital, National University Polyclinics, Jurong Medical Centre, family clinics and community partners, to better integrate healthcare services and care processes for the community in the west.\n\nBe part of our exciting future. Transform the future of healthcare with us!'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-analyst-assistant-manager-emergency-department-contract-10107062?jobId=jobstreet-sg-job-10107062§ionRank=292&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Warehouse Analyst'}, {'company_name': 'Xilinx Asia Pacific Pte. Ltd.'}, {'small_section': ['Changi', 'Posted on 1-Nov-22']}, {'DATA WAREHOUSE ANALYST': '', 'THE ROLE:': '', 'THE PERSON:': '', 'KEY RESPONSIBILITIES:': 'Primary role in developing and coding software application features using best practices..Develop technical documentation and communication material as needed..Help to shape thinking around robust, scalable, technical solutions..Demonstrate creative problem solving and analytical skills..Experiment with emerging technologies to develop future solutions..Ability to drive change and influence decisions on solutions..Debug software and provide ongoing production support..Work both independently and as part of a strong, collaborative, and global team.Able to proactively support team culture that fosters knowledge sharing, excellence, and collaboration..', 'PREFERRED EXPERIENCE:': 'Exposure in any of these areas – Business Intelligence, Blockchain, Machine Learning / Artificial Intelligence. Specifically with aptitude and versatility to skill up in new frontiers related to Internet of Things, Smart Cities, etc.Comfortable developing enterprise-quality software in a high-level language such as Python,Java,\xa0C#, .Net, SQL, or similar programming languages.An intuitive problem solver who can see the big picture, who recognizes that the landscape is constantly changing, and who realize it is his/her responsibility to keep up..Good Teamwork with skills relating to Agile, Scrum, HW-SW co-design..', 'ACADEMIC CREDENTIALS:': 'Bachelor’s degree in Computer Science, Computer Engineering or related field strongly preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200312557M', 'Company Size': '501 - 1000 Employees', 'Industry': 'Semiconductor/Wafer Fabrication', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\t\tXilinx is now part of Advanced Micro Devices (AMD).\xa0\n\t\tAt AMD, we push the boundaries of what is possible.\xa0 We believe in changing the world for the better by driving innovation in high-performance computing, graphics, and visualization technologies – building blocks for gaming, immersive platforms, and the data center.\n\t\tDeveloping great technology takes more than talent: it takes amazing people who understand collaboration, respect, and who will go the “extra mile” to achieve unthinkable results.\xa0 It takes people who have the passion and desire to disrupt the status quo, push boundaries, deliver innovation, and change the world.\xa0\xa0 If you have this type of passion, we invite you to take a look at the opportunities available to come join our team.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-warehouse-analyst-10122812?jobId=jobstreet-sg-job-10122812§ionRank=293&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
DATA WAREHOUSE ANALYST
[{'position': 'Research Fellow (Artificial Intelligence) T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted 10 hours ago']}, {'Job Description:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': 'Independent and self-motivated researcher.Good paper reading and writing skills.Excellent publication record, including top-tier journals and conference papers in the related fields..Strong in Mathematics.', 'Coding Skills:': 'Familiar with any of the major deep learning libraries, including Pytorch, TensorFlow, MatConNet.Familiar with the image processing and optimization toolboxes in Matlab.Comfortable with Linux environment, including using vim, git, tmux, bash, etc.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-t-10096597?jobId=jobstreet-sg-job-10096597§ionRank=296&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Sales Analyst (6 months Contract)'}, {'company_name': 'DHL Express (Singapore) Pte. Ltd'}, {'small_section': ['North-East', 'Posted on 7-Nov-22']}, {'Job Description': 'Interpret data, analyze results using statistical techniques and provide ongoing reports.Identify, analyze, and interpret trends or patterns in complex data sets.Use relevant external data and information in the development of market intelligence materials.Analyze the economy, DHL’s key markets, and Air Express/Air Cargo market analysis.Develop work instructions / SOP in various work streams within CPR to ensure clear documentation of processes for business continuity.Organise training courses and training materials, with the guidance of Sales Training Manager, within Commercial team.', 'Job Requirements': 'Degree in Business / Accountancy / Finance / Computer Science / Statistics / Data Analytics.At least 2-3 years of experience in analysis related roles.Excellent software skills (MS Excel, MS Access, etc.).Experience in developing reports and implementation plans in a large and dynamic sales environment.Meticulous with strong attention to details, demonstrate good numerate skills and problem-solving abilities.Fast learner, adaptable, and able to manage varying priorities in a dynamic environment with tight deadline.Experience in project management, working closely with stakeholders from other functions to meet project timeline.Strong communicator with creative mindset.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Sales/Marketing, Sales - Corporate', 'Registration No.': '197700524Z', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '26 days', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Medical, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Tai Seng'}, {'Company Overview': '\nDHL – The Logistics company for the world.\nDHL is the global market leader in the logistics industry and “The Logistics company for the world”. DHL commits its expertise in international express, air and ocean freight, road and rail transportation, contract logistics and international mail services to its customers. A global network composed of more than 220 countries and territories and about 285,000 employees worldwide offers customers superior service quality and local knowledge to satisfy their supply chain requirements. DHL accepts its social responsibility by supporting environmental protection, disaster management and education.\nDHL is part of Deutsche Post DHL. The Group generated revenue of more than 55 billion Euros in 2012.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/sales-analyst-6-months-contract-10140737?jobId=jobstreet-sg-job-10140737§ionRank=297&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Assistant, [Computer Science and Data Science] [R00006992] #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Key Responsibilities': 'The Research Assistant(RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning. The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data. This includes:.Conduct literature study.Design and implement new algorithms and machine learning models.Collect datasets and conduct experiments on the datasets.Write research papers and present the results at conferences.', 'Job Requirements': 'Bachelor degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal data.Programming skills, and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-%5Bcomputer-science-and-data-science%5D-%5Br00006992%5D-urgent-10054985?jobId=jobstreet-sg-job-10054985§ionRank=299&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Digital Business Analyst (Data Analytics) #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What to Expect:': "You will be involved in a range of tasks including the following:.partner with the Agency’s business teams to elicit citizen/business needs through human-centric, visual methods such as service journeys and develop the appropriate business case.apply Design Thinking / Service Design methodology and tools to develop and execute the approach to derive current state gaps and challenges, and future state design and solutions.work with fellow Govtechies and the Agency's project teams to develop user stories, functional/technical specifications and acceptance criteria.adopt best practices in data governance, perform data cleansing, pre-processing and feature engineering that facilitate meaningful analysis.design interactive visualization dashboards for data exploration and provide insights to Agency’s business teams.evaluate and recommend suitable technology while aligning with GovTech’s technology directions (such as cloud-based, enterprise architecture and modernization of legacy systems, adoption of SG Tech Stack).identify and adopt the appropriate development methodology (e.g. Agile or Waterfall) in an Outsourced, Co-Sourced or In-house development environment.ensure system or product readiness for smooth deployment, adoption and operations.analyze impact of requested changes and propose improvements to continuously address changing business needs, and work with support team to understand and address technical problems (Operations & Maintenance phase).assist the CIO to identify new opportunities for the Agency’s digital transformation.", 'How to Succeed:': 'Diploma/Degree in Computer Science, Infocomm Technology, Computer or Electronics Engineering or related subject area with minimum 3 years of relevant experience. Candidates with more years of experience will be considered for more senior roles.Prior working experience in IT business analysis, application solutioning design and testing.Participated in at least one full software or product development cycle, preferably using Agile Methodology.Strong analytical, conceptualization and problem-solving skills.Good communication skills with the ability to pitch ideas and influence.A driven and motivated personality with an inquisitive mind.Ability to learn and apply.', 'Preferred Skills:': 'Business Analysis certification, e.g. Certified Business Analysis Professional (CBAP).Past development or consulting experience.Relevant experience in one or more of the following areas:.Data manipulation using scripting languages like Python or using ETL tools Visual analytics technologies like Tableau, Power BI End-to-end analytics architecture, preferably with some working knowledge of big data stack.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/digital-business-analyst-data-analytics-jobsthatmatter-10052847?jobId=jobstreet-sg-job-10052847§ionRank=300&token=0~8d836769-e223-4c70-abf3-812b16179bdd&fr=SRP%20Job%20Listing'}]
What to Expect:
[{'position': 'Research Associate (Computer Science and Data Science) (R00005334)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key Responsibilities:\xa0': '', 'Job Requirements:\xa0': 'Master degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal and graph data.Programming skills and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-and-data-science-r00005334-10046579?jobId=jobstreet-sg-job-10046579§ionRank=302&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Research Scientist - (Food Toxicology) - R00009813'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Support FRESH projects focused on food toxicology. Particular interest is in candidates with experience in the application of new approach methods to the benefit-risk assessment of novel food ingredients and/or interest in the development of in vitro toxicological methods..Act as a technical specialist maintaining laboratory facilities and supporting the FRESH Director and PIs in developing new approach methods to assess novel food safety..Support collaborative projects with public sector (including SFA) and local/ international food companies, and help secure funding for FRESH research activities (ideally 2-3 projects per year dependent on size and competitive grant funding)..Help drive initiatives and innovative projects/ideas in the area of food toxicology.Contribute research and input to new project and grant proposals.Assist in FRESH laboratory administration and general operation tasks.', 'Job Requirements:': 'Minimum Bachelor’s degree in relevant discipline such as food toxicology or in vitro toxicology, and have at least 5 years’ experience in an academic, governmental or industrial research setting..Industry experience in toxicology testing of food and consumer chemicals.Direct experience in the development and application of in vitro toxicity tests to ingredient safety assessment.Direct experience working with 3D tissue models and cell culture..Experience working with government and/or industry to validate and harmonise toxicological assay methods is an asset. Familiarity and/or experience working with the SFA is a plus..Strong communication and interpersonal skills to persuade and present to different stakeholders is a bonus.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Food Tech/Nutritionist', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-food-toxicology-r00009813-10135235?jobId=jobstreet-sg-job-10135235§ionRank=303&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Manager, IS&T, Business Analytics & Integration (8622)'}, {'company_name': 'Mapletree Investments Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'The Role': '', 'Job Responsibilities': 'Manage, design and develop large scale, high-volume, and high-performance data structures with large sets of data from different sources, consolidating data in Azure Data Warehouse and Data Lake..Lead analytics project implementation, managing internal/external resources, cost and timeline; providing timely updates to steering committee and proposing resolution or workarounds on any technical/process challenges met..Manage the data integration platform to ensure that all application to application integration are managed via \xa0this enterprise integration platform (i.e. Informatica cloud).Work with respective application owners to ensure that all application to application integration follows a well governed process..Work with business teams to identify process changes required as part of implementing analytics projects..Bring technical expertise in the Big Data (IOT hub/Kafka Spark, Python, hive).Experience in Azure Synapse analytics is a must; any prior experience in SAP BW is advantageous.\xa0.Build data pipelines that are scalable, repeatable, and secure, and can serve multiple purposes. Knowledge of tools like Informatica, Azure Data Factory will be ideal..Oversee strategy and implementation engagements supporting delivery of standardized BI data products, semantic models, and enterprise reporting marts and reports to support better decision-making.Manage the technical team to gather and process raw data at scale (including writing scripts, write SQL queries, etc.) to build features that will be used in modeling.Manages all technical implementations, to ensure that all stages of design and development caters for successful implementation of complex, secure and performant data solutions and models, including design, analysis, coding, testing, and integration of structured/unstructured data..Manages project implementation ensuring that project is delivered on time and within budget; any changes needs to be managed via change management control.Builds and manages relationships throughout the organization.Reviews and evaluates designs and project activities for compliance with architecture, security and quality guidelines and standards; provides tangible feedback to improve product quality and mitigate failure risk..Provides domain-specific expertise and overall data systems leadership and perspective to cross-organization projects, programs, and activities..Drives innovation and integration of new technologies into projects and activities in the big data space..Collaborates and communicates with project team regarding project progress and issue resolution..Represents the data engineering team for all phases of larger and more-complex development projects..Provides guidance and mentoring to less experienced staff members..', '.': 'Manages existing SAP BW and any future data warehouse and data lake built in the Azure Synpase workspace..Manages existing SAP BW technical team and built up the in-house technical team required to implement the data warehouse and data lake.\xa0.Manages the enterprise wide integration platform to ensure that all integration processes runs as expected; any exception issues or errors will be timely reported to application owner..', 'Job Requirements': 'Bachelors in Computer Science, Information Systems, or relevant studies.\xa0.8-10 years of hands-on experience developing high availability, scalable, medium to large scale ETL and Data Warehouse and Data Lake systems..Cloud Technologies: Microservices/API, Azure Synapse, , ADLS, Informatica, Data catalog, Informatica governance, \xa0Azure functions, Azure batch, IOT hub, Kafka.Efficient in a Scripting language such as Powershell, python, SQL will be an advantage when hands on is needed to guide junior staff.Hands on experience with integration of data from multiple data sources, and processing large amounts of structured and unstructured data.Proficient understanding of distributed computing principles, Azure Architecture and querying tools.Knowledge of various ETL techniques and frameworks.Ability to analyze a problem, develop and engineer a full solution from concept, to deployment and to production.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200010560E', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Property / Real Estate', 'Benefits & Others': 'Dental, Education support, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\n\t\t\tHeadquartered in Singapore, Mapletree is a global real estate development, investment, capital and property management company committed to sustainability. Its strategic focus is to invest in markets and real estate sectors with good growth potential. By combining its key strengths, the Group has established a track record of award-winning projects, and delivers consistent and high returns across real estate asset classes.\n\n\t\t\tThe Group manages four Singapore-listed real estate investment trusts (“REITs”) and seven private equity real estate funds, which hold a diverse portfolio of assets in Asia Pacific, Europe, the United Kingdom (“UK”) and the United States (“US”). As at 31 March 2022, Mapletree owns and manages S$78.7 billion of office, retail, logistics, industrial, data centre, residential and lodging properties.\n\n\t\t\tThe Group’s assets are located across 13 markets globally, namely Singapore, Australia, Canada, China, Europe, Hong Kong SAR, India, Japan, Malaysia, South Korea, the UK, the US and Vietnam. To support its global operations, Mapletree has established an extensive network of offices in these countries.\n\n\t\t\tFor more information, please visit www.mapletree.com.sg.\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-manager-is-t-business-analytics-integration-8622-10113456?jobId=jobstreet-sg-job-10113456§ionRank=304&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
The Role
[{'position': 'Analyst (CX)'}, {'company_name': 'Marina Bay Sands Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'JOB SCOPE': '', 'Background': '', 'Job Responsibilities': 'Create performance management reports/visualizations and provide regular analysis on operational performance - Customer experience, Service Quality, Net Promoter score & Voice of customer.Provide insightful analysis from operational data to guide decision making and provide proactive solutions to support various business units.Understand business processes and identify data collection strategies for structured and unstructured data - ensuring reliability and accuracy of key performance metrics.Actively participate in collaborative projects with stakeholders focused on achieving a high level of productivity and excellent customer satisfaction at scale.Understand customer behaviors through CX metrics such as NPS, social media reviews, written comments, etc. to perform in-depth analysis for internal stakeholders..Build and automate performance reports and business intelligence dashboards for continuous performance monitoring and deliver faster insights to operations.Data and text analytics using Natural language processing in order to identify guest sentiments..In line with all the above, this role is required to perform monthly internal service quality audits and mystery shops, to walk through the customer experience.Provide support from time to time on systems managed by OE&A team such as Qualtrics and QTX (service audit tool).Perform and support any ad-hoc data requests and responsibilities of the CX Manager..', 'JOB REQUIREMENTS': 'Degree in Finance, Accounting, Business, Computer Science, Hospitality or similar with 2 or more years of analyzing business data, and management reporting.Proficiency in SQL, Power BI or similar visualization software and MS Excel (advanced) is expected.Knowledge of statistical analysis tools like R or Python is preferred but not compulsory..Prior experience showing strong stakeholder engagement and vendor management skills is a plus.Must share our Company values of Passion, Creativity, Teamwork, Respect and Integrity..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200507292R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '1 day', 'Industry': 'Hotel / Hospitality'}, {'Company Overview': '\n\n\t\tMarina Bay Sands® is Asia’s leading destination for business, leisure and entertainment delivering once-in-a-lifetime experiences. The landmark building is situated in the heart of Singapore’s Central Business District and transforms Singapore’s skyline and the country’s tourism landscape.\n\n\n\t\tThe destination offers a luxury hotel, state-of-the art convention and exhibition facilities, theaters, world-class entertainment and the best shopping and dining in the region. The three hotel towers are crowned by the Sands SkyPark® on the 57th story.\xa0\n\n\nProduct & Services\n\n\n\t\tConveniently located in the heart of the Central Business District and 20 minutes from Changi Airport.\n\n\n\t\t• Hotel: The Marina Bay Sands hotel has three 55-story towers with 2,561 luxury rooms and suites. The three towers are capped by the Sands SkyPark, which offers 360-degree views of Singapore’s skyline. It is home to restaurants, lush gardens, an infinity edged swimming pool and the world’s largest public cantilever housing an observation deck.\n\n\n\t\t• Expo and Conventions: The Sands Expo and Convention Center has 1.3 million square feet of flexible convention and exhibition space. It can host over 45,000 delegates, 2,000 exhibition booths and 250 meeting rooms. It features Southeast Asia’s biggest ballroom, which can accommodate 6,600 people for a banquet, and up to 11,000 for an auditorium-style lecture.\n\n\n\t\t• Shopping: The Shoppes at Marina Bay Sands has 800,000 square feet of retail and dining space. Luxury retailers include Bally, Cartier, CHANEL, Ferragamo, Franck Muller, Gucci, Hermès, Hublot, Hugo Boss, Louis Vuitton, Miu Miu, Omega, Patek Philippe, Prada, Tiffany & Co. and Yves Saint Laurent. New brands include Anne Fontaine, Henry Cotton’s, Leviev, Marisfrolg, Moiselle, Rabeanco, Stefano Ricci, and Wolford.\n\n\n\t\t• Restaurants: Dining at Marina Bay Sands is a gourmet experience with over 50 dining choices. These include celebrity-chef restaurants helmed by Mario Batali, (New York), Daniel Boulud (New York), Wolfgang Puck (Los Angeles), Guy Savoy (Paris), Tetsuya Wakuda (Sydney) and Justin Quek (Singapore).\xa0Marina Bay Sands features signature restaurants, modern bistros and a premium food court.\n\n\n\t\t• Entertainment: Marina Bay Sands energizes the entertainment and nightlife scene in Singapore with nightclubs, world-class entertainment, a museum and a casino.\xa0The museum, which has a lotus-inspired design, will feature blockbuster exhibitions from around the world.\xa0Two state-of-the-art theaters will open with a total of about 4,000 seats. The Broadway hit The Lion King will debut in Sands Theater, with Le Theater presenting shorter-run shows such as concerts, award ceremonies and gala events.\xa0The outdoor event plaza along the promenade next to Marina Bay will host audiences for watching events on the bay or on the plaza.\xa0\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/analyst-cx-10075216?jobId=jobstreet-sg-job-10075216§ionRank=305&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
JOB SCOPE
[{'position': 'Research Associate, (Visual Analytics), - (R00009667)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description:': 'Research into Visual Search and Video Analytics related work, including object detection, person re-identification (reID) & tracking, and search & retrieval.Creation of large-scale datasets for research and algorithm evaluation.Be part of a research team in the execution of funded research projects.Assist in drafting of proposals for research grants in the above areas.', 'Job Requirements:': 'Masters degree in Signal Processing, Engineering, Computer Science, or related field.Research experience in Computer Vision, Pattern Recognition, Deep Learning, and working with large-scale datasets.Experience with object detection & segmentation, person re-identification, and domain adaptation & generalisation is essential.Experience with scripting with game engines (eg. Grand Theft Auto, Unity) and the creation of synthetic datasets would be highly advantageous.Proficiency in software such as PyTorch, TensorFlow, OpenCV, and programming languages such as C/C++ and Python, as well as Linux (eg. Ubuntu) is essential.Knowledge of GPU computing, CUDA programming, optimization (eg. with TensorRT), and industry experience in engineering software development would be an advantage.Good inter-personal skills, with the ability to work with people from varied backgrounds.Proficient in English.\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-visual-analytics-r00009667-10141418?jobId=jobstreet-sg-job-10141418§ionRank=306&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Project Officer (Data Analytics and Software Development) - [R00004052]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Job Responsibilities': 'Undertake software development for machine learning based parameter estimation.Develop a simulation test-bed.Help other staff and the Principal Investigator work on demos and final report.', 'Job Requirements': 'Bachelor degree in either electrical engineering, software engineering, or computer science, specialized in data analytics and software development.Expert knowledge on software development and machine learning based data analysis techniques.Good programming skills, e.g., matlab, python or C/C++/Java.Any past experience in large-scale traffic systems will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-data-analytics-and-software-development-%5Br00004052%5D-10053337?jobId=jobstreet-sg-job-10053337§ionRank=307&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow (Machine Learning and Human Machine Interaction) - [R00008644] #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science & Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on image/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-machine-interaction-%5Br00008644%5D-urgent-10138967?jobId=jobstreet-sg-job-10138967§ionRank=309&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Molecular Scientist'}, {'company_name': 'Medpace Singapore Pte. Ltd.'}, {'small_section': ['West', 'Posted on 29-Oct-22']}, {'Responsibilities': 'Monitor laboratory operations in order to verify that accurate, precise, and reliable data are being generated for clinical trials;.Interact with corporate leadership, scientific liaison, project management, administration, government agencies, accrediting agencies, and potential sponsors/clients to gain information and knowledge required to make appropriate business and/or operational recommendations and decisions;.Participate in general capabilities and bid defense meetings with sponsor;.Ability to troubleshoot technical issues related to quantitative PCR and Sanger sequencing. Ability to understand Next Generation Sequencing (NGS) workflows and procedures; be able to communicate with Bioinformatics data analysis scientists on NGS quality issues..Ability to meet aggressive timelines (e.g., validation, database lock etc.);.Routine molecular data analysis, review, and approval of clinical reports with aggressive timelines.Develop and conduct training within molecular genomics;.Maintaining instrument compliance with 21 CFR Part 11;.Review and write Validation Plans/Reports/SOPs and;.', 'Qualifications': 'PhD in Laboratory Medicine, Molecular Biology, Biochemistry/Biotechnology, Clinical Pathology or other similar area;.2-3 years of experience in molecular assay design, assay development in a clinical diagnostics environment or a translational research laboratory..Experience with analysis of qPCR data is required. Analysis of Sanger sequencing and NGS data is very desirable;.Excellent record keeping skills are required;.Analytical Method Validation experience is preferred;.Previous experience in a central lab environment is preferred;.Experience with human samples is preferred..Excellent interpersonal skills to effectively interact with and influence stakeholders, both internally and externally, are required..'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200617614R', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '25 days', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts), Others', 'Specific Location': 'Science Park 1'}, {'Company Overview': 'Medpace is a global, full-service clinical research organization with expertise and therapeutic specialization in multiple areas. Medpace has quickly become a global leader in providing pharmaceutical and biotechnology companies with customized solutions in the drug development process.\n\nAt Medpace, our experienced and accomplished employees give us a competitive advantage across the range of clinical research services we provide. Their commitment to quality has made us a global leader in research-based drug development and they are our most important asset. We invite you to join Medpace – a firmly established and continually growing company with a focus on quality, not quantity. You will also enjoy a stimulating work environment with exciting opportunities to work in international teams and develop your career.'}, {'url': 'http://www.jobstreet.com.sg/en/job/molecular-scientist-10066680?jobId=jobstreet-sg-job-10066680§ionRank=310&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Bioinformatician - (Structural Biology)'}, {'company_name': 'DSO National Laboratories'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Bioinformatician (Structural Biology)': '', 'In this role, you will:': 'Be part of a team to develop solutions to detect and characterise pathogens using genomics and computational biology.Perform in silico protein structure prediction from pathogens of interest, predict functions, identify targets of therapeutic potential and design therapeutic solutions.Identify, evaluate and recommend appropriate computational software and hardware requirements to enable timely data analysis.Develop and validate analytic pipelines for protein structure protection and therapeutic target identification.Set-up, update, maintain and ensure smooth running of data analysis systems, including databases.Generate reports and presentation materials to update research findings.', 'Requirements:': "PhD / Master's / Bachelor's Degree in Bioinformatics, Computational Biology or Information Technology, preferably with 1 to 3 years of relevant experience.Familiarity with Linux operating systems, bash scripting and installing programs and packages.Knowledge and experience with analysis of NGS data.Experience in protein structure modelling and small molecule docking.Demonstrated experience with Python, R, or similar programming languages.Working knowledge of common biological data analysis tools and databases, including that for protein structure modelling and molecular dynamics.Knowledge and experience with biological database creation and management.Good communication and writing skills.Able to work both independently and as a team.Motivated individual with keen interest in genomics and willingness to self-learn."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '199701777M', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '16 days', 'Industry': 'R&D'}, {'Company Overview': '\n\tDefence research and development (R&D) is at the heart of what we do at DSO. As Singapore’s largest national defence R&D organisation, DSO is entrusted with the critical mission of developing technological surprises to enhance Singapore’s defence capabilities. From research to systems development, our defence engineers and scientists push the boundaries to develop game changing technologies and solutions that are not available in the market, or not available to Singapore. DSO also invest and explore emerging technologies to ensure the nation’s defence and national security capabilities are future ready. With more than 50 research areas across the domains of air, land, sea, space and cyberspace, DSO shapes the future of defence with our imagination and dare-to-do spirit in the relentless pursuit of the next big idea.'}, {'url': 'http://www.jobstreet.com.sg/en/job/bioinformatician-structural-biology-10124169?jobId=jobstreet-sg-job-10124169§ionRank=312&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Bioinformatician (Structural Biology)
[{'position': 'Research Associate'}, {'company_name': 'Kemin Industries (Asia) Pte Ltd'}, {'small_section': ['Woodlands', 'SGD\xa03,000 - SGD\xa03,200', 'Posted on 4-Nov-22']}, {'Research Associate': '', 'Skills': 'Knowledge in microbiological and aseptic techniques, analyses and safety.Knowledge and skills in analytical chemistry (e.g., HPLC, GC, LC-MSMS) is preferred.Knowledge and skills in product formulation.Intermediate scientific proficiency in laboratory functions. Possesses the ability to identify issues with laboratory protocols, procedures, and experimental plans.Proficiency and clarity in oral and written communications.Independent and creative scientific thinking.Solid documentation and organizational ability.', 'Tasks:': 'Carry out literature survey and patent search to understand developments related to research projects..Assist the Research Manager in coordinating with the Operation and QC departments for process scale-up and analytical support..Develop new products, processes and new analytical methodologies and validate them..Interact with peer groups for project(s) coordination and participates in product launch..Analyse and interpret research data, report results as research papers and scientific reports..Maintain all documentation as per company SOP..Maintain lab inventory and equipment..', 'Academic Qualification:': '', 'Experience:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '198500117Z', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '20 days', 'Industry': 'Manufacturing / Production', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties)', 'Specific Location': 'Senoko'}, {'Company Overview': "Kemin Industries, Inc. was founded in 1961 by R.W. Nelson. It is a privately held corporation which manufactures specialty products for a wide variety of nutritional applications. The company is headquartered in Des Moines, Iowa (USA). Kemin Industries Asia Pte Limited is part of a global Kemin organisation.\nIn 1988, the Kemin organisation was one of the first companies to actually manufacture specialty ingredients for animal feeds in Asia. Kemin Asia's local presence in each market has always been an enormous source of strength and flexibility. In 1992 a new plant was built in Singapore to satisfy the continuously growing demand for Kemin products across the Asian continent."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-10083659?jobId=jobstreet-sg-job-10083659§ionRank=314&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Research Associate
[{'position': 'Software Engineer [MSSQL, PowerBI, Power Automate, Dynamics365 | Permanent]'}, {'company_name': 'Good Job Creations (Singapore) Pte Ltd'}, {'small_section': ['Central', 'Posted on 7-Nov-22']}, {'Ref No.: ': '', '2208-62973': '', 'About the Role': '', 'Software Engineer ': '', 'Big Data Exploratory and Analysis': '', 'Job Description': 'Build team competencies in project management and technical know-how..Provide technical advisory support to ICT team members in the region as and when needed..Ensure project technical issues are resolved..Communicate with companies and external parties (eg, vendors) on projects as and when needed..Identify technical risks and develop contingency plans as soon as possible..Analyse existing operations and propose improvement with digital tool..Take initiative to promote and encourage employees to actively utilize digital tool to improve productivity..Build and maintain in-house developed applications and integration..Write activity progress reports and deliver presentations to the relevant stakeholders..Keep up-to-date with industry trends and developments..Conduct training sessions and meetings to develop technical capability..Responsible for any other ad hoc duties assigned..', 'Requirements': 'Diploma/ Bachelor in Information Technology/ Computer Science or relevant field..At least 5 years of relevant working experience as a Software Engineer in relevant field..', 'At least 5 years of relevant working experience as a Software Engineer in relevant field.': 'Possessed a high coding standards, able to understand test coverage, best practices, clean code and test pyramid concept..\xa0Experience in big data exploratory and analysis (eg. MS SQL, PowerBI).Experience in using ERP, preferably Ms Dynamics 365..Experience in low code platform (eg, Zoho Creator) is a plus..Experience in using RPA (eg. Power Automate) is a plus..Excellent analytical, problem solving, and time management skills..A desire to thrive in a hard-working, fast-paced and collaborative team..Great communicator, negotiator and team-player..', 'About the Company': '', 'Interest & Apply': '', 'cv_janice(at)goodjobcreations.com.sg': []}, {'Career Level': 'Senior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200618166E', 'EA No.': '07C5771', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '7 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGood Job Creations Singapore (License Number: 07C5771) provides total HR solutions with core values of customer focus, teamwork, professionalism and contribution to the society and our clients. Our vision is to create opportunities for Asian talents in Singapore and across the region. For more information, visit us at www.goodjobcreations.com.sg\n\n\tGOOD JOB CREATIONS (SINGAPORE) PTE. LTD.\n\n\tEA License No.: 07C5771\n\tKimiya Shibazaki\n\tRegistration NO.: \u200bR1325719\n\n\tWe agree to protect all personal information and contact details sent to us via your resume according to the Personal Data Protection Act (PDPA) with effect from 2nd July 2014.\n\tAll information collected is strictly for the purpose of processing your job application and internal administrative use.\xa0\xa0\n\tBy sending your resume to us, you acknowledge your consent to the collection and use of your personal data for the above purposes only.\xa0\xa0\xa0\xa0\n\n\tOur Company’s Privacy Policy:\n\thttp://www.goodjobcreations.com.sg/en/privacy/\n\n\tDo not hesitate to contact our officer if you have further queries with regards to the Personal Data Protection Act.\n\tData Protection Officer: Mr. Kimiya Shibazaki\n\tContact: +65 6258 8051\n\n\t[*PDPA clause]\n\n\tYour data may be used by our affiliated companies under WILL Group Asia Pacific (https://willgroup.co.jp/en/index.html) for the sole purpose of recruitment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/software-engineer-%5Bmssql-powerbi-power-automate-dynamics365-%7C-permanent%5D-10141234?jobId=jobstreet-sg-job-10141234§ionRank=316&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Ref No.:
[{'position': 'Big Data Engineer (Data Warehouse) (Up $6500, Central, Gaming industry!)'}, {'company_name': 'RecruitFirst Pte. Ltd'}, {'small_section': ['Central', 'Posted on 2-Nov-22']}, {'Duties': '', 'Requirements': '', 'To apply, please click apply now or send your CV to aliciasl.lim[at]recruitfirst.co or WA 82280387': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '13C6342', 'EA No.': '13C6342', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '13 days', 'Industry': 'Human Resources Management / Consulting', 'Specific Location': 'Raffles Place'}, {'Company Overview': '\n\tGrow your company with RecruitFirst!\n\n\n\tThe business environment today is a highly competitive one, which is ever evolving. Having the right human resource business partner with a strong network of consultants and candidates has become key to the success of industry leading businesses.\n\n\n\tRecruitFirst is the fastest growing human resource consultancy in the Asia Pacific. Our mission is Helping People Find Better Jobs, and Organisations Find Better People. We live by this mission by ensuring that the best candidates and employers are connected via the rigorous recruitment processes and extensive database that we are continuously developing.\n\n\n\tBe the first to recruit with us and start realising the value-add that we are able to provide to your organisation!\n\tEnjoy the expansive array of human resource solutions and network which RecruitFirst has to offer.\n\tTogether with our affiliates, we have operations in 8 countries and 10 cities across Asia Pacific – Singapore, Kuala Lumpur, Bangkok, Hong Kong, Shanghai, Beijing, Guangzhou, Taipei, Tokyo and Seoul. This geographical network gives us the strategic advantage of acquiring the best candidates to satisfy the human resource strategies of multi-national companies. In addition, with this large network of consultants, we are also able to provide for all your human resource needs, including, temporary staffing, contract staffing, executive search, payroll services, global placement or management consultancy.\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-engineer-data-warehouse-up-%246500-central-gaming-industry!-10125667?jobId=jobstreet-sg-job-10125667§ionRank=317&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Duties
[{'position': 'Research Associate, (Artificial Intelligence) R00010348 T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted 10 hours ago']}, {'Job Description:': '', 'Job Requirements:': '', 'Research and Comprehensive Skills:': 'Independent and self-motivated researcher.Good paper reading and writing skills.Excellent publication record, including top-tier journals and conference papers in the related fields.Strong in Mathematics.', 'Coding Skills:': 'Familiar with any of the major deep learning libraries, including Pytorch, TensorFlow, MatConNet.Familiar with the image processing and optimization toolboxes in Matlab.Comfortable with Linux environment, including using vim, git, tmux, bash, etc.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-artificial-intelligence-r00010348-t-10096598?jobId=jobstreet-sg-job-10096598§ionRank=319&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Manager, Office of Data and Digital Governance'}, {'company_name': 'Singapore Health Services Pte Ltd (SingHealth HQ)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Requirements': 'Identify and propose improvements in digital governance processes to strengthen governance of IT systems for the organisation;.Review of compliance with established IT Security policies and procedures;.Review of IT systems to ensure that the IT & Data control measures are in place and comply with SingHealth’s standards;\xa0.Develop localised IT policies to operationalise requirements stipulated by regulatory and IT digital governance framework / policies;.Govern all digital initiatives in partnership with the stakeholders;.Conduct briefings to SingHealth staff and IT Support staff on IT governance requirements; and.Develop digital publicity material to create awareness on IT governance best practices..Support the Head, Office of Data & Digital Governance in identifying and proposing improvements in data governance processes to strengthen data governance for the organisation;\xa0.Facilitate staff’s adherence to an enterprise data governance framework comprising data policies, standards and guidelines; and.Conduct briefings to SingHealth staff and IT support staff on the data governance and data security requirements..Degree in Computer Science, Information Management or Management Information Systems or related fields.Minimum 8 years of Information Technology experience, preferably with at least 5 years in IT governance and risk management\xa0.Experience in handling IT innovation projects from governance and compliance standpoints.Good understanding of formal structure, processes and stakeholders involved in IT governance decision-making process.Certification in ITIL, COBIT, CISA, CRISC, CISM will be advantageous.Possess strong communication and interpersonal skills with the ability to get buy-in from stakeholders.Must be fully vaccinated against COVID-19.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': '200002698Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '17 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts), Subject to Designation'}, {'Company Overview': 'SingHealth is the largest public healthcare cluster in Singapore. At our Headquarters, we focus on cluster-wide, strategic core functions for the organisation and work closely with our institutions and care teams to facilitate excellent care for our patients.We offer a diverse variety of roles that you can fulfil your career aspirations in. You can choose from different domain areas such as medical and clinical services, regional health system, research, education, organisational transformation and informatics, as well as corporate services including operations, finance, human resources, legal and communications. These comprise healthcare administration roles and other unique jobs such as genetic counsellors and clinical research nurses.'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-office-of-data-and-digital-governance-10080750?jobId=jobstreet-sg-job-10080750§ionRank=320&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Job Requirements
[{'position': 'Data Engineer (Python/SQL)'}, {'company_name': 'Good Job Creations (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa07,000', 'Posted on 4-Nov-22']}, {'[Order Number: ': '', '2208-62898': '', ']': '', 'Responsibilities': 'Support Technology Development Work project.Strong hands-on experience of SQL skills in any RDBMS (experience with Snowflake is a plus)..Strong understanding and experience of DBA knowledge and Excel..Strong hands-on experience in using Python to perform ETL/backend and stay up to date with the latest libraries..Experience in automation testing and CICD pipelines..', 'Requirements': 'Python.SQL.Excel.CICD scripts.', 'cv_may(AT)goodjobcreations.com.sg': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200618166E', 'EA No.': '07C5771', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '7 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGood Job Creations Singapore (License Number: 07C5771) provides total HR solutions with core values of customer focus, teamwork, professionalism and contribution to the society and our clients. Our vision is to create opportunities for Asian talents in Singapore and across the region. For more information, visit us at www.goodjobcreations.com.sg\n\n\tGOOD JOB CREATIONS (SINGAPORE) PTE. LTD.\n\n\tEA License No.: 07C5771\n\tKimiya Shibazaki\n\tRegistration NO.: \u200bR1325719\n\n\tWe agree to protect all personal information and contact details sent to us via your resume according to the Personal Data Protection Act (PDPA) with effect from 2nd July 2014.\n\tAll information collected is strictly for the purpose of processing your job application and internal administrative use.\xa0\xa0\n\tBy sending your resume to us, you acknowledge your consent to the collection and use of your personal data for the above purposes only.\xa0\xa0\xa0\xa0\n\n\tOur Company’s Privacy Policy:\n\thttp://www.goodjobcreations.com.sg/en/privacy/\n\n\tDo not hesitate to contact our officer if you have further queries with regards to the Personal Data Protection Act.\n\tData Protection Officer: Mr. Kimiya Shibazaki\n\tContact: +65 6258 8051\n\n\t[*PDPA clause]\n\n\tYour data may be used by our affiliated companies under WILL Group Asia Pacific (https://willgroup.co.jp/en/index.html) for the sole purpose of recruitment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-python-sql-10134986?jobId=jobstreet-sg-job-10134986§ionRank=321&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
[Order Number:
[{'position': 'Healthcare Analyst'}, {'company_name': 'MHC Medical Network Pte Ltd'}, {'small_section': ['Clementi', 'SGD\xa04,000 - SGD\xa05,000', 'Posted on 2-Nov-22']}, {'Job Description:': 'Manage and reconcile Statements of Account (SOA) received from all partnered healthcare providers..Consolidate accounts and ensure compliance with accounting standards..Support audit queries..Tracking payments to partnered healthcare providers..Serves as an intermediatory between internal claims/finance team with business offices of partnered healthcare providers..Liaise with partnered healthcare providers on direct billing transactions..Develop and implement effective record-keeping procedures..Evaluate raw information and communicating the findings through the use of data visualization and detailed reports..Delve into pharmaceutical data to discover discrepancies and patterns..Support the operational teams in maintaining strong vendor relationships..Contributes to team effort by accomplishing related results as needed..', 'Job Requirements:': "Bachelor's degree in health information systems, mathematics, or relevant field..A minimum of 2 years’ healthcare or data analytics related work experience..Excellent analytical and communication skills..Understanding of healthcare procedures..Outstanding organizational and problem-solving aptitude..A working knowledge of data analysis/presentation tools, such as Microsoft Excel and Microsoft Power BI.."}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Healthcare, Practitioner/Medical Asst', 'Registration No.': '199702589N', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '27 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Annual Leave, Smart Casual', 'Specific Location': 'Commonwealth'}, {'Company Overview': 'MHC Asia Group is a leading health technology company with a network of over 2000 panel clinics in Singapore and 880 in Malaysia with foot prints in Indonesia, Philippines and Hong Kong. It is currently processing more than 1.5million outpatient claims annually.Majority of insurers and thousands of corporate clients adopt MHC’s web-based system to help manage their healthcare costs and profile the health of its members and workforce.MHC simplifies healthcare and connect stakeholders in the healthcare delivery chain with effective use of information technology and big data analytics — increasing efficiency, ensuring transparency, lowering costs and boosting productivity.Visit us at:www.mhcasia.com/managedcarewww.mhcasia.com/health_screeningwww.facebook.com/mhcasiawww.youtube.com/mhcasia'}, {'url': 'http://www.jobstreet.com.sg/en/job/healthcare-analyst-10076509?jobId=jobstreet-sg-job-10076509§ionRank=322&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Clinical Data Officer, Data Management, SICS'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Job Description': 'Manage the Clinical Data Officers in Clinical Data Management deliverables including Case Report Form (CRF)/e-CRF design, database design and set-up, validation definition and programming, Data Management Plan and study database deliverables..Lead the implementation of CDISC SDTM framework and OMOP Common Data Model for data collection across research studies, streamlining the data standardisation during data collection and data integration phases..Develop Clinical Data Management documentations/guidelines and drive process standardisation across research studies in accordance to Good Clinical Practices (GCP) and Good Clinical Data Management Practices..Develop and implement proactive quality control audits/quality management plans across research studies to ensure accuracy, completeness and proper usage of systems from Clinical Data Management perspective..Work closely with clinical trial industry sponsors on Clinical Data Management protocols, medical coding and regulatory data submissions..Lead/support continuous Clinical Data Management process and technology improvements as assigned by Head of Data Management..', 'Job Requirements': 'A Bachelor/Master Degree in Public Health, Clinical Research, Life Sciences, Computer Science or related field..5 years of relevant experience working in academic research, pharmaceutical/biopharmaceutical companies or clinical contract research organization (CRO)..Experiences with industry standard Electronic Data Capture (EDC) tools such as Medidata Rave, Oracle Clinical One, Veeva..Basic programming skills in any language (Python preferred)..Familiar with Business Intelligence (BI) reporting tools such as Power BI.\xa0\xa0.Professional experience using Microsoft Office tools (advanced proficiency in Excel)..Organizational, numerical and analytical skills with keen attention to detail..Project management skills with demonstrated ability to work in an environment with multiple projects and timelines..Knowledge/experience on Good Clinical Practices (GCP), Good Clinical Data Management Practices, 21 CFR Part 11, CDISC SDTM standards and regulatory data submissions..Good team player and communication skills..Effective team management skills..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/clinical-data-officer-data-management-sics-10096886?jobId=jobstreet-sg-job-10096886§ionRank=323&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Fellow (Artificial Intelligence) R00010346 #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 6-Nov-22']}, {'Job Description:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': 'Independent and self-motivated researcher.Good paper reading and writing skills.Excellent publication record, including top-tier journals and conference papers in the related fields..Strong in Mathematics.', 'Coding Skills:': 'Familiar with any of the major deep learning libraries, including Pytorch, TensorFlow, MatConNet.Familiar with the image processing and optimization toolboxes in Matlab.Comfortable with Linux environment, including using vim, git, tmux, bash, etc.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-r00010346-urgent-10138903?jobId=jobstreet-sg-job-10138903§ionRank=325&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Apprentice- Project Management Associate'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Job Description:': 'Drafting and negotiation of project agreements.Technology feasibility analysis and business model evaluation.Generating project plans/documents/reports and scenarios supporting project business case.Compiling and communicating project progress reports with management and collaborators.Supporting the Project manager in project execution, monitoring and timeline management.Taking detailed notes and liaising with Managers, Supervisors, and other senior staff.Fulfilling any requirements and meeting goals set out at the start of the program.', 'Job Requirements:': '', 'Qualification:': 'A minimum bachelor’s degree in Science, Biology, or related field.', 'Work Experience:': '1 to 3 years working experience in the science lab is a bonus.', 'Technical Skills:': 'Some knowledge of diagnostics and basic life sciences technologies would be preferred.Experience with office management software such as MS office (Excel, Word, PowerPoint).Experience and/or knowledge in diagnostics/medical technology industry is a plus.', 'Soft Skills:': 'Resourceful, demonstrate eager to learn attitude.Able to communicate effectively, multi-task and able work in a dynamic environment.Ability to work in cross-functional teams.Well organized, with good interpersonal and written communication skills.Good organisation and presentation skills.Awareness of organisation and workplace health and safety.Comfortable with handling deadlines.', 'Abilities / Aptitudes:': 'Highly motivated and results driven.Proactive and takes ownership of the projects.Works well as part of a team, yet able to work independently.Prioritizes assigned tasks and manages time accordingly.Self-learner.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/apprentice-project-management-associate-10096335?jobId=jobstreet-sg-job-10096335§ionRank=326&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Data Analytics - FCV Internship - (22023601)'}, {'company_name': 'Emerson Asia Pacific Private Limited'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Responsibilities:': 'Support market data analysis and data visualization projects to drive business cases and recommendations, monitoring its impact.\xa0.Collaborate with engineers, product managers, marketing and operation teams to provide statistics or business data that can help to drive business insights, and partner with local markets to draw strategic insights and provide recommendations to capture business growth opportunities..Operate analytics and reporting software to extract data according to different measurement purposes..Design logic and rules to combine data from multiple sources..Conduct data collection, and analyze and discover insights from raw data using SQL, Tableau, etc..Build dashboards using Power BI according to business needs.\xa0.Develop reports showing insights from current and historical data to identify business opportunities, forecast possible future events, and inform effective business strategy for the future.', 'Job Requirements:': 'Currently pursuing a Bachelor’s Degree in Business Analytics, Data Science, Statistics, Computer Engineering, Computer Science, or a related field..Familiar with analytic and reporting tools (eg. Power BI, SQL, Tableau) and advanced usage of Microsoft Excel.\xa0.Strong ability to analyze and interpret trends from raw data, prepare data for analysis and build dashboards that provide descriptive and predictive insights.\xa0.Ability to solve problems with an analytical and logical approach.Strong interest in user behavior analytics and marketing analytics.Understanding of the different metrics used to measure business performance.Good interpersonal, communication, and problem-solving skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '196500174M', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Manufacturing / Production', 'Benefits & Others': 'Dental, Education support, Medical, Parking, Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': 'WHY EMERSONOur Commitment to Our PeopleAcross the globe, we are united by a singular Purpose:\xa0We drive innovation that makes the world healthier, safer, smarter, and more sustainable.We invest in our employees to ensure they have the marketplace knowledge, skills, and competencies to bring this Purpose to life while competing and leading in a global economy.Our training programs focus on end-to-end development, from onboarding through senior leadership.Our success is measured by the positive impact we make on people, our communities, and the world through our unwavering focus on environmental, social, and regulatory progress.\xa0Learn more about us!Our Commitment to Diversity, Equity & InclusionAt Emerson, we are committed to fostering a culture where every employee is valued and respected for their unique experiences and perspectives.We believe a diverse and inclusive work environment contributes to the rich exchange of ideas and diversity of thoughts, that inspires innovation and brings the best solutions to our customers.This philosophy is fundamental to living our company’s values and our responsibility to leave the world in a better place.\xa0\xa0Learn more about our\xa0Culture & Values\xa0and about\xa0Diversity, Equity & Inclusion at Emerson.If you have a disability and are having difficulty accessing or using this website to apply for a position, please contact:\xa0[email\xa0protected]ABOUT EMERSONEmerson is a leading global technology, software and engineering company providing innovative solutions for customers in industrial, commercial, and residential markets.Our Automation Solutions business helps process, hybrid and discrete manufacturers maximize production, protect personnel and the environment while optimizing their energy and operating costs.Our Commercial & Residential Solutions business helps ensure human comfort and health, protect food quality and safety, advance energy efficiency and create sustainable infrastructure.We help customers in the world’s most essential industries solve the biggest challenges of modern life.Every day, our global workforce fulfills our unified Purpose and lives out the Values we hold close as an organization:\xa0Integrity, Safety & Quality, Support Our People, Customer Focus, Continuous Improvement, Collaboration, and Innovation.Our Causes –\xa0Planet, Humanity, Champion, Inclusion and Future\xa0– shape, define and fuel Emerson’s culture while inspiring our innovative spirit and driving our focus.Whether you’re an established professional looking for a career change, an undergraduate student exploring possibilities, or recently received your master’s degree, you’ll find opportunities with us. Join our team and start your journey today!No calls or agencies please.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-fcv-internship-22023601-10062074?jobId=jobstreet-sg-job-10062074§ionRank=327&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Data Analyst, APJ'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key accountabilities': 'Leverage datasets\xa0from\xa0different source systems to build BI dashboards/reports to track business performance, enable data-driven commercial decisions,\xa0and\xa0report-out to stakeholders within requested timeline..Partner with other analytical teams, IT,\xa0and\xa0vendors to leverage various data sources in\xa0and\xa0deliver solutions that provide deep insights into customer behavior across the channels\xa0and\xa0touch points through which customers interact..Manage multiple initiatives,\xa0work\xa0streams,\xa0and\xa0priorities\xa0and\xa0ensure the team has clear direction in a constantly evolving\xa0environment. Also manage expectations across groups, divisions\xa0and\xa0teams..', 'Qualifications:': "Bachelor's or Master's\xa0Degree\xa0with 3+\xa0years\xa0of relevant experience in data science, analytics, statistics, applied math\xa0or\xa0related.Strong\xa0experience in e-commerce, UX\xa0and\xa0Digital Marketing.Knowledge of digital analytics tools.Experience with Marketing & Digital KPIs, online marketing, multi-channel marketing strategies,.Strong\xa0business acumen\xa0and\xa0analytical skills.Proven ability to\xa0apply\xa0analytical\xa0and\xa0creative thinking to problem-solve..Google Analytics\xa0or\xa0Adobe certifications are a plus.Knowledge of Google Tag Manager\xa0or\xa0any Tag Management System is a plus.A/B, MVT experience is a plus.Experience with data consumption platforms such as Power BI or Tableau.Experience with data mining\xa0and\xa0visualization software is a plus..Experience in end-to-end advance analytics implementation project is advantage..Ability to travel when required."}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-apj-10052822?jobId=jobstreet-sg-job-10052822§ionRank=329&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Key accountabilities
[{'position': 'Data Engineer'}, {'company_name': 'SBS Transit Limited'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities:': 'Design and develop data pipelines and infrastructure to support analytics projects for optimal extraction, transformation and loading of data from various data sources.Management of large volumes of structured and unstructured data and transforming it into useable form for analytics purposes.Automate data collection and processing for analytical modelling input.Maintain and improve the quality of datasets.Optimisation of algorithms for production deployment.Identify opportunities for internal process improvement via data solutions..', 'Requirements:': '3 to 4 years in developing data engineering solutions, preferably with production deployment experience, using tools such as Python, SQL, Apache Spark, Apache Hadoop, Apache Kafka, Docker, Git, Shell, Bash or equivalent.Background in computer science, data analytics or a relevant field. Degree or higher preferred, but candidates with the relevant work experience and certifications will be considered.Experience and knowledgeable of basic model and dashboard development (backend), building big data infrastructure, project management, data governance concepts.Independent, intellectually curious, creative, diligent, and a holistic thinker.Working knowledge of building pipelines involving real-time streaming data, big data, cloud technologies or equivalent.Experience/knowledge of using Splunk and Robotic Process Automation (RPA) solutions like UIPath\xa0.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '199206653M', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '12 days', 'Industry': 'Transportation / Logistics'}, {'Company Overview': '\n\tSBS Transit is a leading public transport operator. It is a member of the ComfortDelGro Group which operates in seven countries around the world. Our people are our strongest driving force and their welfare and development are important to us. We listen to what they have to say and we are constantly grooming them to their fullest potential. Join the SBS Transit family today and let us help you grow.\n\n\tBy submitting this application for this position, you acknowledge that you have read the Data Protection Policy for Job Applicants (the “Policy”) of SBS Transit Ltd and its subsidiaries, affiliates and related corporations (‘SBST”) and consent to:\n\t\n\t\ta.\xa0\xa0\xa0 The collection, use and disclosure of your personal data by SBST for the purposes of your application and potential employment with SBST and the purposes set out in the Policy: and\n\tb.\xa0\xa0\xa0 SBST’s retention of your personal data for two years for consideration of future job opportunities (where applicable) form from the date of application submission.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10052059?jobId=jobstreet-sg-job-10052059§ionRank=330&token=0~049f64f3-4192-4564-9974-81f2a2a09387&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Business Intelligence Specialist'}, {'company_name': 'DKSH Singapore Pte Ltd'}, {'small_section': ['West', 'SGD\xa03,000 - SGD\xa03,800', 'Posted on 4-Nov-22']}, {'About DKSH Smollan Field Marketing': '', 'DKSH Smollan Field Marketing (DSFM) ': '', 'join us today if you are ready to “Drive growth. Be the difference.”': '', 'General Responsibilities:': '', 'Data Literacy:': '', 'Job Requirements': '', 'Skills and Knowledge:': '', 'Soft skills:': []}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200101487N', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '27 days', 'Industry': 'Consumer Products / FMCG', 'Benefits & Others': 'Dental, Medical, Parking, Regular hours, Mondays - Fridays, Shuttle bus will be provided from various MRT stations, Smart Casual'}, {'Company Overview': 'About DKSH DKSH is the leading Market Expansion Services provider with a focus on Asia. As the term "Market Expansion Services" suggests, DKSH helps other companies and brands to grow their business in new or existing markets.DKSH’s purpose is to enrich people’s lives. For more than 150 years, we have been delivering growth for companies in Asia and beyond across our Business Units Healthcare, Consumer Goods, Performance Materials, and Technology. As a leading Market Expansion Services provider, we offer sourcing, market insights, marketing and sales, eCommerce, distribution and logistics as well as after-sales services. DKSH is a participant of the United Nations Global Compact and adheres to its principles-based approach to responsible business. Listed on the SIX Swiss Exchange, DKSH operates in 36 markets with 33,100 specialists, generating net sales of CHF 11.1 billion in 2021. www.dksh.comFollow us on LinkedIn at https://www.linkedin.com/company/dksh/about/'}, {'url': 'http://www.jobstreet.com.sg/en/job/business-intelligence-specialist-10082910?jobId=jobstreet-sg-job-10082910§ionRank=333&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
About DKSH Smollan Field Marketing
[{'position': 'Principal Research Scientist, (Engineering) (R00003838)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Development of an IOT product line.Responsible for the offer plan and technical/economical decisions.D elivering new IOT solutions and communication architectures for energy utilities.', 'Job Requirements:': 'Master’s or PhD in engineering.Know-How on IoT applications for Energy Efficiency and Grid Applications.Project manment with PMP Certification.Knowledge in Artificial Intelligence applications, IOT platforms and communication.Experience in implementation of an open IoT platform.Cloud security experience.Proficient with SaaS, PaaS, and Openstack/Opensource technologies.Thought leader, and/or certicitation in modern IT/developer operations.Minimum 15 of experience.CWNA or relevant certification is advantous.'}, {'Career Level': 'Senior Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '15 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-research-scientist-engineering-r00003838-10072802?jobId=jobstreet-sg-job-10072802§ionRank=334&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Scientist (AI/ML, Text Analysis, CV), Computing and Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job description': '', 'The responsibilities include, but are not limited to:': 'Conducting world-class research in AI and machine learning to be recognized by local and international communities.Work with peers in IHPC and collaborators to advance research and develop innovative applications in AI and machine learning.Publish high impact papers to advance science.Propose and lead new projects leveraging state-of-the-art algorithms in both research and application domains.Execute projects to ensure timely delivery or milestones with high quality outcomes.', 'Job requirements': 'PhD in Computer Science / Electrical & Electronics Engineering / Computer Engineering or related fields.Relevant work experience in industry and/or academia in AI and machine learning.Strong programming skills, specially in Python.Familiarity with popular ML frameworks such as TensorFlow, Pytorch Keras, SKLearn, Pandas.Experience and passion on machine learning, deep learning and AI are preferable.Smart and hardworking individual who can work under pressure within a tight deadline.A good team player with can-do attitude.Solid communication and problem-solving skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-ai-ml-text-analysis-cv-computing-and-intelligence-ihpc-10124056?jobId=jobstreet-sg-job-10124056§ionRank=335&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Lead, Data Engineering (AVP)'}, {'company_name': 'Mediacorp Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Description': '', 'Job Responsibilities': 'Translate business requirements to responsive functional web solutions. This includes designing\xa0and\xa0building APIs, front-end interfaces\xa0and\xa0scalable tools that ingest\xa0and\xa0transform real-time data using a variety of open-source\xa0and\xa0proprietary big data technologies..Recommend\xa0and\xa0implement ways to improve data reliability, efficiency\xa0and\xa0quality.Work\xa0closely with stakeholders to ensure high standards of data governance during implementation.Serve as technical subject matter expert on the latest big data technologies.', 'Requirements': 'Hands-on proven track record in developing products\xa0from\xa0front-end interface,\xa0middle-tier, to backend infrastructure.7+\xa0years\xa0of superior experience developing commercial web-based\xa0applications.4+\xa0years\xa0of full-stack web development experience in Javascript (node.js\xa0and\xa0React framework).Proficiency in SQL is mandatory.Excellent scripting knowledge in Python, Shell etc.Those with\xa0strong\xa0production experience in Scala\xa0or\xa0Spark programming\xa0languages\xa0will be considered favourably.Relevant experience in web, video, mobile\xa0or\xa0adtech domain is a definite plus.Demonstrated clear\xa0and\xa0thorough analytical thinking.Good\xa0eye for aesthetics\xa0and\xa0an attention to detail.A proven team player\xa0and\xa0contributor who can multi-task\xa0and\xa0deliver against timelines.Minimum\xa0degree\xa0in Computer Science/Engineering,\xa0or\xa0equivalent.', 'Thank you for your interest\xa0and\xa0application to this role. Please note that only short-listed\xa0candidates\xa0will be contacted.': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199201312E', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Entertainment / Media', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\nMediacorp is Singapore’s leading media company with the most complete range of platforms, spanning television, radio, newspapers, magazines, movies, digital and out-of-home media.\n\t\t\xa0\n\n\t\tIt pioneered the development of Singapore’s broadcasting industry, with the broadcast of Radio in 1936 and Television in 1963.\n\n\t\tToday, Mediacorp has over 50 products and brands in four languages (English, Mandarin, Malay and Tamil), reaching out to all adults in Singapore every week.\n\n\t\tInitiatives in the new digital space include Internet TV-on-demand, High Definition TV broadcast and Over-the-Top (OTT) interactive services.\n\t\n\tBeyond Singapore, Mediacorp is an active regional player through co-productions in TV dramas and movies, magazines publishing, as well as Channel NewsAsia International, one of the first Asian-owned English news channels.\n\t\n\t\n\t\tOur financial and strategic relationship in the region includes International Media Corporation in Vietnam, which was set up to develop and produce television entertainment and economic news content. Mediacorp also has a stake in Singapore-based retail firm Reebonz, one of the region's fastest growing luxury online retailers and a majority stake in Cubinet Interactive, a Malaysian digital games publisher.\n\t\n\tWinner of numerous international awards and accolades including Asian Television Awards' Terrestrial Broadcaster of the Year, Mediacorp’s mission is to engage, entertain and enrich audiences by harnessing the power of creativity.\n\t\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-engineering-avp-10061303?jobId=jobstreet-sg-job-10061303§ionRank=336&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Data Solution Architect, Lead'}, {'company_name': 'ECLOUDVALLEY TECHNOLOGY PTE. LTD.'}, {'small_section': ['Central', 'Posted on 28-Oct-22']}, {'We Are Looking For Someone Who Is Passionate About': 'Expertise - Collaborate with our field sales, pre-sales, services teams, training, and support teams to help customers architect AWS services in the Analytics area, especially in data warehouse and data lake technologies..Solutions - Deliver one to many sessions to enable the internal/external teams, support key analytic engagement, develop reusable technical solutions/contents from AWS services, lead virtual technology team to harvest valuable assets as landing zones, and cooperate with the global team to drive more customer obsession services..Enablements - Engagements include short on-site projects proving the use of AWS services to support analytic solutions that often span across different services. Engagements may include migration of existing applications and development of new applications using AWS cloud services..Insights - Work with engineering and support teams to convey customer needs and feedback as input to technology roadmaps. Share real-world implementation challenges and recommend new capabilities that would simplify adoption and drive greater value from the use of AWS cloud services..', 'The ideal candidate will be …': 'Hands-on experiences: manage daily 10TB+ data warehouse experiences, ETL jobs, analytics of manufactories/telco/financial service industry/E-Commerces..Be an Architect: produce and validate reference architectures and customer adoption for AWS Analytics services including Amazon Athena, Amazon S3 (Data Lake), Amazon Redshift..Trusted advisor" to customers: Be able to facilitate relationships with senior technical executives, as well as easily interact and give guidance to software developers, IT operations staff, and system architects. Be able to materialize an overall recommendation (or proposal) based on customer needs and efficiently communicate the benefits of the recommended solution..Vertical knowledge on the financial services industry, manufacturing, semi-conductor, retails, over-the-top media; able to articulate end-to-end information flow of these focused verticals; and have related experience..Have a business consultant capacity to work with customer’s line-of-business owner; explore improvement areas of customer’s business; and priorities’ strong ROI business initiatives with customers..', 'Basic Qualifications': "Bachelor's degree or equivalent education; Computer Science, Statics or Math background preferred..3+ years of experience in IT platform implementation in a highly technical and analytical role..3+ years experience in Analytic solution implementation, including 2+ years of hands-on experience in the data warehouse, enterprise information frameworks, distributed database, ETL, data lake, and analytic/machine learning..Customer-facing skills to represent solutions well within the customer’s environment and drive discussions with senior personnel regarding trade-offs, best practices, project management, and risk mitigation. Should be able to interact with Chief Marketing Officers, Chief Risk Officers, Chief Technology Officers, and Chief Information Officers, as well as the people within their organizations..", 'Preferred Qualifications': 'Masters or PhD in Computer Science, Engineering, Statics, or Math..Hands-on experience leading large-scale global data warehousing and analytics projects..Experiences in AWS or open-source analytic solutions in Redshift, Glue, Elasticsearch, Quicksight, Kinesis, Athena, and all data lake-related solutions..Strong verbal and written communication skills and ability to lead effectively across organizations..Deep understanding of AI and data-related infrastructure, such as Hadoop/Spark/Flink/MySQL and etc., experiences in contributing to Open Source will be a plus..Demonstrated industry leadership in the fields of data sciences preferably in finance, retail, or manufacturing..Track record of implementing AWS services in a variety of distributed computing, enterprise environments, or relevant experiences with other public clouds..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201911448G', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '9 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Leaves, Smart Casual'}, {'Company Overview': '\n\nFounded in 2014 as a born-in-the-cloud partner focused entirely on AWS services, eCloudvalley has grown to 380+ employees with geographic footprints across APAC region, in Taiwan, Hong Kong, China, Philippines, Singapore, Malaysia, Thailand, and United States. eCloudvalley is the notable vendor in the Asia Pacific regional contextualization of the Magic Quadrant for Public Cloud infrastructure MSP on Gartner.\xa0\n\nWith a mission to evolve the customer’s business with cloud technology, eCloudvalley has built a professional technical team with over 500 AWS certifications and has served 1,000 enterprises to perform any digital transformation. Our core competencies include Cloud Migration, Managed Services Provider, Data Solution, SAP, DB Freedom, Cloud Training, DevOps, Serverless, and Containers.\n\n\nOur business has been growing and expanding rapidly and we are looking for new talents to join us. If you are a person with entrepreneur mindset and would like to be a part to disrupt the market, you may be one of the people that we need!'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-solution-architect-lead-10062364?jobId=jobstreet-sg-job-10062364§ionRank=337&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
We Are Looking For Someone Who Is Passionate About
[{'position': 'Manager, Business and Data Analystics / #Seekbetter'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': 'Perform data analysis and report findings, including acquiring data, managing, updating and maintaining various datasets and databases, where applicable.Evaluate business needs of academic and learning initiatives, streamlining the processes and implementing effective technological solutions.', '\xa0Duties and Responsibilities:': 'to identify effective IT solutions for efficiency.to automate business processes, eg via Robotic Process Automation (RPA), or creation of PS Queries, leading to successful technology outcomes.to assist and implement learning initiatives.Any other duties as assigned.', 'Qualifications': 'Relevant degree discipline.Some relevant work experience in the education industry is preferred.Proficient in database management and querying, and programming language.Organised and able to work well under pressure and tight deadlines.Results-driven, self-motivated and highly disciplined and able to work independently with minimum supervision.Strong team player with ability to work collaboratively with various stakeholders..'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-business-and-data-analystics-seekbetter-10110074?jobId=jobstreet-sg-job-10110074§ionRank=338&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Fleet Engineer (Data Analytics)'}, {'company_name': 'Good Job Creations (Singapore) Pte Ltd'}, {'small_section': ['Changi', 'SGD\xa03,500 - SGD\xa04,700', 'Posted on 4-Nov-22']}, {'[Order Number: ': '', '2206-62429': '', ']': '', 'Responsibilities': 'Monitor company equipment behavior on several aircraft programs a daily basis, report any weak signals to the team for discussion & decision.', 'Monitor company equipment behavior on several aircraft programs a daily basis, report any weak signals to the team for discussion & decision': 'Issue timely recommendations/alerts to customer in the frame of the Predictive Maintenance service.Monitor operational events linked to company products (failures, removals, etc), follow up on the recommendations and retrieve all related info on removed components (history, flight cycles, fault messages on aircraft, technical log / troubleshooting performed, flight data, etc) from the airline.Participate in the development of new monitoring algorithms, or improvement of existing algorithm, by analyzing operational events (daily maintenance debriefs, technical logs, etc), previous recommendations issued, and customer feedback.Develop Fleet Reports (status of the fleet, open alerts by system / aircraft / criticality) and associated automated generation scripts. Share fleet reports to customer on a weekly basis, and answer customer’s related questions / queries.Work closely with Data Analytics team based in France (weekly calls and regular interactions) for coordination & follow up on open alerts, as well as algorithm development.', 'Work closely with Data Analytics team based in France (weekly calls and regular interactions) for coordination & follow up on open alerts, as well as algorithm development': 'In charge of developing, maintaining, and updating various dashboards / scorecards, as required by local Customer Support Office as part of digitalization projects.Any other ad hoc duties assigned.', 'Requirements': 'At least three (3) years of Experience in Data Analytics or related field.', 'At least three (3) years of Experience in Data Analytics or related field': 'Proficient with Python, SQL / Databases, and PowerBI / Data visualization.', 'Proficient with Python, SQL / Databases, and PowerBI / Data visualization': 'Experience using web scrapping / web APIs.', 'Experience using web scrapping / web APIs': 'Proficient with Excel / PowerPoint.', 'Proficient with Excel / PowerPoint': 'Interest in aviation & aircraft systems (mechanical, hydraulics, electrical systems).Knowledge of ACMS / ACARS / IMACS (aircraft monitoring & data transfer protocols).', 'cv_may(AT)goodjobcreations.com.sg': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200618166E', 'EA No.': '07C5771', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '7 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGood Job Creations Singapore (License Number: 07C5771) provides total HR solutions with core values of customer focus, teamwork, professionalism and contribution to the society and our clients. Our vision is to create opportunities for Asian talents in Singapore and across the region. For more information, visit us at www.goodjobcreations.com.sg\n\n\tGOOD JOB CREATIONS (SINGAPORE) PTE. LTD.\n\n\tEA License No.: 07C5771\n\tKimiya Shibazaki\n\tRegistration NO.: \u200bR1325719\n\n\tWe agree to protect all personal information and contact details sent to us via your resume according to the Personal Data Protection Act (PDPA) with effect from 2nd July 2014.\n\tAll information collected is strictly for the purpose of processing your job application and internal administrative use.\xa0\xa0\n\tBy sending your resume to us, you acknowledge your consent to the collection and use of your personal data for the above purposes only.\xa0\xa0\xa0\xa0\n\n\tOur Company’s Privacy Policy:\n\thttp://www.goodjobcreations.com.sg/en/privacy/\n\n\tDo not hesitate to contact our officer if you have further queries with regards to the Personal Data Protection Act.\n\tData Protection Officer: Mr. Kimiya Shibazaki\n\tContact: +65 6258 8051\n\n\t[*PDPA clause]\n\n\tYour data may be used by our affiliated companies under WILL Group Asia Pacific (https://willgroup.co.jp/en/index.html) for the sole purpose of recruitment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/fleet-engineer-data-analytics-10134953?jobId=jobstreet-sg-job-10134953§ionRank=339&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
[Order Number:
[{'position': 'Data & Analytics Manager'}, {'company_name': 'Amazon'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job summary': '', 'Key job responsibilities:': 'The\xa0ideal candidate will\xa0have\xa0a rock-solid background\xa0in\xa0report extraction\xa0and\xa0dashboard management, including experience extracting\xa0and\xa0manipulating data using SQL, analysis\xa0and\xa0producing digestible business intelligence\xa0and\xa0actionable information.\xa0.The\xa0candidate should also\xa0have\xa0strong\xa0communication\xa0and\xa0project management skills, enabling them\xa0to\xa0work\xa0with key business stakeholders\xa0to\xa0understand requirements and shape analytical deliverables..This is a hands-on\xa0role;\xa0the\xa0ideal candidate\xa0must\xa0be willing\xa0to\xa0work\xa0directly with large datasets, conduct data analysis, build self-service\xa0reporting tools in an\xa0environment\xa0of\xa0rapid growth\xa0and\xa0increasing complexity,\xa0and\xa0communicate complex business insights in a clear\xa0and\xa0precise manner.\xa0.The\xa0candidate\xa0must\xa0be a self-starter with a bias towards independent problem solving, a passion for identifying\xa0and\xa0eliminating bottlenecks,\xa0and\xa0has\xa0the\xa0foresight\xa0to\xa0anticipate business needs\xa0and\xa0balance business dynamics despite constraints.\xa0.The\xa0ideal candidate\xa0must\xa0also earn trust through performance\xa0and\xa0relationship building\xa0and\xa0think analytically about business challenges..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201411358G', 'Company Size': 'More than 5000 Employees', 'Industry': 'Retail / Merchandise', 'Benefits & Others': 'Casual (e.g. T-shirts), Discussed at offer stage, Shifts can include nights, weekends, and holidays'}, {'Company Overview': "\n\tThe evolution of Amazon has been driven by innovation. It’s part of our DNA. We are doing things every day that have never been done before—providing a huge selection of products and continuing to fulfill orders quickly. We accomplish this by solving complex problems with ingenuity and simplicity. We're making history and the good news is that we've only just begun...\n\n\n\tTo learn more about Amazon today, explore our website, check out the stores, read some customer reviews and learn about our programs. Work hard. Have fun. Make history."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-manager-10117273?jobId=jobstreet-sg-job-10117273§ionRank=340&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Job summary
[{'position': 'Data Engineer'}, {'company_name': 'Kuok (Singapore) Limited Group'}, {'small_section': ['Central', 'Posted on 26-Oct-22']}, {'Responsibilities:': 'Work with the data team to develop and maintain scalable, reliable, and test-driven data pipelines to collate and store data from multiple sources. This data will serve as the single source of truth for all analytical and engineering needs - generating analytic reports, decision making, data science etc..Administer, maintain, and monitor data platform environment & usage, grant user permission and design security roles according to data governance standards & procedures..Develop and promote organization wide data definition layer consisting of data dictionaries, maintain data assets, and ensuring data platform adhere to data governance & security standards and procedures..Work with various business teams to support applications through automated data processing and ensure data integrity whilst meeting data security standards..Explore data sets to understand how data points contribute to business decision making and actionable analytics..', 'Requirements:': "Bachelor's degree in Computer Science, Computer Engineering, Information Technology or a related discipline..Possess 3-5 of experience in Data Engineering (e.g. data modeling, data pipeline, data architecture, ETL).Extensive experience in SQL, Python or other scripting language. Comfortable in deploying scripts and familiar with data management / ETL tools.Knowledge on cloud systems like AWS, Azure, or Google Cloud Platform is a plus.Proficient in interfacing with software applications through REST API etc.Willing to explore data and its application in business decisions.Good at analytical thinking, highly organized, self-motivated, pro-active, flexible and able to plan.Attention to details, a self-starter and self-learner continuously keeping up to date with industry developments..Creative problem solver and ability to think out of the box..Good communication and presentation skills.."}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '194800006K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts), Flexible Benefits'}, {'Company Overview': '\n\n\t\tBUILDING ON OUR LEGACY FOR SUCCESS. INNOVATING FOR THE FUTURE.\n\n\t\tKuok (Singapore) Limited (KSL) is an Asian investment holding company with diverse operations, Kuok (Singapore) Limited is an established leader in digital infrastructure, maritime, agrisolutions and real estate sectors. These subsidiaries will include but not limited to; Pacc Offshore Services Holdings Limited (POSH), Pacific Carriers Limited (PCL), PaxOcean, Allgreen Properties, Agrifert Group and K2 Data Centres.\n\n\n\tKSL group is a forward-looking, dynamic and innovative organization which invests in and nurtures exceptional leaders and businesses in Asia, guided by a strong purpose and values-driven approach.\n\n\tOur business practices are grounded in the five core values: Integrity, Effort, Compassion, Unity and Gratitude. These values define us and guide the decisions we make, our relationships with our customers, and how we empower our employees to make a difference in the communities we serve.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10016487?jobId=jobstreet-sg-job-10016487§ionRank=341&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Scientist'}, {'company_name': 'ICEKREDIT SINGAPORE PRIVATE LIMITED'}, {'small_section': ['Central', 'SGD\xa07,000 - SGD\xa010,000', 'Posted on 18-Oct-22']}, {'Job Responsibilities:': '', 'Qualifications:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201827965E', 'Industry': 'Consulting (Business & Management)', 'Specific Location': '7 Straits View, Marina One East Tower, #05-01,'}, {'Company Overview': "Founded in 2015, IceKredit is a high-tech company providing business-level services with its cutting edge Artificial Intelligence technologies. After several years of development, IceKredit has become a leading AI service provider with a focus on credit risk management for both individuals and financial institutions. Headquartered in Lujiazui, Shanghai, the company's business covers the United States, Singapore, Thailand, Malaysia, Vietnam, Indonesia, Australia and other places. At present, the total investment has exceeded 1 billion yuan."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-9986307?jobId=jobstreet-sg-job-9986307§ionRank=342&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Fellow (Computer Science/Engineering) R00003938 T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted 10 hours ago']}, {'Job Responsibilities': 'Development of data-driven traffic models, including network dynamic models, public transportation models and vehicle platooning models.Development of data-driven network parameter estimation techniques.Development of real-time closed-loop traffic signal control strategies.Development of public bus management methods.Development of vehicle platoon control methods.Development of emergency handling techniques.', 'Job Requirements': 'PhD in Computer Science/Engineering on data analytics, systems and control, operations research, applied mathematics specialized in optimization.1-year research experience in related area.Expertise in traffic modeling, simulation, analysis or control.Knowledge in basic simulation tools and optimization tools.Publication track record is a plus.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-engineering-r00003938-t-10096192?jobId=jobstreet-sg-job-10096192§ionRank=343&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate - (Artificial Intelligence) R00010349 T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted 10 hours ago']}, {'Job Description:': '', 'Job Requirements:': 'Independent and self-motivated researcher.Good paper reading and writing skills.Excellent publication record, including top-tier journals and conference papers in the related fields.Strong in Mathematics.', 'Coding Skills:': 'Familiar with any of the major deep learning libraries, including Pytorch, TensorFlow, MatConNet.Familiar with the image processing and optimization toolboxes in Matlab.Comfortable with Linux environment, including using vim, git, tmux, bash, etc.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-artificial-intelligence-r00010349-t-10096925?jobId=jobstreet-sg-job-10096925§ionRank=344&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Engineer/Fellow (5G-Powered Intelligent Data-Driven Electric Vehicle) - ZW'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'SGD\xa03,000 - SGD\xa08,500', 'Posted on 6-Nov-22']}, {'Key Responsibilities:': 'Collaborate with partners from both the academia and the industry to lead and/or conduct innovative research on, but not limited to 5G, AI, sustainability, etc..Contribute to academic research in the relevant domains and publish high-tier journal papers and conference papers..Participate in and manage the research project with Principal Investigator (PI) to ensure all project deliverables are met..Coordinate procurement and liaison with vendors/suppliers..Participate in computer science related laboratories and tutorials for undergraduate students..Interview and supervise student assistants in the project..', 'Job Requirements:': '(Research Fellow) PhD in Computer Science or a related field.(Research Engineer) Bachelor/Master degree in Computer Science or a related field.Proven ability to conduct independent research with a relevant publication record.Outstanding data analytics, mathematical, and computer modelling skills.Excellent interpersonal communication and oral presentation skills in English.Self-driven and strong team spirit.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Others, Others', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-fellow-5g-powered-intelligent-data-driven-electric-vehicle-zw-10113562?jobId=jobstreet-sg-job-10113562§ionRank=345&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'NGS Lab Manager'}, {'company_name': 'Hays Specialist Recruitment Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa07,000', 'Posted on 8-Nov-22']}, {'Your new company': '', 'Your new role': 'To lead the team in achieving experimental design for all NGS projects..Responsible in coordinating operational activities in the laboratory..Manage a team of scientists and advise them in resolving technical problems..Manage budgets, schedules, costs and performance requirements etc..Maintain quality safety of the laboratory according to Good Laboratory Practices..', "What you'll need to succeed": 'At least 8 years of experience in NGS within laboratory / hospital / commercial settings..Good knowledge in whole genome sequencing, single cell sequencing projects.Experienced in leading a team of scientists and lab officers..Good problem-solving skills and handled multiple projects..Able to communicate and negotiate contract development well.', "What you'll get in return": '', 'What you need to do now': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200609504D', 'EA No.': '07C3924', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Miscellaneous allowance, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'WORKING FOR YOUR TOMORROW\xa0At Hays we invest in lifelong partnerships that empower people and businesses to succeed. With over 50 years’ success under our belts and a workforce of 10,000+ people across 33 countries, we’ve evolved to put our customers at the heart of everything we do.\xa0So much more than a specialist recruitment business, what really sets us apart is our knowledge through scale, deep understanding and our ability to meaningfully innovate for our customers. By providing advice, insights and expertise on issues you face today in the fast-paced world of work, we help you make the right decisions for tomorrow.\xa0Offering an unrivalled suite of recruitment and workplace solutions, whether you’re looking for what’s next in your career, or have gap to fill, we’ll help get you get where you want to go.\xa0\xa0You can rely on us to deliver today and help you plan for tomorrow.\xa0In Singapore, our recruiting experts are available to you in the following specialisms:Accountancy & FinanceBanking & Financial ServicesConstructionEngineeringHuman ResourcesInsuranceLegalLife SciencesMarketing & DigitalOffice ProfessionalsProcurementPropertySalesSupply ChainTechnologyTo connect with a recruiting expert at Hays, visit us at www.hays.com.sg or follow Hays on LinkedIn - The #1 Recruiter on LinkedIn globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/ngs-lab-manager-10143774?jobId=jobstreet-sg-job-10143774§ionRank=346&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Your new company
[{'position': 'Social and Behavioural Scientist #JobsThatMatter'}, {'company_name': 'DSO National Laboratories'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Social and Behavioural Scientist': '', 'In this role, you will:': 'Be part of a research team that conducts research to sense-make behaviours.Observe and interpret human behaviour at various levels-of-analysis: individual cognition and decision making; small group dynamics; and macro-level social relationships.Develop coding frameworks and metrics to analyse data and derive insights on human behaviour and motivation.Design and administer questionnaires and conduct observational studies, interviews and focus groups to collect the data to address the research objectives.Conduct data analysis on qualitative and quantitative data obtained from naturalistic settings and write reports to present the results of your analysis.Work in the field with MINDEF/SAF and to collaborate with other scientists from academia and industry.', 'Requirements:': "PhD / Master's / Bachelor's Degree in Linguistics / Psychology / Sociology / Communication & Media / Political Science.Strong applied statistical skills and familiarity with SPSS or R will be advantageous.Knowledge of programming languages such as R and Python to analyse large scale human behaviour data will be advantageous.Strong theoretical foundations in behavioural and social sciences."}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '199701777M', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '16 days', 'Industry': 'R&D'}, {'Company Overview': '\n\tDefence research and development (R&D) is at the heart of what we do at DSO. As Singapore’s largest national defence R&D organisation, DSO is entrusted with the critical mission of developing technological surprises to enhance Singapore’s defence capabilities. From research to systems development, our defence engineers and scientists push the boundaries to develop game changing technologies and solutions that are not available in the market, or not available to Singapore. DSO also invest and explore emerging technologies to ensure the nation’s defence and national security capabilities are future ready. With more than 50 research areas across the domains of air, land, sea, space and cyberspace, DSO shapes the future of defence with our imagination and dare-to-do spirit in the relentless pursuit of the next big idea.'}, {'url': 'http://www.jobstreet.com.sg/en/job/social-and-behavioural-scientist-jobsthatmatter-10056894?jobId=jobstreet-sg-job-10056894§ionRank=347&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Social and Behavioural Scientist
[{'position': 'Domain Architect / Data Architect (VP - Credit, Risk, Finance)'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'credit, risk and financial reporting': '', 'Main Duties and Responsibilities': 'Collaborate with business leaders to establish technology solutions, define both current and future architecture and roadmap of applications.Lead technology solution architecture including application, integration, infrastructure and security.Ensure success of architectural standards in place through efficient data warehousing, data engineering and data modelling.Understand business needs across the credit, risk and finance domain and lead the solution architecture.Translate business requirements into scalable technical solutions.Leverage on analytics and machine learning tools to derive actionable business insights across the credit, risk and finance domain.', 'Experience and Qualifications': '', 'data': '', 'Teradata FSLDM': 'Experience in data integration tools such as Informatica.Experience in visualization tools such as Power BI and data engineering tools such as Hive, Impala, Spark etc..Experience with platform migrations.', 'Interest & Application': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/domain-architect-data-architect-vp-credit-risk-finance-10129018?jobId=jobstreet-sg-job-10129018§ionRank=349&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
credit, risk and financial reporting
[{'position': 'Research Fellow (Bio-Data Science) (R00011779)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 4 hours ago']}, {}, {'Career Level': 'Manager', 'Qualification': 'Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-bio-data-science-r00011779-10147484?jobId=jobstreet-sg-job-10147484§ionRank=350&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
[{'position': 'Senior Manager, Data Analyst - (SATS01077-9901)'}, {'company_name': 'SATS Ltd.'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'About SATS – Feed and Connect Communities': '', 'KEY RESPONSIBILITIES': 'Design, develop and implement datasets, models, as well as support to interpret and present statistical outcomes to support the organisation’s operations and execution of key business strategies.Design and conceptualize solutions that address the organisation’s challenges through use of data management and governance of large amount of data.Implement solutions using the Power Platform stack, build data pipelines and functions for visualisation and business analytics supporting the business and respective product owners.Knowledge of analytics to support and contribute to database implementation and systems, devising strategies to promote continuous improvement.Devise methods and strategies to obtain and extract data to derive business insights.Deliver accurate regular and ad-hoc performance tracking and analysis to drive traffic, transactions and processes.Ad-hoc analysis based on strategic direction of the business and deep dive into specific area/trend.Make data management recommendations based on data and industrial practices.Assist in business case and pricing initiatives as required.', 'KEY REQUIREMENTS': 'Degree holder in Business Analytics, Information Technology, Data Science or Computer Science with at least 6-8 years of experience in data analyst and/or data science roles.Understanding of and experience using data visualisation concepts, techniques and tools, such as Microsoft Power BI.Experience in developing data solutions based on established patterns and best practices for database integration with Power Platform stack (Power BI, Power Apps, Power Automate, Power Query).Working knowledge of data mining principles: mapping, collecting data from multiple data systems on premises and cloud-based data sources.In-depth understanding of and experience in designing structured and unstructured, SQL and NoSQL data repositories.Experience working with, creating and maintaining databases and repositories using state-of-the-art data backup, rollback and version control solutions.Proficient with data processing methods and technologies / tools. Azure Cloud proficiency will be an advantage.Highly motivated, structured and methodical with high degree of initiative.Strong problem solving, quantitative and analytical abilities.Excellent written and oral communication skills.Able to work independently or cross functionally.'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '197201770G', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '13 days', 'Industry': 'Aerospace / Aviation / Airline', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Regular hours, Saturdays or shift may be required for operational positions'}, {'Company Overview': "SATS – Feed and Connect CommunitiesSATS is Asia's leading provider of food solutions and gateway services. Using innovative food technologies and resilient supply chains, we create tasty, quality food in sustainable ways for airlines, foodservice chains, retailers and institutions. With heartfelt service and advanced technology, we connect people, businesses and communities seamlessly through our comprehensive gateway services for customers such as airlines, cruise lines, freight forwarders, postal services and ecommerce companies.Fulfilling our purpose to feed and connect communities, SATS is delighting customers in over 60 locations and 14 countries across the Asia Pacific, UK, and the Middle East. SATS has been listed on the Singapore Exchange since May 2000. For more information, please visit\xa0www.sats.com.sg."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-manager-data-analyst-sats01077-9901-10112953?jobId=jobstreet-sg-job-10112953§ionRank=351&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
About SATS – Feed and Connect Communities
[{'position': 'Research Fellow, ( Molecular Biology & Biomolecular Interaction) - (R00010518)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 2 hours ago']}, {'Job Description:': 'Hands-on data collection for users in Biacore T200 instrument in BMI facility.Providing training and advice for users in other biophysical equipment in the BMI (protein-protein and protein-drug interactions).For the PPP, handling and conceptualizing some complex protein production projects for diverse customers. Hands-on operations of the PPP are currently handled by three staff.Liaise with users (internal and external) and contact vendors for repairs and other equipment-related issues.Attending to safety issues of individual laboratories.Provide a yearly budget for Core, BMI and PPP facilities.', 'Job Requirements:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-molecular-biology-biomolecular-interaction-r00010518-10147820?jobId=jobstreet-sg-job-10147820§ionRank=352&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Scientist, Computing & Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Research Scientists (Artificial Intelligence)': '', 'Requirement': 'PhD degree in Computer Science/Electrical & Electronics Engineering/Computer Engineering or equivalent.Solid programming skills in Python or C/C++.Experience in one or more areas of AI, such as Machine Learning, Computer Vision, Natural Language Processing.', 'Preferred qualifications (one or more of the following)': 'Experience in applying AI to real-world problems.Relevant work experience in industry and/or academia.Expertise in one or more areas/topics of AI, such as Machine Learning, Computer Vision, Natural Language Processing, Deep Learning, etc..Strong track record of research in AI (e.g., publications in related conferences like ICML, NeurIPS, ICLR, AAAI, ACL, CVPR, ICCV, SIGIR, SIGMOD, HPCA, ISCA, and DAC, or journals such as JMLR, AIJ, IJCV, IEEE Transactions and ACM Transactions).', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-computing-intelligence-ihpc-10123550?jobId=jobstreet-sg-job-10123550§ionRank=354&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Research Scientists (Artificial Intelligence)
[{'position': 'Sr. Research Scientist, - [R00005119] #WorkNow #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Senior Research Scientist (Computer/Electrical/Mechatronics Science/Statistics)': '', 'Key Responsibilities:': 'Play a leading role in both research and development of novel and/or enhanced assistive technologies to improve the safety of fleet drivers by (i) categorizing their driving behaviors through profiling; (ii) monitoring their well-being; and (iii) assessing driving risks and reporting to fleet manager/operator and/or drivers.', 'Job Requirements:': 'PhD degree in Computer/Electrical/Mechatronics Science or Statistics.Minimum 6 years of experience in software or hardware development, integration and refinement.Solid application background in AI for computer vision and/or data analytics.Strong project management skills.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-research-scientist-%5Br00005119%5D-worknow-jobsthatmatter-10127563?jobId=jobstreet-sg-job-10127563§ionRank=355&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Senior Research Scientist (Computer/Electrical/Mechatronics Science/Statistics)
[{'position': 'System Engineer (Data warehouse support)'}, {'company_name': 'Canon Singapore Pte Ltd'}, {'small_section': ['West', 'Posted on 4-Nov-22']}, {'Job Role': '', 'Responsibilities:': 'Development and deployment of SAP Data service integration (BODS) between Microsoft Dynamics AX to Oracle Data warehouse..Collaborate with business leads, application owners, end users to design, implement and test data warehouse applications..Creating metadata to describe data sets for easier retrieval and analysis, such as defining the structure of a database so that it can be accessed easily by other applications..Developing and support data warehouse reports in SAP Business Objects (BO) and SSRS reports..Periodically check data warehouse reports and perform recovery in the event of data discrepancies..', 'Required Qualifications:': 'Bachelor’s Degree in Information Technology/Information..3 Year experience developing and implementing enterprise-scale reports, including:.Working with users in a requirements analysis role.Experience with data warehouse implementations.Hands-on experience in design and implementation of ETL framework for complex data warehouse projects..Strong analytical skills to troubleshoot data issues and identify resolutions..Experience in Data mapping on ETL tools using SAP BODS or SSIS..Experience in report development using Power BI, SAP BO or SSRS..Knowledge and Skill using Microsoft SQL scripts..Should have expert level experience in extracting data from SQL into data warehouse in consistent manner..Preferably with experience in ERP software..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '197903098R', 'Company Size': '501 - 1000 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Dental, Medical, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'One North'}, {'Company Overview': "\nIn 1979, Canon Singapore Pte Ltd was set up as the regional headquarters to oversee operations in the Asia-Pacific region. It sets and spearheads sales and marketing strategies for the region, manages and coordinates the region's organisation, sales, service, training, information network and distribution.\n\n\tKYOSEI PHILOSOPHY\n\n\tLiving and Working Together for the Common Good\n\n\tBehind every success story lies a strong guiding principle. At Canon, this principle is embodied in the word kyosei -which means living and working together for the common good.\n\n\tThis philosophy is built into every aspect of our business. From the product development stage, we only conduct research that is original and which has no threat to the environment.\n\nHistory\n\n\n\xa0Canon started out in 1937 with the vision to make the best camera for the world. More than seven decades later, it is a global leader not only in photography but also with a wide portfolio of products for consumers and businesses. Canon Singapore Pte Ltd was established in 1979 and oversees the South & Southeast Asia region.\xa0\xa0\n\n\nProduct & Services\n\n\n\nDedicated to innovation\n\nWith a goal to bring the best innovations to people around the world, Canon has built up more than 200 companies worldwide, employing more than 160,000 people in research and development, production, sales and marketing activities. Canon commits 10 percent of its total revenue each year to R&D and has acquired 19,902 U.S. patents since 1985. For the last ten years it has been one of the top 4 companies with the most number of patents.\n\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/system-engineer-data-warehouse-support-10043814?jobId=jobstreet-sg-job-10043814§ionRank=356&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Job Role
[{'position': 'Scientist (AI/ML, Text Analysis), Computing and Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job description': '', 'The responsibilities include, but are not limited to:': 'Conducting world-class research in text analysis to be recognized by local and international communities.Work with peers in IHPC and collaborators to advance research and develop innovative applications in text analysis.Publish high impact papers to advance science.Propose and lead new projects leveraging state-of-the-art algorithms in both research and application domains.Execute projects to ensure timely delivery or milestones with high quality outcomes.', 'Job requirements': 'PhD in Computer Science / Electrical & Electronics Engineering / Computer Engineering or related fields.Relevant work experience in industry and/or academia in text analysis and NLP.Strong programming skills, specially in Python.Knowledge and demonstrable experience in open-source NLP packages such as NLTK, Word2Vec, SpaCy, Gensim, Stanford CoreNLP will be a differential.Familiarity with popular ML frameworks such as TensorFlow, Pytorch Keras, SKLearn, Pandas.Experience in developing text analysis solutions involving Named Entity Recognition, Relationship Extraction, chatbots, and Question and Answering systems is a bonus.Experience and passion on machine learning, deep learning and AI are preferable.Smart and hardworking individual who can work under pressure within a tight deadline.A good team player with can-do attitude.Solid communication skills and problem-solving skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-ai-ml-text-analysis-computing-and-intelligence-ihpc-10124057?jobId=jobstreet-sg-job-10124057§ionRank=357&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Principal Analyst, Data Management, Office of Insights and Analytics'}, {'company_name': 'Singapore Health Services Pte Ltd (SingHealth HQ)'}, {'small_section': ['Bukit Merah', 'Posted on 27-Oct-22']}, {'Job Requirements': 'Masters or Bachelor Degree in Computer Science, Computer Engineering, Business Analytics, Information System, System Engineering or other relevant quantitative disciplines..At least 7 years of hands-on experience in data management, data architecture and data modeling. Candidates with additional years of experience may be considered for the Senior Principal Analyst position..Prior experience in Healthcare is an advantage..Working experience in data lake related technologies, building and optimising big data pipelines, building processes supporting data transformation and automated metadata capture..Strong knowledge of database structure systems and the DataOps methodology..Proficient in software languages such as SQL, R, Python and database reporting tools..Strong problem-solving and quantitative computational skills.Strong written and oral communication skills.Desire to grow and help others grow in technical competencies.Meticulous and able to work effectively both independently and in a team.Passionate in contributing to public healthcare.Must be fully vaccinated against COVID-19.'}, {'Career Level': 'Senior Manager', 'Qualification': 'Not Specified', 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200002698Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '17 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts), Subject to Designation'}, {'Company Overview': 'SingHealth is the largest public healthcare cluster in Singapore. At our Headquarters, we focus on cluster-wide, strategic core functions for the organisation and work closely with our institutions and care teams to facilitate excellent care for our patients.We offer a diverse variety of roles that you can fulfil your career aspirations in. You can choose from different domain areas such as medical and clinical services, regional health system, research, education, organisational transformation and informatics, as well as corporate services including operations, finance, human resources, legal and communications. These comprise healthcare administration roles and other unique jobs such as genetic counsellors and clinical research nurses.'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-analyst-data-management-office-of-insights-and-analytics-10057347?jobId=jobstreet-sg-job-10057347§ionRank=358&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Job Requirements
[{'position': 'Associate IT Business Analyst (Data Warehouse & Robotic Process Automation)'}, {'company_name': 'OMRON Asia Pacific Pte Ltd'}, {'small_section': ['Queenstown', 'Posted on 6-Nov-22']}, {'Key Roles and Responsibilities': 'Provide daily support and maintenance of IT systems (e.g. data warehouse, BI etc) implemented across various business units throughout the Asia Pacific region..Proactive in carrying out root cause analysis to identify the data gap and issues.Work with the team to develop a detailed understanding of the existing process and recommend technology and solutions and services to further improve efficiency and productiveness..Participate in UAT and training for users for projects implementation and any change request..Provide analytic and design on data base schema and relationship for performance improvement.Translate business requirement into functional requirement for IT vendor. Verified the technical functional specification given by vendor against business requirement..Any other tasks as assigned by the IT manager.', 'Job Requirements:': 'Diploma or Degree in Information Technology or related discipline.No working experience is required.Good understanding in data warehouse management and Robotic Process Automation (RPA) application.Strong in database relationship and mssql scripting.Experience with usage of ERP, BI systems, MSSQL.Knowledge on JDE , Microstrategy and ETL has added advantage.Excellent communication & interpersonal skills.Computer literate and familiar with Microsoft Office Applications.Independent and result orientated with high personal drive to succeed.Excellent analytical, communication, interpersonal and presentation skills.Fast and strong understanding on business processes and requirement is essential..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198803457N', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '14 days', 'Industry': 'Manufacturing / Production', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties)'}, {'Company Overview': "From micro-relays to advanced sensors, Omron Asia Pacific’s Industrial Business Group offers the industry’s most complete line of advanced, high-quality products to meet the needs of its customers. These products can be found in both consumer products and commercial applications. Omron relays and switches play an important role in the operation of household appliances, automobiles and machinery. Temperature control devices ensure the efficiency of heating and air-conditioning devices as well as monitor annealing ovens on manufacturing lines. Sensors and programmable controllers automate control on manufacturing lines. For all these products, Omron works with customers to create effective, cost-efficient solutions.\n\nOMRON is proud to be a global leader in advanced automation, Sensing and Control Technology, and home healthcare. For the last 80 years, we have delivered solutions in areas like security, safety, health management, and the environment. We do so by identifying the needs of society and designing products to solve them quickly.\nWe are constantly tracking the emerging needs of a more optimised world, creating new ideas and innovations in response. So we may engineer a better future, a better community, and a better life for all.\nThis, we believe, is where the true power of technology lies.\nOmron Principles\nOmron Principles represent our unchanging, unshakeable beliefs.\nThe Omron Principles are the cornerstone of our decisions and actions. They are what binds us together,\nand they are the driving force behind Omron’s growth.\n\nOur Mission\nTo improve lives and contribute to a better society\nOur Values\n\nInnovation Driven by Social Needs\n\nBe a pioneer in creating inspired solutions for the future\n\n\nChallenging Ourselves\n\nPursue new challenges with passion and courage\n\n\nRespect for All\n\nAct with integrity and encourage everyone's potential\n\n\n\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/associate-it-business-analyst-data-warehouse-robotic-process-automation-10089534?jobId=jobstreet-sg-job-10089534§ionRank=359&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Key Roles and Responsibilities
[{'position': 'Research Associate, (Computer Science) [R00006380]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Preprocess real brain imaging data for further analytical tasks.Perform literature review and background study on graph analytics for brain network analysis.Design new Data Mining & Machine Learning techniques for brain network analysis; develop/implement prototypes of the solutions, and validate their effectiveness empirically.Publish the research work in conferences and journals.', 'Job Requirements:': 'Possess Master degree in Computer Science, or a related discipline with a focus on Machine Learning, Data Mining, or Statistics.Experiences in designing and developing graph analytics and/or brain network analysis technologies.Good programming skills in e.g., Python, Matlab, C++, etc.Good interpersonal skills.Excellent teamwork awareness.Good communication and writing in English.Strong research experience/track record will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-%5Br00006380%5D-10134891?jobId=jobstreet-sg-job-10134891§ionRank=360&token=0~110564bd-677d-47b4-a356-600029ccdd78&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Machine Learning Engineer, Sensors & Machine Learning Lab (5722)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Machine Learning Engineer, Sensors & Machine Learning Lab': '', 'Responsibilities:': 'Design, develop\xa0&\xa0deploy customised and scalable ML algorithms as part of the end-to-end AI/ML pipeline. Application areas include video analytics, knowledge graph/NLP, predictive data analytics and anomaly detection..Optimise\xa0&\xa0deploy ML algorithms on edge devices (Raspberry Pi, Jetson Nano, or similar SBCs) and cloud platforms (e.g. AWS)..Support Product Managers to engage business users to discover transformation opportunities, and propose ML solutions which could\xa0enhance operations, such as to\xa0raise productivity or enhance decision-making..Stay relevant in the latest technologies and trends in AI/ML. Drive the development of machine learning capabilities, including set up of sandboxes to facilitate ML development..Support company-wide initiatives to inspire and upskill colleagues..', 'Preferred Requirements:': 'At least 2 years of professional experience developing and deploying ML algorithms for enterprise applications, in areas such\xa0as\xa0video analytics,\xa0NLP,\xa0predictive data analytics\xa0and\xa0anomaly detection..Degree in computer science, engineering, or equivalent practical experience..Familiar with ML frameworks such as TensorFlow and PyTorch..Proficiency in Python programming is required. Familiarity with Amazon SageMaker would be advantageous..Passionate about technology and enthuse about solving challenging problems..Excellent team-player who can collaborate well with both internal stakeholders & external partners..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-sensors-machine-learning-lab-5722-10056621?jobId=jobstreet-sg-job-10056621§ionRank=363&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Machine Learning Engineer, Sensors & Machine Learning Lab
[{'position': 'RESEARCHER II (BIOLOGY)'}, {'company_name': 'Davos Life Science Pte Ltd'}, {'small_section': ['West - Others', 'SGD\xa05,000 - SGD\xa06,500', 'Posted on 1-Nov-22']}, {'Title:\xa0Researcher (Biology)': '', 'Reporting to: Head of Biological Research': '', 'Qualifications:': '', 'Experiences:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '200415927E', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '29 days', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Miscellaneous allowance, Medical, Regular hours, Mondays - Fridays, Smart Casual', 'Specific Location': 'Buona Vista'}, {'Company Overview': 'Davos Life Science (DavosLife) is a world leader in producing high quality Phytonutrients (Tocotrienols & Mixed Carotenes), marketed under the brand name DavosLife E3. DavosLife is a wholly owned subsidiary of Kuala Lumpur Kepong Berhad (KLK) which is one of the largest oil palm plantation and processing company publicly listed in Malaysia.\xa0It is also vertically integrated with KLK Plantations & KLK Manufacturing Division (KLK Oleo) for its supply of Palm Tocotrienols and Mixed Carotene. At DavosLife, our Scientists continually conduct research into the benefits of Tocotrienols and Mixed Carotenes in human health and nutrition, providing Brand Owners an evidence-based claims for their finished products.'}, {'url': 'http://www.jobstreet.com.sg/en/job/researcher-ii-biology-10122241?jobId=jobstreet-sg-job-10122241§ionRank=364&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Title: Researcher (Biology)
[{'position': 'Research Scientist [Diagnostics R&D/ West/ Up to $5.5k]'}, {'company_name': 'Good Job Creations (Singapore) Pte Ltd'}, {'small_section': ['West', 'SGD\xa03,500 - SGD\xa05,500', 'Posted on 28-Oct-22']}, {'[Order Number: ': '', '2210-63330': '', ']': '', 'Responsibilities': 'The company is looking for an experienced Research Scientist to assist with product development related to the diagnosis of infectious diseases..The successful candidate should be a good team player, a fast learner, and able to conduct independent research with excellent analytical, technical, and problem-solving skills..Perform data analyses & interpretation, and report writing.', 'Requirements': 'Expertise in molecular biology techniques like DNA/RNA manipulation and amplification..Expertise/Experience in aptamers or antibodies..Experience in a point-of-care device or cartridge development..Experience in microbiology and cell culture techniques such as bacteria, fungi, or virus isolation..2 to 5 years of experience in industry or diagnostics R&D is advantageous.Skills in bioinformatics analysis would be advantageous.'}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '200618166E', 'EA No.': '07C5771', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '7 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGood Job Creations Singapore (License Number: 07C5771) provides total HR solutions with core values of customer focus, teamwork, professionalism and contribution to the society and our clients. Our vision is to create opportunities for Asian talents in Singapore and across the region. For more information, visit us at www.goodjobcreations.com.sg\n\n\tGOOD JOB CREATIONS (SINGAPORE) PTE. LTD.\n\n\tEA License No.: 07C5771\n\tKimiya Shibazaki\n\tRegistration NO.: \u200bR1325719\n\n\tWe agree to protect all personal information and contact details sent to us via your resume according to the Personal Data Protection Act (PDPA) with effect from 2nd July 2014.\n\tAll information collected is strictly for the purpose of processing your job application and internal administrative use.\xa0\xa0\n\tBy sending your resume to us, you acknowledge your consent to the collection and use of your personal data for the above purposes only.\xa0\xa0\xa0\xa0\n\n\tOur Company’s Privacy Policy:\n\thttp://www.goodjobcreations.com.sg/en/privacy/\n\n\tDo not hesitate to contact our officer if you have further queries with regards to the Personal Data Protection Act.\n\tData Protection Officer: Mr. Kimiya Shibazaki\n\tContact: +65 6258 8051\n\n\t[*PDPA clause]\n\n\tYour data may be used by our affiliated companies under WILL Group Asia Pacific (https://willgroup.co.jp/en/index.html) for the sole purpose of recruitment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-%5Bdiagnostics-r-d-west-up-to-%245.5k%5D-10113246?jobId=jobstreet-sg-job-10113246§ionRank=365&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
[Order Number:
[{'position': 'Audit Analytics - Associate/Senior'}, {'company_name': 'Deloitte & Touche LLP'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Title:': '', 'What impact will you make?': '', 'Work you’ll do': '', 'Typical tasks will include:': 'Perform tasks requiring a degree of problem solving and the ability to understand basic accounting concepts. (trainings available).Carry out data quality checks and alerts if errors occur..Manage a portfolio of advisory and audit analytics projects, ensuring tasks are being done on time and in an efficient and accurate manner..Assist with data extraction tasks from various external ERP systems..Perform in-depth data analysis as part of the standard audit analytics packages and develop custom solutions to solve complex questions..Understand the drivers of a business, analyze their data, and use this to provide insight and advice to our clients.', 'Your role as a leader': 'Understand the expectations set and demonstrates personal accountability for keeping own performance on track..Understand how our daily work contributes to the priorities of the team and the business..Demonstrate strong commitment to personal learning and development..Actively focus on developing effective communication and relationship-building skills, with stakeholders, clients and team..Work effectively in diverse teams within a highly inclusive team culture where everyone is supported, respected and recognized for their contribution..', 'Requirements': 'Degree holder, preferably in Computer Science, Mathematics or Science related..Hands on experience with tools such as:.Database technology (Preferably MS SQL).Visualization software such as Qlik /Tableau/ Power BI.Python and/or R.RPA technology such as Alteryx/UiPath.Knowledge on ETL (Extract, Test, Load) processes from source systems, and provide preliminary descriptive analytics findings to business challenges.Able to handle data ambiguity and demonstrated critical thinking skills.Strong interpersonal skills (verbal and written) and the ability to work in a team with an attention to details.', 'Additional Requirements that are considered as an asset': 'Proficient with fundamental front end languages such as HTML, CSS and JavaScript.JavaScript frameworks such as Angular JS and React.Proficient with server-side languages such as JavaScript and .Net.Developing front-end website architecture, designing user interactions on web pages and developing back end website applications..', 'Due to volume of applications, we regret only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Audit & Taxation', 'Registration No.': 'T08LL0721A', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '28 days', 'Industry': 'Accounting / Audit / Tax Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\n\t\t\tDeloitte refers to one or more of Deloitte Touche Tohmatsu Limited (“DTTL”), its global network of member firms, and their related entities (collectively, the “Deloitte organisation”). DTTL (also referred to as “Deloitte Global”) and each of its member firms and related entities are legally separate and independent entities, which cannot obligate or bind each other in respect of third parties. DTTL and each DTTL member firm and related entity is liable only for its own acts and omissions, and not those of each other. DTTL does not provide services to clients. Please see www.deloitte.com/about to learn more.\n\n\t\t\tDeloitte is a leading global provider of audit and assurance, consulting, financial advisory, risk advisory, tax & legal and related services. Our global network of member firms and related entities in more than 150 countries and territories (collectively, the “Deloitte organisation”) serves four out of five Fortune Global 500® companies. Learn how Deloitte’s approximately 312,000 people make an impact that matters at www.deloitte.com.\n\n\t\t\tDeloitte Asia Pacific Limited is a company limited by guarantee and a member firm of DTTL. Members of Deloitte Asia Pacific Limited and their related entities, each of which are separate and independent legal entities, provide services from more than 100 cities across the region, including Auckland, Bangkok, Beijing, Hanoi, Ho Chi Minh City, Hong Kong, Jakarta, Kuala Lumpur, Manila, Melbourne, Osaka, Shanghai, Singapore, Sydney, Taipei, Tokyo and Yangon.\n\n\t\t\tAbout Deloitte Singapore\n\t\t\tIn Singapore, services are provided by Deloitte & Touche LLP and its subsidiaries and affiliates.\n\n\t\t\tDeloitte & Touche LLP (Unique entity number: T08LL0721A) is an accounting limited liability partnership registered in Singapore under the Limited Liability Partnerships Act (Chapter 163A).\n\n\t\t\tThis communication contains general information only, and none of Deloitte Touche Tohmatsu Limited (“DTTL”), its global network of member firms or their related entities (collectively, the “Deloitte organisation”) is, by means of this communication, rendering professional advice or services. Before making any decision or taking any action that may affect your finances or your business, you should consult a qualified professional adviser.\n\t\t\n\t\tNo representations, warranties or undertakings (express or implied) are given as to the accuracy or completeness of the information in this communication, and none of DTTL, its member firms, related entities, employees or agents shall be liable or responsible for any loss or damage whatsoever arising directly or indirectly in connection with any person relying on this communication. DTTL and each of its member firms, and their related entities, are legally separate and independent entities.\n\t\t\n\t\t\t© 2020 Deloitte & Touche LLP\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/audit-analytics-associate-senior-10090911?jobId=jobstreet-sg-job-10090911§ionRank=366&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Title:
[{'position': 'Analyst, Sales Support Desk'}, {'company_name': 'MUFG Bank, Ltd'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Responsibilities:': 'Provide regional analytical support to Global Markets Sales Team in Singapore.Develop visualization tools such as Power BI, Tableau for statistical analysis.Develop and maintain automated BI Dashboards for Sales Team to make short- and long-term decision making..Design and optimize databases by performing data mining on various data sources and ensure data integrity..Improve reporting workflow by automating processes for pulling and loading of data..Prepare charts and report to effectively communicate the insights gained from the data..', 'Job Requirements:': "Bachelor's Degree in Information Technology, data analytics, data science or related disciplines..Experience in designing BI dashboard and data visualization tools. (Tableau, Power BI etc).Experience manipulating with large and complex dataset and sources..Programming language for data analysis (SQL, Python, DAX etc).Possess strong interpersonal and analytical skills..Proficient in Microsoft Excel, Macros, and Excel VBA to support users and automation of reports will be advantageous.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': 'S73FC2287H', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\nAbout MUFG Bank, Ltd\n\n\nMitsubishi UFJ Financial Group, Inc. (MUFG) is one of the world’s leading financial groups. Headquartered in Tokyo and with over 360 years of history, MUFG has a global network with around 3,000 locations in more than 50 markets. The Group has over 180,000 employees and offers services including commercial banking, trust banking, securities, credit cards, consumer finance, asset management, and leasing.\nThe Group aims to “be the world’s most trusted financial group” through close collaboration among our operating companies and flexibly respond to all of the financial needs of our customers, serving society, and fostering shared and sustainable growth for a better world. MUFG’s shares trade on the Tokyo, Nagoya, and New York stock exchanges.\nMUFG Bank, Ltd. is Japan’s premier bank, with a global network spanning more than 50 markets. Outside of Japan, the bank offers an extensive scope of commercial and investment banking products and services to businesses, governments and individuals worldwide.\nFor more information, visit https://www.mufg.jp/english.\n\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/analyst-sales-support-desk-10101078?jobId=jobstreet-sg-job-10101078§ionRank=367&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Engineer - (Machine Learning/Computer Vision) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Conduct research on deep learning and visual scene understanding.Develop novel algorithms for visual recognition and scene understanding.Develop computer vision systems.Write technical reports and research papers.', 'Job Requirements:': 'Master’s degree in Computer Science, Computer Engineering or related subjects.Research experience in visual recognition, scene understanding and deep learning.Excellent computer programing skills for machine learning and computer vision systems.Familiar with deep learning frameworks such as PyTorch.Strong responsibility for research/work.We regret that only shortlisted candidates will be notified..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-computer-vision-urgent-10135667?jobId=jobstreet-sg-job-10135667§ionRank=369&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Research Scientist B, - R00008964'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 29-Oct-22']}, {'Senior Research Scientist B (Electrical & Electronics Engineering/Material Science/Physics/Chemistry)': '', 'Job Responsibilities': 'To develop III-V compound semiconductor-based LDs and its integration with external switches.Formulate and execute DOEs for process development/process optimization.Sourcing of required equipment/tool for the fabrication of LDs and its testing.Design of Epi-layer design, Layout, process steps and recipes for the fabrication of LDs.Prepare the run-sheets for the full fabrication of LDs up to the level of packaging.Work with the Fab manager/module leaders for the smooth flow of LD fabrication.Contribute to research reports for project deliverables, new project proposal drafting and etc....Perform other duties related to optical devices and its integration or assigned by higher management.Preparing process documentations with the standard of ISO 9001:2015 or ISO 9001:2018.', 'Job Requirements': 'PhD with 4 years of relevant experience in either Electrical & Electronics Engineering/ Material Science/Physics/Chemistry or Other related field.Strong technical knowledge with hands-on experience in III-V compound semiconducting materials and its optical devices (e.g. Junction diodes, Transistors, Switches, and etc…).Skills to initiate and design mask layout as necessary for new device geometries.Knowledge in developing new processes to improve the overall performance of LDs and Qualify processed wafers for engineering and new product development programs.Capability to work with process team to develop improved processes for the fabrication of LDs and switches.Knowledge in monitoring engineering process and analyze process and device data.Skills to analyze and correlate processed data with device performance.Participate in Engineering team meetings, Program Status meetings and Design Review meetings as necessary.', 'We regret to inform that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-b-r00008964-10066768?jobId=jobstreet-sg-job-10066768§ionRank=370&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Senior Research Scientist B (Electrical & Electronics Engineering/Material Science/Physics/Chemistry)
[{'position': 'Lecturer/Senior Lecturer, - Data Analytics #WorkNow #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Singapore'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/lecturer-senior-lecturer-data-analytics-worknow-urgent-10127447?jobId=jobstreet-sg-job-10127447§ionRank=371&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
[{'position': 'Bioinformatics Specialist, Lab of Cancer Epigenetic Regulation, GIS'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Skills/Background': 'Qualification: Bachelor or Master of Science in a Computer Science/ Biology related field (e.g. Bioinformatics, computer science, statistics, computational biology, genetics, etc.)..Candidates with and without work experience will be considered..', 'Skills:': 'In depth knowledge on Next Generation Sequencing (NGS)..Strong programming skills (R and/or Python preferred). Experience with tools such as RStudio and Jupyter will be valuable..Experience with next generation sequencing data analysis (e.g. whole-exome/whole-genome sequencing, RNA-seq, scRNA-seq, MethylSeq etc.), especially for human cancers will be advantageous..Skills related to machine learning and statistical modelling on heterogenous genomics datasets will be advantageous..Exceptional data analysis, interpretation, and troubleshooting skills..Ability to work both independently and as a part of the team..Excellent communication and team management skills..Ability to work as per ISO requirement will be advantageous..', 'Responsibilities:': 'Familiar with the regulatory requirements specific to the lab..Be highly organized, able to multi-task, and pay close attention to details..Ability to accept direction from reporting officer and work in a collaborative manner to achieve development goals is important..Experience with next generation sequencing techniques (e.g. ChIP-Seq, ATAC-Seq, RNA-seq etc).Analysing sequencing data for the development of cancer diagnostic tests (eg. RNA-Seq, ChIP-Seq)..Analyzing the genomics data to obtain insights on 1) predict risk of cancer development and cancer progression and 2) provide personalized, molecularly-driven therapeutic recommendations..Collaborating with clinicians and scientists by contributing bioinformatics expertise..Assume responsibility of building, enhancing, and curating in-house databases of seqeuncing data drawing from both internal and external data sets (e.g. exome/genome/transcriptome sequencing etc)..Report to Post Doctoral Fellows on the outcome of results and data..Resolve problems by consulting with Post Doctoral Fellow and PI..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/bioinformatics-specialist-lab-of-cancer-epigenetic-regulation-gis-10096949?jobId=jobstreet-sg-job-10096949§ionRank=372&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Skills/Background
[{'position': 'Assistant Director'}, {'company_name': 'National University Health System'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Basic purpose of the position': 'Identify desired business insights; define, prioritize and align on analytics to be generated and analytical activities required.Lead and harmonise the manpower planning, budgeting, monitoring and reporting process across all the Institutions. Monitor implementation of the manpower plans at Institutions..Carry out organization studies, work measurements and modelling to determine workloads and advise on optimal staffing requirements..Prepare overall manpower projections taking into consideration strategic directions, growth plans and productivity targets..Ensure that manpower requisitions and staff movements are in accordance with the approved manpower budgets..Prepare manpower reports for senior management oversight and reporting..Partner with Group Finance and Institutions to consolidate the Institutions’ manpower budget and staffing level at Group level..', 'Required Skills': '', 'Special Skills': 'At least 8-10 years of experience in manpower planning and headcount forecasting and financial budgeting with strong ability to summarise, visualise, and present data for decision making.Proven experience in manpower analyst, benchmarking, trending and statistical reporting, ensuring optimal performance..Has good understanding of HR systems and business intelligence databases..Possess Analytical skills essentially for reviewing, analyse data and information, and making appropriate recommendation for improvement..Experience in developing and utilising predictive analytics and statistical modelling will be an added advantage..Skills in support tools (tableau, macro excel) and knowledge of database management..', 'Competencies Critical for the Success of this Position': 'Outcome driven customer centric mind-set, able to drive decisions through co-ordination with management..Creative problem solver with a high degree of comfort in analysing different/complex types of data and data evaluation metrics..Strong communication, negotiation and influencing skills to deal effectively with senior colleagues in all parts of the organisation and Institutions..Has the ability to multi-task and complete numerous tasks within deadlines.\xa0 Pro-active and has a “Can Do” attitude. Comfortable with ambiguity..Leadership skills to manage a team of 3 and to provide direction and guidance to build and develop direct reports professionally..Ability to work effectively in a fast-pace environment and adapt to rapid changes in information and meeting tight deadline..'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Admin/Human Resources, Human Resources', 'Registration No.': '200801778C', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\t\tAbout the National University Health System (NUHS)\n\n\n\tSpanning three acute hospitals, two community hospitals, three national centres, six polyclinics, three family medicine clinics, and three health science institutions, our unique and comprehensive ecosystem anchors NUHS as a leading academic health system in Singapore – driven by research and education.\n\t\n\t\tInspired by our patients and the population that we serve, our strong network of talents and resources across our institutions provide patient-centred care across the whole continuum - improving health and driving transformation from primary, tertiary to complex care. In close collaboration with our community partners, we aim to deliver “Incredible Care and Health, Together”!\n\t\n\tMembers of the NUHS:\n\t• National University Hospital\n\t• Ng Teng Fong General Hospital\n\t• Alexandra Hospital\n\t• Jurong Community Hospital\n\t• National University Polyclinics\n\t• National University Cancer Centre, Singapore\n\t• National University Heart Centre, Singapore\n\t• National University Centre for Oral Health, Singapore\n\t• NUS Yong Loo Lin School of Medicine\n\t• NUS Faculty of Dentistry\n\t• NUS Saw Swee Hock School of Public Health'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-director-10085151?jobId=jobstreet-sg-job-10085151§ionRank=373&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Basic purpose of the position
[{'position': 'Senior Software Engineer (Big Data Platform Application) - (220000QI)'}, {'company_name': 'The Great Eastern Life Assurance Co Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'The Job': 'Provide support for big data applications (on-premises and private cloud) directly and via triage to 3rd party support vendors where appropriate..Write functional and technical documentation for applications..Engage in Database Administration / Maintenance tasks on big data platform for testing purposes..Respond to business user requests for change\xa0(RSA) in application functional capabilities and engage with technical leadership on business demand for feature development..Participate in Projects involving application or data components as a SME..Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..', 'Our Requirements': 'Create and maintain optimal data pipeline architecture..Combine raw information from different sources..Work with business and internal teams to identify business needs and opportunities..Develops a deep understanding of how data is used by the business, and to add semantic meaning to a data catalog, to accelerate high-value datasets, to blend datasets together and to create actionable insights for the stakeholders..Undertake pre-processing of structured and unstructured data..Analyze large amounts of information to discover trend and patterns..Ensure data compliance and accuracy..Present information using data visualization techniques..Setup relevant set of dashboards to provide information for the business and influence decision..Organize and consolidate various set of data internal/external, quantitative/qualitative and liaise with the different internal system to maximize the usage of all set of data..Work closely with stakeholders to identify and propose system enhancement and process improvement on the data collection..Communicate and present technical information to non-technical stakeholders..High level of integrity, takes accountability of work and good attitude over teamwork..Takes initiative to improve current state of things and adaptable to embrace new changes..', 'About Great Eastern': '', 'To all recruitment agencies:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '190800011G', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Insurance'}, {'Company Overview': '\n\tFounded in 1908, Great Eastern is a market leader and a well-established trusted brand in Singapore and Malaysia. With S$82.5 billion in assets and over 4 million policyholders, the Group also operates in Indonesia and Brunei and has a presence in China as well as a representative office in Myanmar.\n\n\tThe Great Eastern Life Assurance Company Limited and Great Eastern General Limited have been assigned the financial strength and counterparty credit ratings of "AA-" by Standard and Poor\'s since 2010, one of the highest among Asian life insurance companies.\n\n\tWe are a LIFE company and our purpose is to empower generations to live healthier and better so that they can live life to the fullest. Be it celebrating life’s simple moments or commemorating life’s major milestones, every day, in many ways, we inspire those around us to live great and celebrate life.\n\n\tPlease note that our career opportunities are only posted on our Career Website (http://grp.gelife.co/findacareer) and on our authorised job platforms which are specifically LinkedIn, JobStreet and eFinancialCareers. We do not initiate any unsolicited calls and all official emails from Great Eastern will be sent from email addresses ending with “@greateasternlife.com”. Should you receive any communications outside from these channels listed, please do not provide any personal information and do reach out to us at [email\xa0protected] or at 6248 2990 for us to assist you and confirm the legitimacy of the content.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-software-engineer-big-data-platform-application-220000qi-10104535?jobId=jobstreet-sg-job-10104535§ionRank=374&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
The Job
[{'position': 'Research Fellow - (Computer Science), - (R00005157)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Preprocess real brain imaging data for further analytical tasks.Perform literature review and background study on graph analytics for brain network analysis.Design novel and effective Data Mining & Machine Learning techniques for brain network analysis.Develop/implement prototypes of the solutions, and validate their effectiveness empirically.Publish the research work in conferences and journals.', 'Job Requirements:': 'A PhD degree in Computer Science or a related discipline with a focus on Machine Learning, Data Mining or Statistics.Experience in designing and developing graph analytics and/or brain network analysis technologies.Good programming skills in e.g. Python, Matlab, C++, etc.Good interpersonal skills.Excellent teamwork awareness.Good communication and writing in English.Strong research experience will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-r00005157-10134862?jobId=jobstreet-sg-job-10134862§ionRank=375&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow, - (Data Science, Blood Sugar Dynamics/Diabetes) - (R00010120)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Description:': 'Conduct cross-disciplinary research in monitoring of diabetic condition in healthy and affected individuals. This involves analysis of the continuously measured blood sugar concentration dynamics in diabetics, pre- and none-diabetic individuals. Correlation of these measurements with food nutritional composition and the individuals’ psychological and physical life-stress levels.\xa0 Collaborate with metabolic disease researchers from NTU LKC School of Medicine and TTS Hospital Singapore..Take part in current initiatives in SG health care and digital wellbeing. This project is specifically focused on providing advice for elderly people with type 1 and 2 diabetes and pre-diabetic condition and development of personal data-based dietary recommendations assisting with the decision making process such as insulin injections, food type and nutrition, exercises.\xa0 Collaborate with Temasek Centre for Applied Nutrition Services & Glycemic Index Research Unit. \xa0.', 'Job Requirements:': 'PhD in biology, bioinformatics, metabolic diseases, nutrition, or related fields. This position also welcomes applicants with qualifications at MSc or BSc level (to be offered at Research Associate or Project Officer, respectively), if the right experience, technical qualifications, and expertise is met..Prior research experience..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-science-blood-sugar-dynamics-diabetes-r00010120-10077866?jobId=jobstreet-sg-job-10077866§ionRank=376&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Senior Data Engineer (Blockchain/Digital Wallet)'}, {'company_name': 'Michael Page International Pte Ltd'}, {'small_section': ['Central', 'SGD\xa013,000 - SGD\xa018,000', 'Posted on 2-Nov-22']}, {'Qualified Lead/Senior Data Engineer': '', 'leading a data team': '', 'Client Details': '', 'Well-Established Series B': '', 'block-chain technology': '', 'headquartered in Singapore': '', 'Description': '', 'Lead/Senior': '', 'Data Engineer,': 'You will be building data warehouse, data mart and providing data service for the stakeholders.You are responsible for database architecture and designing.Build dashboard to support metrics tracking and decision making.Build up block-chain data query capabilities..', 'Profile': '', ' Qualified Lead/Senior data engineer,': '', '8 years': '', 'data engineering': '', 'Leadership ': '', ' people management': '', 'Job Offer': 'Chance to pioneer the team in Singapore.Excellent compensation package with stock option.Work-life balance with flexible work arrangement.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199804751N', 'EA No.': '90C4069', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tMichael Page International is a leading professional recruitment consultancy specialising in the recruitment of permanent, contract and temporary positions on behalf of the world¦s top employers. Now, after more than 40 years in the recruitment market, we have secured our position as leaders in international recruitment and hiring. We currently have 140 offices that create a network that spans 36 countries around the world, with strong opportunities for more growth within Asia Pacific.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-engineer-blockchain-digital-wallet-10125766?jobId=jobstreet-sg-job-10125766§ionRank=377&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Qualified Lead/Senior Data Engineer
[{'position': 'Senior Executive / Assistant Manager (Data), NCIS'}, {'company_name': 'National University Hospital'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Overview': '', 'Job Responsibilities': '', 'Primary Responsibilities and Duties (70%)': 'Working with stakeholders and users, perform data analysis and trending observations to drive projects and improvement initiatives..Ensure proper extraction, validation and storage of data from various systems..Conceptualise and develop operational dashboards to meet the business needs and to provide quality oncology care..Work with the team to design and architect the workflow of the data and algorithms including data input, output and storage between various health IT systems..Perform data analytics and/or data mining from various systems..Collate clinical and management information for the department and hospital..Provide regular updates highlighting concerns to Section Heads and Head of Department..', 'Secondary Responsibilities and Duties (30%)': "Manage IT projects and/or new system implementation..Oversee design, development and maintenance of in-house application systems..Track department's servers, workstations and end-user equipment..Collate annual budget for IT systems, equipment and software. Coordinate acquisition and implementation..Assess operational needs, and recommend and implement IT solutions..Oversee Informatics team and ensure staff meet KPIs..Perform other assignments as delegated by Sections Head and Head of Department..", 'Requirements': 'A recognised degree in Mathematics, IT or Data Analytics with at least 4 years of relevant experience or diploma in IT or Data Analytics with 6 years relevant experience.Good system and data analysis and reporting skills.Good organisational and interpersonal skills.Practical knowledge of hospital operations, medical systems/applications, data analytics would be an advantage.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '198500843R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Depending on job position, Depending on job position'}, {'Company Overview': '\n\tThe National University Hospital (NUH) is a member of the National University Health System (NUHS), a leading academic health system and one of three public healthcare clusters in Singapore.\n\n\tAs Singapore’s first restructured hospital, NUH has been serving more than a million patients annually since 1985. NUH is a tertiary hospital with a comprehensive suite of specialist care for adults, women and children, and a major referral centre with over 50 medical, surgical and dental specialties. It is the only public hospital in Singapore to offer a paediatric kidney and liver transplant programme, in addition to kidney, liver and pancreas transplantation for adults.\n\n\tAs part of an integrated academic health system, NUH is committed to transforming care, shaping the next generation of healthcare professionals and leveraging translational research to improve health outcomes. The hospital is also the principal teaching hospital for the NUS Yong Loo Lin School of Medicine and the NUS Faculty of Dentistry.\n\n\tFor more information, please visitwww.nuh.com.sg | www.nuhs.edu.sg\n\n\tDelivering‘Incredible care and health, together!’\n\n\tMembers of the NUHS:\n\n\n\t\tNational University Hospital\n\n\t\tNg Teng Fong General Hospital\n\n\t\tAlexandra Hospital\n\n\t\tJurong Community Hospital\n\n\t\tNational University Polyclinics\n\n\t\tNational University Cancer Centre, Singapore\n\n\t\tNational University Heart Centre, Singapore\n\n\t\tNational University Centre for Oral Health, Singapore\n\n\t\tNUS Yong Loo Lin School of Medicine\n\n\t\tNUS Faculty of Dentistry\n\n\t\tNUS Saw Swee Hock School of Public Health\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-executive-assistant-manager-data-ncis-10039870?jobId=jobstreet-sg-job-10039870§ionRank=378&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Overview
[{'position': 'Senior Software Engineer / Tech Lead (AICET) 1'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Description': '', 'Qualifications': '', 'The candidate should possess:\xa0': 'A or post .\xa0.A team player with excellent communication, interpersonal and leadership skills, and the ability to build a collaborative working relationship with people at all levels.\xa0.Has experience leading a small team of software engineers.\xa0.Familiarity with web development with modern tech stacks and technologies like Ruby on Rails, nodejs, Golang, React, and JavaScript/TypeScript.\xa0.Experience with AI and/or ed-tech platforms and system will be a bonus.\xa0 \xa0.', 'More Information': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-software-engineer-tech-lead-aicet-1-10114701?jobId=jobstreet-sg-job-10114701§ionRank=380&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': '2023 Digital Innovation Summer Internship - Singapore'}, {'company_name': 'HSBC Limited'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Singapore': '', 'Requirements:': '', 'What you’ll do': '', 'Who you are': '', 'What you’ll learn': []}, {'Career Level': 'Entry Level', 'Qualification': 'Not Specified', 'Job Type': 'Internship', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': 'S16FC0010A', 'Company Size': 'More than 5000 Employees', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties)'}, {'Company Overview': '\n\nAbout HSBC\n\n\t\tAs one of the world’s leading international banks, HSBC was founded in 1865 and has two home markets - Hong Kong and London. The HSBC Group opened its first branch in Singapore in 1877.\xa0 HSBC Singapore provide personal, private, commercial and investment banking services including areas such as insurance, forfaiting, trusts, securities and capital markets.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/2023-digital-innovation-summer-internship-singapore-10074831?jobId=jobstreet-sg-job-10074831§ionRank=381&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Singapore
[{'position': 'Solution Architect, Data'}, {'company_name': 'NCS Pte Ltd'}, {'small_section': ['North-East', 'SGD\xa06,000 - SGD\xa012,000', 'Posted on 5-Nov-22']}, {"ClayOPS is a venture acquired by NCS as of 9 September 2021. Working location for this position would be at ClayOPS' office at 6 Harper Road.": '', 'ClayOPS': '', 'Data Solution Architect': '', ' -\xa0': '', 'Responsibilities:': 'Work with BD team to identify opportunities to engage prospective and existing clients on Data & Analytics solutions.Translate business requirements to technical solutions leveraging strong business acumen..Analyse current business practice, processes, and procedures as well as identifying future business opportunities for leveraging Data & Analytics solutions on various platforms.Develop solution proposals that provide details of project scope, approach, deliverables and project timeline.Co-develop pricing for the solution proposals.Research and experiment new technologies and identify opportunities to include them into ClayOPS portfolio of Data Analytics capabilities.Develop new solutions and accelerators that help to deploy our Data Analytics services at scale.Provide architectural expertise to sales, project and other analytics teams..Help develop playbooks, standardized framework, practice guides and other artefacts that will allow our practitioners perform their work in a structured, standard manner.Identify risks, assumptions, and develop pricing estimates for the Data & Analytics solutions.Provide solution oversight to delivery architects and teams.Plan, design and setup Data Analytics platforms in customer data centres or on the cloud.Design and implement relevant data models.Architect data pipelines to bring information from source systems, harmonise and cleanse data to support analytics initiatives for core business metrics and performance trends.Work closely with project manager and technical leads to provide regular status reporting and support them to refine issues/problem statements and propose/evaluate relevant analytics solutions.Work in teams that combine technical, business and data science competencies that deliver work in waterfall or agile software development lifecycle methodologies.Mentoring to upskill peers and juniors.', 'What do you need to succeed?': "Possess good communications skills to understand our customers' core business objectives and build end-to-end data centric solutions to address them.Good critical thinking and problem-solving abilities.", 'The ideal candidate:': 'Masters / Degree / Diploma in Computer Science / Information Technology, Electrical / Electronic, Information Systems or equivalent discipline.Min 5 years of IT experience.At least 1 year of Business Intelligence Solution Deployment.Prior experience building large scale enterprise data pipelines using commercial Data Analytics platforms from vendors such as Microsoft, Amazon Web Services.Strong knowledge of data manipulation languages such as Spark, Scala, Impala, Hive SQL, Apache Nifi necessary to build and maintain complex queries, streaming and real-time data pipelines.Good appreciation and operational experience of infrastructure management and administrative tools and skillsets eg: Linux shells, Apache Ambari, YARN, to build scalable and resilient data platforms.Data modelling and architecting skills including strong foundation in data warehousing concepts, data normalisation, and dimensional data modelling such as OLAP.'}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199603123G', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '24 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Flexi Benefits, Business Casual'}, {'Company Overview': 'About NCS NCS is a leading technology services firm with presence in Asia Pacific and partners with governments and enterprises to advance communities through technology. Combining the experience and expertise of its 10,000-strong team across 66 specialisations, NCS provides differentiated and end-to-end technology services to clients with its NEXT capabilities in digital, cloud and platform as well as core offerings in application, infrastructure, engineering and cyber security. NCS also believes in building a strong partner eco-system with leading technology players, research institutions and start-ups to support open innovation and co-creation. For more information, visit ncs.co.'}, {'url': 'http://www.jobstreet.com.sg/en/job/solution-architect-data-10107024?jobId=jobstreet-sg-job-10107024§ionRank=382&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
ClayOPS is a venture acquired by NCS as of 9 September 2021. Working location for this position would be at ClayOPS' office at 6 Harper Road.
[{'position': 'Research Analyst (1 year renewable contract)'}, {'company_name': 'National Healthcare Group Polyclinics'}, {'small_section': ['West', 'Posted on 3-Nov-22']}, {'Requirements': 'Bachelor Degree with concentration in Statistics, Mathematics or other relevant areas..At least 1 year of experience in statistical work involving collection, compilation and interpretation of statistical data..Proficient in SPSS or STATA..Strong analytical skills with ability to summarize and present data accurately..Strong organization skills, meticulous, and able to work independently..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '52929305J', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '23 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Sports (e.g. Gym), Business (e.g. Shirts)'}, {'Company Overview': "\nNational Healthcare Group Polyclinics (NHGP) forms the primary healthcare arm of the National Healthcare Group (NHG). Its seven polyclinics serve a significant proportion of the population in the central and northern parts of Singapore.\n\n\tNHGP provides a comprehensive range of health services for the family, functioning as a one-stop health centre providing treatment for acute medical conditions, management of chronic diseases, women & child health services and dental care.\xa0 The focus of NHGP's care is on health promotion and disease prevention, early and accurate diagnosis, disease management through physician led team-based care as well as enhancing the capability of Family Medicine through research and teaching."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-analyst-1-year-renewable-contract-10102065?jobId=jobstreet-sg-job-10102065§ionRank=383&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Requirements
[{'position': 'Senior Sales Force Effectiveness Specialist / Pharma / Up to SGD 6,800/mth! #JobsThatMatter'}, {'company_name': 'Integrity Partners Pte. Ltd.'}, {'small_section': ['Central', 'SGD\xa05,500 - SGD\xa06,800', 'Posted on 5-Nov-22']}, {'Job roles:': '', 'Knowledge/Skills:': '', 'How to Apply:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201634573Z', 'EA No.': '17C8502', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Miscellaneous allowance, Long hours, Formal (e.g. Shirts + Ties)'}, {'Company Overview': '\n\n\t\tMeet Integrity. We’re a leading recruitment firm specializing in the areas of Life Sciences and Engineering with over 100 years of combined experience in the industry. We’ve helped recruit the most prized talent in a wide variety of Life Science and Construction sectors.\n\n\t\tWith 40% of our waking time dedicated to work, we know the vital importance of how smallest actions can create the biggest impact in people’s lives. This is exactly why our friendly team of skilled experts always prioritizes actions based on core values over personal gain.\n\n\t\tThe secret to our business is personal relationships. Because People Matter.\n\n\t\tWe’ve been very fortunate to assist with the recruitment of some of the most talented and dynamic talent for many of the largest and smallest employers. These are businesses who were in need of elite recruits who possessed specific talents, unique skills and other technical disciplines.\n\t\n\tReach out to us to to discover even more about how we can help you with all of your recruiting needs or your own career.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-sales-force-effectiveness-specialist-pharma-up-to-sgd-6-800-mth!-jobsthatmatter-10137692?jobId=jobstreet-sg-job-10137692§ionRank=385&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Job roles:
[{'position': 'FVP/VP, Marketing Analytics Development Lead - #LetsGetToWork'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Job Responsibilities': '', 'lead the solution architecture aspects of Data Analytics and Marketing Automation domain': '', 'define technology solutions for business requirements/capability roadmap': '', 'define the future architecture and application roadmap': '', 'Create/maintain': '', 'Influence': '', 'Monitor ': '', 'Collaborate across the technology organization': '', 'Drive change across the Data engineering team': '', 'architecture, design pattern, framework and new way of working': '', 'cross-bank technology initiatives': 'Functional knowledge of Retail bank, Wholesale, Global Markets, Finance, Risk and Compliance oriented products & business processes\xa0.', 'Functional knowledge of Retail bank, Wholesale, Global Markets, Finance, Risk and Compliance oriented products & business processes\xa0': '', 'Familiarity with Marketing Automation and Analytics solutions and technologies ': '', 'Job Requirements': '', 'Functional skillsets': 'Data source integration and event sourcing.Targeting and segmentation.Campaign and offer eligibility and prioritization.Channel integration and delivery.Closed loop analysis and fulfilment initiation.Request and approval process for the new campaigns/offers.Good business domain knowledge in the Financial Services industry.Complementing marketing automation platform with AI/ML based model integration.', 'Technical skillsets': 'Adobe Campaign. This should be based on hybrid solutions comprising both on-premise and cloud components.Adobe Analytics (good to have).Unica Campaign, SAS Marketing Automation, Salesforce Marketing Cloud (good to have).Associated technologies for integration e.g. SMPP, Adobe SDK/API.Associated technologies for customization e.g. Java, Javascript, SQL, XML, data modelling.Data mart, ETL and reporting technologies (good to have).', 'Qualifications': '', 'Deep experience in marketing automation technologies and processes': '', 'defining the associated operating models': '', 'large scale technology modernizations and platform migrations': 'Expertise in large databases involving e.g. Oracle, Teradata etc (good to have).Expertise in Data Integration tools/platform e.g. Informatica, IBM Data Stage etc (good to have).Expertise in Visualization tools/platform e.g. Qlik, Power BI etc (good to have).Expertise in Big Data Engineering tools/platform e.g. Cloudera, Horton Works, APACHE etc. Deep expertise in HDFS, HIVE, IMPALA, Kafka, SPARK, YARN is a plus (good to have).10+ years of experience of services, product development, infrastructure and security experience as an architect or similar hands-on technology leadership role.', '10+ years of experience of services, product development, infrastructure and security experience as an architect or similar hands-on technology leadership role': 'Deep knowledge of modern technology stacks, software development tools and practices, application and system performance monitoring, and the patterns and practices required to build highly available and scalable services.Detailed understanding of infrastructure, integration, virtualization, storage, networks, and security technologies.Detailed understanding of Industry data model, reporting data model and other standard data model required to support build-out of static and dynamic analytical capabilities\xa0.Has operated in a mixed portfolio of cloud-native and legacy technologies.Passion to leverage Data/Analytics and Machine learning to advance business projects.Recent experience with technology organization and culture transformations, particularly integrating effective Agile planning and development practices across large organizations.Experience designing, building, and operating high volume, client facing SaaS products.Solid financial and operational acumen. You must understand the cost of trade-offs of various technology decisions and be able to model short and long-term implications\xa0\xa0.', 'Experience or certification in the below technologies will be an added advantage:': 'Demonstrates experience in translating high level business capability requirements into executable technical solutions in the larger context of Domain Architecture focused on DATA.Broad experience of projects involving one/more of relevant Data Analytics technology areas viz BIG Data engineering, Data Warehousing, Data Integration, Data Quality, Data Modelling, Visualization, Analytics, Decision Systems, Machine Learning based model development.Prior experience in defining enterprise data roadmaps for up-scaling and/or modernization of Data architecture.Prior Experience in leading experimentation and selection of technologies by leveraging his/her expertise on technology drivers, trends, analysis of cost and complexity with organizational and operational capabilities.', 'Education': '', 'What will help you succeed in this role': 'Adopt an uncompromising attitude when it comes to quality and help raise bar of products and team members\xa0.Be a team player who communicates effectively and professionally with both internal and external customers. Evidence of your ability to influence an organization.Make good technical decisions that provide solutions to business challenges.Embrace tackling and resolving complex technical design issues.Possess strong problem solving and decision-making skills while exercising good judgment.Ability to understand the big picture - can step back and understand the context of problems before applying analytical skills to address the issues.Proven ability to communicate and develop long lasting relationships with all levels of Management in a clear, concise manner.', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/fvp-vp-marketing-analytics-development-lead-letsgettowork-10100755?jobId=jobstreet-sg-job-10100755§ionRank=386&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Research Associate (Computer Science/Computer Engineering) (R00010857)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Key Responsibilities:\xa0': 'Conduct research on development of novel and robust deep learning algorithms in emotion related BCI..Collaborate with other research staff and Ph.D. students to develop BCI system for emotion recognition..Conduct and design experiments to collect EEG data in emotion-BCI studies..Publish research papers in top-tier journals and conferences.\xa0 \xa0.', 'Job Requirements:\xa0': 'Master’s Degree in Computer Science, Computer Engineering, or related disciplines from a top-tier university..Strong background in software programming and proficiency in Python and Matlab..Experience in emotion recognition and BCI is required..Experience in machine learning, deep learning and signal processing is a merit..Excellent communication and team-work and writing skills..Strong analytical ability is required..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-computer-engineering-r00010857-10070651?jobId=jobstreet-sg-job-10070651§ionRank=387&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Scientist in Centre for Research in Child Development [R00007657] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'SGD\xa03,800 - SGD\xa05,300', 'Posted on 6-Nov-22']}, {'Research Scientist in Centre for Research in Child Development (OER) [NIE]': '', 'Overview': 'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention\xa0\xa0.Candidates with appropriate qualifications and relevant research experience are encouraged to apply. Successful applicants will work with a team of researchers at CRCD. We invite applications for the position of Research Scientist to join our efforts..', 'Requirements': 'PhD in a relevant discipline (e.g. developmental psychology, developmental science,\xa0 child development, educational psychology, linguistics, early intervention, or special education).Minimum 2 years of post-PhD experience (Research Scientist).Demonstrated ability to lead a research team;.Demonstrable track record in the following areas:.High quality publications (please provide samples and information on the\xa0 quality and impact of your work based on citations and ranking of journal publications);.Planning and writing research projects that are funded through competitive peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences);.Proficiency in the design and testing of instruments is desirable;.Excellent interpersonal and communication skills (spoken and written English);.Ability to work collaboratively within a team environment..', 'Responsibilities of Research Scientists': 'Collaborate with colleagues to design and implement the centre’s research programme.Take a leading role in the development of research projects and programmes and in seeking and pursuing appropriate external funding;.Disseminate the outcomes of research in peer-reviewed publications of international standing;.Manage and conduct administrative and management tasks associated with your programme of research;.Participate in research of strategic importance to NIE;.Participate in the wider research and service activities of NIE;.', 'Closing Date': 'Review of applicants will continue until the position is filled..', 'Other Information': 'Queries regarding the position should be directed to\xa0.', 'Application': 'Interested applicants should complete and submit the following documents:.Cover letter addressing how you meet each of the requirements of this position;.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research expertise, interests, and future directions;.1 to 3 of your best publications;.Name of at least 3 referees;.Any other documents that demonstrate your qualifications.', 'Note to applicants:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-in-centre-for-research-in-child-development-%5Br00007657%5D-jobsthatmatter-10138914?jobId=jobstreet-sg-job-10138914§ionRank=388&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Research Scientist in Centre for Research in Child Development (OER) [NIE]
[{'position': 'Sr. Research Scientist, (Electrical Engineering) - #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:\xa0': 'Lead the technical development of advanced data-driven methods for smart meter data analytics for smart home applications..Design artificial intelligence (AI) based models for residential load demand forecasting, solar PV power forecasting, and prosumer behaviour modelling and knowledge extraction..Perform testing and demonstration of the algorithms and deliverables..Communicate with the industry collaborators for progress reporting and potential commercialization of deliverables..Assist the PI for project management, including time schedule and milestone management..Coordinate with other research teams in this project for internal and external communication and collaboration..', 'Job Requirements:\xa0': 'PhD degree in Electrical Engineering..At least 5 years research and/or industry working experience..Expert knowledge in power system data analytics, especially on forecasting and knowledge extraction..Comprehensive experience in industry-funded research projects..Familiar with commercialization of research deliverables..Excellent project management skills..Excellent publication record in top-tier journals..Excellent verbal and written communication skills in English..Strong analytical and conceptual abilities..Able to work independently and in a team to realize proposed research work..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-research-scientist-electrical-engineering-worknow-10135174?jobId=jobstreet-sg-job-10135174§ionRank=389&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Regional Senior Data Analytics Engineer'}, {'company_name': 'Ninja Van'}, {'small_section': ['Central', 'Posted on 26-Oct-22']}, {'Responsibilities': 'Collaborate with business users and data analysts to understand user requirements.Design data models to meet critical product and business requirements, including reporting, data analysis, data science and other production applications.Develop and automate large scale, high-performance data warehouse pipelines.Monitor the usage of the data warehouse and optimize performance and cost through data modeling best practices.Maintain data warehouse documentation (data catalog) in collaboration with data analysts and data engineers.Implement data quality monitoring tools.Contribute to data warehousing processes and standards to improve the productivity and quality of output for the data team.Provide effective user administration, documentation, training materials and end user support.Maintain up-to-date knowledge of latest tools and technologies.Evaluate new tools and technologies for BI users.', 'Requirements': "Bachelors' Degree in: Computer Science, Engineering, Mathematics or Statistics.3 - 5 years experience of experience in data analytics.Experience in the following software: Data modeling, SQL, Python, PySpark, Spark, Presto, Hive, bash, Linux, Git, GCP, Airflow, REST API.Experience in programming is a plus.Competency in Analytics and Computational Modelling, Business Needs Analysis, Data Visualization and Stakeholder Management."}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201412014E', 'Company Size': '501 - 1000 Employees', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': '\n\n\t\tNinja Van is an express logistics business created to take the hassle out of the parcel delivery process for online shoppers and catering to the logistics needs of Southeast Asia’s thriving e-commerce sector.\n\n\t\tDriven by a desire to revolutionise the logistics industry, Ninja Van’s three co-founders - Lai Chang Wen, Shaun Chong, Tan Boxian - set up the company in 2014.\n\n\t\tEncouraged by the success of the business in Singapore, Ninja Van subsequently expanded their operations in other parts of Southeast Asia and now has a presence in six of Southeast Asia’s key markets: Singapore, Malaysia, Indonesia, Thailand, Vietnam and Philippines.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/regional-senior-data-analytics-engineer-10052487?jobId=jobstreet-sg-job-10052487§ionRank=390&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'VP/AVP, Project Analyst, Enterprise Data Management, Data Management Office #Urgent'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Data Management Office and Big Data Analytics': '', 'Data Management Office': 'The single point of contact for users across UOB for data issue escalations. The EDM ensures that data hosted in data warehouse is of good quality and conforms to data standards such as completeness, accuracy and consistency, to support regulatory and management reports. The team also promotes data automation and makes use of data to help develop initiatives to improve productivity..Data discovery through provision data requests to respective playpen for business units across the Group. The objective advocates self-service data exploration and analysis within and among Business/Support Units. Data definition and specification documents are available to provide navigational guidance and support for data provision purposes..', 'Job Responsibilities': "Gathering and documenting business requirements & functional specifications on data related initiatives..Perform data profiling and gap analysis, source to target mappings, data issue capturing, resolution and escalation..Provide end-to-end project delivery support, including workshop planning, conducting of workshop walkthrough, user acceptance testing, defect support, continuous validation and assisting with rollout activities..Able to perform complex SQL scripting to meet user's requests..Foster strong working & collaborative relationships with the business & technology stakeholders..", 'Job Requirements': 'Minimum Bachelor Degree or equivalent professional qualifications in Computer Science with at least 5 years of working experience in banking industry, preferably with business / functional knowledge;.Experience in gathering and documentation of business requirements;.Knowledge of architecting and modeling in Systems Integration, Data Warehousing, BI tools, Big Data platforms and experienced in the use of analytical /query and visualisation tools. Must be able to query and understand database solutions..Extensive experience designing, developing, and documenting data-driven solutions - including capturing architectures, metadata systems, data dictionaries, databases and applications..Good team player who possesses drive and initiative;.Excellent written / oral communication skills to effectively interact with different stakeholders and external vendors, able to work independently under pressure..', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-avp-project-analyst-enterprise-data-management-data-management-office-urgent-10101290?jobId=jobstreet-sg-job-10101290§ionRank=392&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Solution Consultant'}, {'company_name': 'Axisoft (Singapore) Pte. Ltd.'}, {'small_section': ['Changi', 'SGD\xa05,000 - SGD\xa010,000', 'Posted on 6-Nov-22']}, {'Responsibilities:': '', 'Requirements:': '', 'Salary and Benefits:': '', 'Learning and Development:': '', 'Work Arrangement:': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201221396G', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '12 days', 'Industry': 'Consulting (IT, Science, Engineering & Technical)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'Axisoft is a Top-Notch Financial Technology Provider with offices in Singapore, Hong Kong and China. Since 1998, we have been helping global top-tier Private Banks to improve their profitability throughout the deployment of our solutions in several countries, such as Hong Kong, Singapore, China, Taiwan, Australia, Japan and Switzerland.In addition, we have been helping global financial and banking institutions to implement and maintain critical financial systems. Throughout the years of experience in the financial and banking solutions, we have established a professional team with solid experience and knowledge in financial technology domain.For further information about Axisoft, visit www.axisoft.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/solution-consultant-10113685?jobId=jobstreet-sg-job-10113685§ionRank=393&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Engineer - (Machine learning algorithms for drone surveillance) 5GTL #Immediate'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Participate in and manage the research project with Principal Investigator (PI), Co-PIs and the industry collaborator to ensure all project deliverables are met..Design, optimization and test the ML algorithms in the network to ensure the end-to-end performance metrics are met under different drone surveillance scenarios..Develop North-bound APIs for dynamic network orchestration and test overall model performance under high-speed switching scenarios..Carry out Risk Assessment, and ensure compliance with Work, Safety and Health Regulations..Research on existing hardware technologies and coordinate procurement and liaison with vendors/suppliers..Work independently, as well as within a team, to ensure proper operation and maintenance of equipment..', 'Job Requirements:': 'Have relevant competence in networking with open network switch configuration..Experience in network configuration and maintenance on Linux-based devices..Working knowledge of SDN technologies and/or machine learning algorithms.REST APIs for north-bound communication will be an advantage..Knowledge in virtualization technologies (Hypervisor, VMware NSx) will be an advantage..Have a relevant degree in Communication Networks or equivalent. Possessing a Master’s or PhD degree will be advantageous.Knowledge of Python, Java and R will be advantageous..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-algorithms-for-drone-surveillance-5gtl-immediate-10120960?jobId=jobstreet-sg-job-10120960§ionRank=394&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Medical Informatics Specialist (Principal Trainer) (3-Year Contract)'}, {'company_name': 'National University Health System'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Job Responsibilities': '', 'Job Requirements': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Healthcare, Practitioner/Medical Asst', 'Registration No.': '200801778C', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\t\tAbout the National University Health System (NUHS)\n\n\n\tSpanning three acute hospitals, two community hospitals, three national centres, six polyclinics, three family medicine clinics, and three health science institutions, our unique and comprehensive ecosystem anchors NUHS as a leading academic health system in Singapore – driven by research and education.\n\t\n\t\tInspired by our patients and the population that we serve, our strong network of talents and resources across our institutions provide patient-centred care across the whole continuum - improving health and driving transformation from primary, tertiary to complex care. In close collaboration with our community partners, we aim to deliver “Incredible Care and Health, Together”!\n\t\n\tMembers of the NUHS:\n\t• National University Hospital\n\t• Ng Teng Fong General Hospital\n\t• Alexandra Hospital\n\t• Jurong Community Hospital\n\t• National University Polyclinics\n\t• National University Cancer Centre, Singapore\n\t• National University Heart Centre, Singapore\n\t• National University Centre for Oral Health, Singapore\n\t• NUS Yong Loo Lin School of Medicine\n\t• NUS Faculty of Dentistry\n\t• NUS Saw Swee Hock School of Public Health'}, {'url': 'http://www.jobstreet.com.sg/en/job/medical-informatics-specialist-principal-trainer-3-year-contract-10145231?jobId=jobstreet-sg-job-10145231§ionRank=395&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Engineer - (Machine Learning) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'SGD\xa03,800 - SGD\xa04,700', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Conduct research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data processing & mining, and perform analytics for future ATM systems.Provide support on the implementation and verification of an AI-based Digital Tower Control assistance system.', 'Job Requirements:': 'Bachelor’s degree in Computer Science/Aerospace Engineering/Applied Mathematics.Deep understanding and experience in the theory and application of AI and Machine Learning techniques.Programming Experience: knowledge of Python, Matlab, R and/or C++.Good English writing and communication skills.Independent and team player.Preferred Job Requirements:.Minimum 1 year of related research experience.Demonstrated project experience related to Airport or Air Traffic Management.Software Engineering Experience: Understanding and experience of sound Software Engineering practices, including data management, software version control and database design.Understanding of statistical methods and/or probability theory.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-urgent-10135668?jobId=jobstreet-sg-job-10135668§ionRank=396&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Scientist (Catalysis and Reaction Engineering), [ISCE2]'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Requirements:': 'Be involved in various industrial projects to develop new catalysts or more sustainable chemical process. Write reports and present results to various stakeholders in a timely manner.Collaborate with colleagues to develop new capabilities for the division and the institute.Draft proposal and apply grants through various channels. Publish papers in peer-reviewed journals & contribute to IP generation.Work with colleagues to maintain good laboratory safety practice.Maintain a strong commitment to the implementation and perpetuation of values and ethics.This project is highly relevant to sustainability.PhD in Chemical Engineering, Data Science or any other relevant disciplines.Strong knowledge on heterogeneous catalysis.Good communication skills in both oral and writing.Strong interpersonal skills and ability to work effectively in a multi-cultural team environment.Innovative, motivated and able to work independently as well as in a team.Previous experience with HT experimentation.Knowledge on ML/AI and programming languages (eg Python, C++, etc).', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-catalysis-and-reaction-engineering-%5Bisce2%5D-10125354?jobId=jobstreet-sg-job-10125354§ionRank=397&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Job Requirements:
[{'position': 'Sr. Research Scientist [R00005119] #LetsGetToWork'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Senior Research Scientist (Computer/Electrical/Mechatronics Science/Statistics)': '', 'Key Responsibilities:': 'Play a leading role in both research and development of novel and/or enhanced assistive technologies to improve the safety of fleet drivers by (i) categorizing their driving behaviors through profiling; (ii) monitoring their well-being; and (iii) assessing driving risks and reporting to fleet manr/operator and/or drivers.', 'Job Requirements:': 'PhD in Computer/Electrical/Mechatronics Science or Statistics.Minimum 6 of experience in software or hardware development, integration and refinement.Solid application background in AI for computer vision and/or data analytics.Strong project manment skills.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-research-scientist-%5Br00005119%5D-letsgettowork-10072683?jobId=jobstreet-sg-job-10072683§ionRank=398&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Senior Research Scientist (Computer/Electrical/Mechatronics Science/Statistics)
[{'position': 'Scientist, Centre for Frontier AI Research, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'JOB DESCRIPTION': '', 'Successful candidates will be responsible for:': 'Designing novel algorithms for improving the performance (e.g. accuracy, diversity, explanation and fairness) of various machine learning models and systems.Using different learning paradigms, e.g. deep and shallow learning frameworks for effectively performing analytical tasks in various data domains(e.g. graph, biology, and text, etc.).Preparing high-quality papers for being published in major AI journals and conferences.', 'JOB REQUIREMENTS': 'PhD Degree in Computer Science or Computer Engineering.Strong track record of research in AI and related applications (e.g. publications in related journals like TPAMI, TNNLS, TCYB, TEVC, TFUZZ, JMLR and other IEEE or ACM Transactions, conferences like ICML, NeurlPS, ICLR, CVPR,AAAI, and IJCAI).Possess research experience in machine learning (e.g. unsupervised or semi-supervised learning), and data mining for real-world data-driven problems.Strong programming skills or other quantitative skills (e.g. statistical analysis).Ability to work both independently and in a team..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-centre-for-frontier-ai-research-ihpc-10126009?jobId=jobstreet-sg-job-10126009§ionRank=399&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
JOB DESCRIPTION
[{'position': '(Senior) Research Fellow/Scientist (Translational Biophotonics Laboratory), IBB'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Job\xa0description:\xa0': 'Develop novel optical and/or electronic imaging and spectroscopy systems, including hardware implementation, software interface and data/image processing for medical and agri-food technology applications.Work closely with scientists from various backgrounds and clinicians from hospital clusters in Singapore to develop technologies and conduct translational research\xa0.Present analysis results and project solutions to technical leads and senior leaders as necessary\xa0.Ensure deliverables are completed on-time.', 'Requirements:\xa0': 'Ph.D in engineering, physics and/or photonics.Applicants with relevant project experience will be\xa0considered.Experience/skills in optical/photonics system development for\xa0spectroscopy\xa0imaging applications.Good knowledge in software interfacing with hardware instruments, such as LabVIEW, Python or MATLAB\xa0.Skills in data or image processing using Python, MATLAB or other programming languages\xa0is advantageous.Good oral and written communication skills.Able to work in a multidisciplinary team, demonstrate initiative and work independently with strong interpersonal skills.Good publication record in international journals.Interest for translational research.Interest/experience in product commercialization is advantageous\xa0.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-fellow-scientist-translational-biophotonics-laboratory-ibb-10096308?jobId=jobstreet-sg-job-10096308§ionRank=400&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Job description:
[{'position': 'Data Analyst (NCID Prepare Office) - (4399BR)'}, {'company_name': 'Tan Tock Seng Hospital'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'MAIN DUTIES AND RESPONSIBILITIES': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '199003683N', 'Company Size': 'More than 5000 Employees', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Uniform/ Office Attire, Depending on Job Position'}, {'Company Overview': '\n\tTTSH is one of Singapore’s largest multi-disciplinary hospitals with more than 174 years of pioneering medical care and development. The hospital has 45 clinical and allied health departments, 16 specialist centres. It also has three institutes that are spearheading care, research and innovations in geriatric medicine, infectious diseases and ophthalmology. Powered by more than 8,000 healthcare staff, TTSH sees over 2,500 patients at its specialist clinics and some 460 patients at its emergency department every day. TTSH is part of the National Healthcare Group, providing holistic and integrated patient care.\xa0 With a strong quality culture steeped in patient safety, TTSH constantly challenges itself to provide faster, better, cheaper and safer care for patients. To achieve this, the hospital keeps abreast and believes in investing in its staff, facilities, medical technology and system improvements.\n\n\n\tMore information is available at www.ttshhr.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-ncid-prepare-office-4399br-10123398?jobId=jobstreet-sg-job-10123398§ionRank=402&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
MAIN DUTIES AND RESPONSIBILITIES
[{'position': 'Research Fellow, - (Geometry, Probability, & Deep Learning) (R00009871)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Responsibilities': 'Obtaining mathematical results in the area of Geometry, Probability, and Deep Learning.Designing, implementing, and testing algorithms.Engaging in scientific exchange with collaboration partners of the project.Guiding junior researchers in the team.Preparing reports, scientific papers, and presentations.Helping with academic self-administration.', 'Job Requirements': 'PhD in Mathematics or related areas.Experience in geometry, probability and/or deep learning. Some more specific research areas of particular interest are infinite-dimensional Riemannian or metric geometry, infinite-dimensional probability or stochastic analysis, statistical learning theory, coding theory, inverse problems, and harmonic analysis. Moreover, some applications of particular interest are mathematical finance and biomedical image or shape analysis..Good publication record.Good communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-geometry-probability-deep-learning-r00009871-10127710?jobId=jobstreet-sg-job-10127710§ionRank=404&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow, - (Geometry, Probability, and Deep Learning) - (R00009869)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Responsibilities': 'Obtaining mathematical results in the area of Geometry, Probability, and Deep Learning.Designing, implementing, and testing algorithms.Engaging in scientific exchange with collaboration partners of the project.Guiding junior researchers in the team.Preparing reports, scientific papers, and presentations.Helping with academic self-administration.', 'Job Requirements': 'PhD in Mathematics or related areas.Experience in geometry, probability and/or deep learning..Some more specific research areas of particular interest are infinite-dimensional Riemannian or metric geometry, infinite-dimensional probability or stochastic analysis, statistical learning theory, coding theory, inverse problems, and harmonic analysis. Moreover, some applications of particular interest are mathematical finance and biomedical image or shape analysis..Good publication record.Good communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-geometry-probability-and-deep-learning-r00009869-10127713?jobId=jobstreet-sg-job-10127713§ionRank=405&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Scientist (Applied Psychophysiology/Behavioural Science) R00010464'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities': 'Work on a project to develop multi modal means to enhance credibility assessment\xa0\xa0.Perform research related to verbal, non-verbal communication and psychophysiology means for detection of deception\xa0.Perform in-depth analysis of credibility assessment modalities to identify and label anomalies that will assist in the classification of deception and truthful cues\xa0\xa0\xa0.Developing new protocols to enhance existing cognitive credibility assessment, verbal and nonverbal assessment modalities.Help foster a collaborative and innovation-led environment within the Lab and implement technical communications for the program.Key contact for outreach, corporate communications, and technical communications for Program.Co-ordinate the signing of Corporate Lab legal documentation including Project Agreements, Non- Disclosure Agreements\xa0\xa0\xa0\xa0\xa0.', 'Job Requirements': 'PhD degree qualification or equivalent advanced certification in Applied Psychophysiology, Behavioural Science research\xa0.Experiences in administering of credibility assessment focused screening and diagnostics assessments with use of psychophysiology measures is an advantage\xa0.Advanced certification or knowledge of best practices and policies congruent with Singapore law enforcement and legal requirements.At least 5 years of relevant working experience in data collection, project management with knowledge of contract management.Technical competence in research project management\xa0.Good verbal and communication skills.Well organised, meticulous, and analytical\xa0\xa0.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-applied-psychophysiology-behavioural-science-r00010464-10072876?jobId=jobstreet-sg-job-10072876§ionRank=406&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Risk Data Analyst - 12 Months Contract - Urgent'}, {'company_name': 'Morgan McKinley'}, {'small_section': ['Singapore', 'SGD\xa02,000 - SGD\xa03,500', 'Posted on 28-Oct-22']}, {'Job\xa0Title:': '', 'Job\xa0Duration:': '', 'Job Description:': '', 'The Core Objectives:': '', 'Essential Experience:': '', 'Desirable Experience:': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200503018E', 'EA No.': '11C5502', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tAs a global professional recruitment consultancy, Morgan McKinley (EA Licence number: 11C5502) connects specialist talent with leading employers across multiple industries and disciplines. We have established ourselves as a preferred supplier to many of the major players in our specialist sectors, as well as with thousands of smaller local employers. Today, a worldwide network of offices and an international candidate management system offers our clients and candidates the best talent and opportunities from all corners of the globe.\n\n\t\tIn Singapore, we supply contingent and retained recruitment solutions for permanent and contract roles within the following areas:\n\n\t\tFinance & Accounting\n\t\tBanking Operations\n\t\tAsset & Private Wealth Management\n\t\tCompliance, Legal & Audit\n\t\tInvestment Banking\n\t\tCorporate Finance\n\t\tRisk Management\n\t\tHuman Resources\n\t\tSales & Marketing\n\t\tSupply Chain & Procurement\n\t\tIT\n\t\t- Sales & Pre Sales\n\t\t- Software Engineering\n\t\t- Product Management\n\t\t- Front End\n\t\t- Mobile\n\t\t- Security\n\t\t- Project Management\n\t\t- Business Analysis\n\t\t- Data Science & Analytics\n\t\t- Infrastructure\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/risk-data-analyst-12-months-contract-urgent-10110676?jobId=jobstreet-sg-job-10110676§ionRank=407&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Job Title:
[{'position': 'Data Business Analyst - Aerospace Industry'}, {'company_name': 'RK Recruitment Pte. Ltd.'}, {'small_section': ['Clementi', 'SGD\xa04,000 - SGD\xa05,000', 'Posted on 2-Nov-22']}, {'Job Benefits': 'Basic + AWS.Monday to Friday.8am to 5pm.Location: Clementi.', 'Job Responsibilities': 'Analyse business performance by conducting financial, product, market, operational and related research..Propose improvement suggestions to management on business performance, financial processes, etc..Identify challenges, opportunities and solutions for business and outline to management and relevant stakeholders (e.g. through personal discussions or presentations)..Interpret, evaluate and interrelate commercial and operational data as a baseline for developing integrated business analysis and projections..Assess operational objectives by studying business processes/functions, gather information/data, evaluate output requirements..Create, maintain and develop Microsoft Power BI analysis and dashboards for all users..Support in financial planning, forecasting, budgeting, variances analysis and monitoring processes..Create reports and presentations and keep current on a regular basis..Provide support and guidance to other departments for solution of finance/cost related issues..', 'Job Requirements': 'Bachelor Degree in Finance / Business Studies / Accounting or equivalent with proven analytical background..Minimum 3 years experience in financial analysis, reporting, consolidation and forecasting role. Experience in aerospace industry is a plus..Advanced experience and skills in the efficient use of analytical IT tools, such as MS Power BI and MS Excel (e.g. Pivot tables)..Strong initiative, follow through skills and ability to manage multiple projects as well as conduct cost/benefit analysis..', 'APPLY NOW BUTTON': '', 'RK Recruitment Pte Ltd | EA License No.: 20C0280': '', 'Loo Ka Chong | EA Personnel No.: R22109324': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '202024808N', 'EA No.': '20C0280', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '11 days', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Dental, Medical'}, {'Company Overview': '\n\tRK Recruitment is a workforce solutions provider with the key aim of conducting value-based recruitment activities to our business partners in forms of regular and flexible staffing. We provide one stop recruitment solutions that include:\n\n\n\t\tPermanent Placement\n\n\t\tContract & Temporary Placement\n\n\t\tExecutive Search\n\n\t\tWork Pass & Payroll Services\n\n\t\tRecruitment Process Outsourcing (RPO)\n\n\t\tBusiness Processing Outsourcing (BPO), in logistics, customer services and IT related scope\n\t\t\xa0\n\n\n\t(By submitting any application or résumé to us, you will be deemed to have agreed and consented to us collecting, using, retaining and disclosing your personal information to prospective employers for their consideration.)'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-business-analyst-aerospace-industry-10126021?jobId=jobstreet-sg-job-10126021§ionRank=408&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Job Benefits
[{'position': 'Manager, MDx R&D, - {189791BR}'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Position Summary': '', 'Responsibilities:': 'Supervise a R&D team in charge of MDx IVD assay development and V&V studies, conduct performance assessment and manage team members’ career development..Work in multifunctional project core teams, define product requirements according to customer needs, outline product development strategies and results delivery timelines..Lead MDx assay development and V&V activities for medium to large projects. Identify risks in product development and address them early..Supervise experiment design, test protocols, result analysis and problem troubleshooting..Supervise and author reports, presentations and product lifecycle controlled documentation; review and approve scientists’ work..Ensure products are developed in accordance with customer needs, applicable regulatory requirements and industry standards..Adhere to internal policies and procedures, as well as external quality standards..Represent R&D function and present to internal and external business stakeholders..Support regulatory submissions for IVD products..Keep informed on up-to-date MDx technologies, industry trends and innovations in the field..Recommend and execute improvement to processes, procedures and products..Other duties as assigned..', 'Qualifications:': 'Master or PhD degree in Molecular Biology, Microbiology, Biochemistry or similar..6 years of IVD industry experience focused on MDx product development. Less industry experience is acceptable for PhD..Proven track record of leading MDx IVD products from feasibility study to regulatory approval. Experience with PCR, qPCR and capillary electrophoresis based assays is preferred..At least 3 years’ experience in managing an IVD assay development R&D team; strong organizational skills..Experience and sound knowledge of common biochemistry, microbiology and molecular biology methods..Good understanding of IVD product lifecycle and roles of key project team members..Strong understanding of NMPA regulatory requirements; understanding of CE and FDA regulations is a plus..Solid knowledge of industry standards and guidelines, strong work experience of IVD assay V&V study design..Working knowledge of biostatistics techniques and tools..Effective verbal and written English communication skills..Familiar with design of experiments (DOE) principles..Strong understanding and working experience of ISO:13485 quality standard..Self-motivated, results oriented individual who is able to work with minimal supervision..'}, {'Career Level': 'Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biomedical', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-mdx-r-d-%7B189791br%7D-10056273?jobId=jobstreet-sg-job-10056273§ionRank=409&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Position Summary
[{'position': 'Scientist (AI for healthcare), Computing & Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Research Scientist (AI for Healthcare)': 'Build world-class capabilities and excellence in AI in Healthcare to be recognized by international research communities..Work with scientists in IHPC and clinical collaborators to advance research and digital transformation in healthcare..Publish high-impact papers to advance science (We have published several works in New England Journal of Medicine, The Lancet Digital Health, Nature Medicine, IEEE TPAMI, etc.)..Execute programmes to ensure timely delivery of project milestones with high-quality outcomes..', 'Requirement': 'Hold a Ph.D. degree in computer science, applied mathematics, data science or other related disciplines..Proven experience in Computer Vision, Machine Learning, Deep Learning, Medical Image Analysis, or related fields..First-author publications at peer-reviewed AI conferences (e.g., CVPR, ICCV, NeurIPS, ICLR) and journals (e.g., TPAMI, IJCV, TMI, TIP)..Familiarity with one or more of the following will be viewed favorable: multi-modality learning, annotation-efficient learning, federated learning, and trustworthy learning..Excellent oral and written communication skills..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-ai-for-healthcare-computing-intelligence-ihpc-10124139?jobId=jobstreet-sg-job-10124139§ionRank=410&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Research Scientist (AI for Healthcare)
[{'position': 'Technical Data Architect'}, {'company_name': 'People Profilers Pte Ltd'}, {'small_section': ['Jurong East', 'SGD\xa05,000 - SGD\xa07,800', 'Posted on 30-Oct-22']}, {'Industry: German MNC – Automotive': '', 'Location: ': '', 'Working Hours: 9am - 6pm (Mon-Fri)': '', 'Salary Range: Up to $7,800.00 per month': '', 'This is a Permanent role.': '', 'As the Assistant Manager - Technical Data Architect, your main responsibilities will include the following:': '', '1. IT Enterprise Integration Management': '', '2. Coordination & Communication': '', 'Education & Experience:': '', 'Specific Knowledge:': '', 'Functional Competencies:': '', 'Apply Now Button.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200618776E', 'EA No.': '02C4944', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tSince our humble beginnings in 2002, People Profilers has steadily grown from strength to strength. Our expertise in providing Human Capital consultancy to our clients – universally sought after skills and expertise in just about any sector– has allowed People Profilers to leave an imprint across various industries and build a reputation for competency and expertise.\n\n\t\tWhat differentiates People Profilers from every other recruiter is our unwavering commitment to building relationships with our clients- understanding exactly what our clients are after, and allowing us to match their precise needs. We deliver human capital solutions that allow organisations and their employees to succeed.\n\n\t\tHere at People Profilers, we pride ourselves on being a one-stop human capital solutions provider for your organisation. Our innovative and relationship-focused workforce solutions have been provided across a wide range of industries.\n\n\nPersonal Data Protection Act\n\n\tPlease be informed that the personal data you provided by way of your job application to People Profilers will be collected, used and disclosed by or on behalf of People Profilers to determine or investigate your suitability, eligibility or qualifications for employment with People Profilers and/or its’ Clients and manage your application for employment with People Profilers and/or its’ clients, including identifying you as a potential candidate for future suitable positions and/or notifying you of any such positions, either existing or in the future.'}, {'url': 'http://www.jobstreet.com.sg/en/job/technical-data-architect-10116777?jobId=jobstreet-sg-job-10116777§ionRank=411&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Industry: German MNC – Automotive
[{'position': 'Research Scientist / (Microfabrication) [R00007961] #LetsGetToWork'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities': 'Develop manufacturing processes for micro-/nano- fabrication of materials.Characterize the structure and properties of the materials.Develop Processing-Structure-Properties relationships.', 'Job Requirements': 'Ph.D. in Mechanical Engineering, Materials Science and Engineering, Electrical Engineering or related field.Knowledge in Micro-/ Nano- fabrication, especially non-traditional microelectronics processing techniques.Proficiency with optics, control systems and flexible materials are highly valued but not mandatory.Excellent written and verbal communication in the English language is expected.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-microfabrication-%5Br00007961%5D-letsgettowork-10072513?jobId=jobstreet-sg-job-10072513§ionRank=412&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate [Econometrics, Machine Learning Algorithms] - [R00005716]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities': 'Data Analysis.Programming, Model Derivation.Literature Review.', 'Job Requirements': 'Minimum Master degree in Economics.Familiar with Python, R Language, Stata.Experienced in Statistics and Econometrics.Strong programming skills.Stay abreast of latest literatures on machine learning, Econometrics and Statistics.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-%5Beconometrics-machine-learning-algorithms%5D-%5Br00005716%5D-10072944?jobId=jobstreet-sg-job-10072944§ionRank=415&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Senior Computer Vision Engineer'}, {'company_name': 'Stellar Link Partners Pte Ltd'}, {'small_section': ['West', 'SGD\xa06,000 - SGD\xa09,500', 'Posted on 6-Nov-22']}, {'Your Key Responsibilities includes:': 'Contributing in all relevant domains from system integration to deployment of updates to clients.Leading the development and enhancement of new and existing products.Visualizing data acquired to identify features, differences in data distribution that could improve performance when deploying the model in the real world.\xa0Deploy machine vision models on edge devices after optimization to meet clients requirements.Analyzing errors of model and implementing strategies to overcome them.', '\xa0Requirements:': 'Good understanding in image classification, segmentation and feature extraction..', ' +65 9004 5401': '', 'Chan Chin How, Javier': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201622755N', 'EA No.': '21S0698', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '20 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tStellar Link Partners is a boutique search firm with an initial focus on IT, HR, Legal and assisting China-owned companies to start up/hire in Singapore.\xa0 The founding partners have a combination of more than 30 years of search/recruitment experience.\xa0 Stellar Link was borne out of our passion in what we do and the desire to create a place where like-minded people can come together to practice at the highest professional standards.\xa0 At Stellar Link, we believe the potential for greatness lies in all our us and we enjoy linking great talents to great opportunities.\xa0 Let us help you uncover your next talent.\xa0\n\n\t\tYou can find out more about us at https://stellar-link.com/\n\n\t\tStellar Link is part of the CGP Group of Companies.\n\n\n\tEA Licence number: 21S0698'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-computer-vision-engineer-10138615?jobId=jobstreet-sg-job-10138615§ionRank=416&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Your Key Responsibilities includes:
[{'position': 'Assistant Principal Data Engineer'}, {'company_name': 'ST Engineering Aerospace Ltd'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description': 'Develop web applications using ASP.Net MVC\xa0and\xa0ASP.Net Web API, following the development standards and technical design provided.Understanding of best practices in software development process (SDLC) including coding standards, code reviews, design patterns, source control and object-oriented programming..Tap knowledge\xa0from\xa0domain experts\xa0and\xa0write SQL scripts to manage & query\xa0databases to extract & generate required data for analysis..Ability to develop web-based\xa0dashboards to show the results\xa0for internal & external customers is preferred..Supports\xa0and\xa0develops software engineers by providing advice, coaching,\xa0and\xa0educational opportunities..Develop software solutions by studying information needs conferring with users studying systems flow, data usage\xa0and\xa0work\xa0processes.Document\xa0and\xa0demonstrate solutions by developing documentation, flowcharts, layouts, diagrams, charts, code comments\xa0and\xa0clear code.Design\xa0and\xa0architect\xa0new\xa0software product for data analytics.2nd level user support for application interface issues across systems.Analyse issues\xa0and\xa0work\xa0with other team members to identify root cause to prevent future occurrences.', 'Requirements\xa0and\xa0Skills': '2 to 5\xa0years\xa0of relevant experience in core software apps support.Working\xa0knowledge of C#, ASP.Net, MS SQL.Degree\xa0in Engineering\xa0or\xa0Computer Science\xa0or\xa0IT.', 'Degree\xa0in Engineering\xa0or\xa0Computer Science\xa0or\xa0IT': 'Hands on experience in technical design patterns, development, and documentation..Experience using Visual Studio 2019\xa0and\xa0later..Strong\xa0in SQL server complex SQL query\xa0and\xa0Stored procedure development (2+\xa0years).Good\xa0knowledge of microservice architecture\xa0and\xa0SOA..RPA UiPath knowledge advantage..'}, {'Career Level': 'Senior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '198105870H', 'Company Size': '501 - 1000 Employees', 'Industry': 'Aerospace / Aviation / Airline', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tBacked by 40 years of experience and track record in the global aviation industry, we provide integrated nose-to-tail services and solutions through a global network of facilities and affiliates in the U.S., Asia Pacific and Europe.\n\t\n\t\n\t\tWith proven solutions for practically every stage of an aircraft life cycle, our solutions range from design and engineering, original equipment manufacturing, aftermarket and maintenance services, assets management and leasing, to giving ageing aircraft a new lease of life through passenger-to-freighter conversion or refurbishment. We are the only freighter conversion house using original OEM engineering data on both Boeing and Airbus platforms.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-principal-data-engineer-10138347?jobId=jobstreet-sg-job-10138347§ionRank=417&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Assistant (Computer Science) #JobsThatMatter T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Key Responsibilities:': 'Set up the provenance capturing systems.Collect and pre-process simulated provenance data.Perform literature review and background study on graph analytics for intrusion detection.Apply Data Mining & Machine Learning techniques for graph-based intrusion detection, implement prototypes of the solutions, and validate their effectiveness empirically.', 'Job Requirements:': '\u200bPossess Bachelor degree in Computer Science, or a related discipline, with a focus on Cyber Security, Machine Learning and/or Data Mining.Experiences in developing intrusion detection and/or graph analytics technologies.Good programming skills in e.g., Python, Matlab, C++, etc.Good interpersonal skills.Excellent teamwork awareness.Good communication and writing in English.Strong research experience/track record in cyber security or graph mining will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-jobsthatmatter-t-10096186?jobId=jobstreet-sg-job-10096186§ionRank=418&token=0~9bff583f-a227-4335-a781-d956e494213f&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Informatica BDM Consultant'}, {'company_name': 'Avensys Consulting Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'JOB TYPE': '', 'REQUIREMENT': '', 'Skillsets (Good to have)': '', 'QUALIFICATION': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200710657H', 'EA No.': '12C5759', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '1 day', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tAvensys is a leader in providing technology enabled business solutions and services. Since inception, Avensys has helped clients use IT more efficiently to improve their operations and profitability, focus on core competencies and achieve business results such as increased agility, innovation and profitable growth. Our in-depth technical knowledge coupled with industry experience and our unique methodologies enable us to successfully deliver and meet our customer’s expectations.'}, {'url': 'http://www.jobstreet.com.sg/en/job/informatica-bdm-consultant-10142146?jobId=jobstreet-sg-job-10142146§ionRank=422&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
JOB TYPE
[{'position': 'Research Fellow, - (Data Science, Blood Sugar Dynamics/Diabetes) (R00010120)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Description:': 'Conduct cross-disciplinary research in monitoring of diabetic condition in healthy and affected individuals. This involves analysis of the continuously measured blood sugar concentration dynamics in diabetics, pre- and none-diabetic individuals. Correlation of these measurements with food nutritional composition and the individuals’ psychological and physical life-stress levels.\xa0 Collaborate with metabolic disease researchers from NTU LKC School of Medicine and TTS Hospital Singapore..Take part in current initiatives in SG health care and digital wellbeing. This project is specifically focused on providing advice for elderly people with type 1 and 2 diabetes and pre-diabetic condition and development of personal data-based dietary recommendations assisting with the decision making process such as insulin injections, food type and nutrition, exercises.\xa0 Collaborate with Temasek Centre for Applied Nutrition Services & Glycemic Index Research Unit. \xa0.', 'Job Requirements:': 'PhD in biology, bioinformatics, metabolic diseases, nutrition, or related fields. This position also welcomes applicants with qualifications at MSc or BSc level (to be offered at Research Associate or Project Officer, respectively), if the right experience, technical qualifications, and expertise is met..Prior research experience..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-science-blood-sugar-dynamics-diabetes-r00010120-10072409?jobId=jobstreet-sg-job-10072409§ionRank=424&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Scientist (Additive Manufacturing Group (AMG)), SIMTech'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Job Requirements': 'Conducting extensive AM reviews on the state of the art and charting research directions..Performing, leading, and delivering on research activities in LPBF and in-process monitoring for detection of defects and quality assurance through competitive-funded and industry-led commercial projects..Supporting new research activities through industry proposal discussions and competitive grant writing relating to metal additive manufacturing in-situ monitoring, quality assurance, and materials..Working with internal and external partners, as well as guiding engineers and students on research projects as part of the technical effort..Writing scientific articles..PhD degree in laser powder bed fusion process monitoring or an appropriate engineering discipline with 2 years of research experience in additive manufacturing process monitoring..Demonstrated knowledge and hands-on experience in the following areas.Understanding of laser-material interaction for in-situ process monitoring, part quality, and material properties..Data analysis of in-process monitoring sensor values for prediction of part quality using statistic and machine learning algorithms..Operation knowledge and experience of laser powder bed fusion machines including in-process monitoring data acquisition..Metal material characterization through destructive and non-destructive test operation and analysis such as sample preparation, mechanical testing, and microscopy..Computer aided design software experience for manipulation of digital designs, design for additive manufacturing, and preparation of print job files..Strong publication track record..Diligent and possess positive work attitude..Ability to work effectively and independently in a team.Good communication, writing and presentation skills..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-additive-manufacturing-group-amg-simtech-10096301?jobId=jobstreet-sg-job-10096301§ionRank=425&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Job Requirements
[{'position': 'Data Support Intern'}, {'company_name': 'NTUC Health Co-operative Ltd'}, {'small_section': ['East', 'Posted on 3-Nov-22']}, {'Qualifications': "Improve\xa0the existing RPA process, conduct systematic root cause analysis and minimize data collection errors.Put a system in place which allows data entry errors to be detected and the data owner to be notified during report submission.May require to perform additional duties as required.Preferably pursuing\xa0a Bachelor's Degree in Business Analytics, Data Analytics, Computer Science, Information Technology, Information Systems, or related discipline.Possess data intuition and curiosity to learn.Be adaptable and proactive."}, {'Career Level': 'Entry Level', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Job Type': 'Internship', 'Job Specializations': 'Admin/Human Resources, Clerical/Administrative Support', 'Registration No.': 'S92CS0208D', 'Company Size': '501 - 1000 Employees', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Vision, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties)'}, {'Company Overview': '\n\n\t\tAbout NTUC Health Co-operative Limited\n\n\t\tNTUC Health Co-operative Limited (NTUC Health) is an NTUC social enterprise that provides a comprehensive and integrated suite of quality and affordable health and eldercare services to meet the growing needs of families and their dependents. Building on more than four decades of experience and expertise, NTUC Health is among the largest senior day care, nursing home and home personal care providers in Singapore. It also offers other services for seniors such as an active ageing hub, senior activity centres, community support for vulnerable seniors, and a sheltered / senior group home. In addition, it runs a chain of dental clinics, and a family medicine clinic. For more information, please visit www.ntuchealth.sg.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-support-intern-10128323?jobId=jobstreet-sg-job-10128323§ionRank=426&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Qualifications
[{'position': 'Project Officer (Molecular Biology and RNA Research)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 22 hours ago']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-molecular-biology-and-rna-research-10146298?jobId=jobstreet-sg-job-10146298§ionRank=427&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
[{'position': 'Research Associate (Ref:DSSOJO)'}, {'company_name': 'National Cancer Centre Singapore Pte Ltd'}, {'small_section': ['Outram', 'Posted on 6-Nov-22']}, {'Responsibilities:': '', 'Job Requirements:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '199801562Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Uniform and Non-Uniform, Others', 'Specific Location': '11 Hospital Crescent'}, {'Company Overview': '\n\tThe National Cancer Centre Singapore (NCCS) has evolved over the past 20 years to become one of the leading regional centres for cancer treatment and research. It has pioneered the one-stop multi-disciplinary approach to cancer treatment and is now home to oncologists, surgeons and researchers, dedicated to the care and treatment of a growing number of cancer patients.\n\tToday, NCCS see close to 65 per cent of the public sector oncology cases in Singapore. To deliver\xa0the latest cancer care and treatment, clinicians work closely with researchers who conduct robust cutting-edge clinical and translational research which has received international recognition.\xa0NCCS strives to be a global leading cancer centre, and shares its expertise and knowledge by training the next generation of medical professionals.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-ref%3Adssojo-10110906?jobId=jobstreet-sg-job-10110906§ionRank=428&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Engineer II - (Computer Science/Electronics/Science/Mathematics) T'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Key Responsibilities:\xa0': 'Using and procuring image capture equipment (camera, lighting, etc.) and relevant image processing software to help create datasets.Leverage image capturing techniques to process images in line with our research objectives.Create reports and help with milestone presentations.', 'Job Requirements:\xa0': "Possess bachelor's/master's degree in any discipline (preferably in Engineering (computer science or electronics)/Science/Mathematics or related disciplines)..Basic knowledge in photography and image editing..Programming knowledge in Python or C++ will be an added advantage."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-ii-computer-science-electronics-science-mathematics-t-10097060?jobId=jobstreet-sg-job-10097060§ionRank=429&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Operations Analyst - #JobsThatMatter'}, {'company_name': 'DSO National Laboratories'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Operations Analyst': '', 'Responsibilities': '', 'In this role, you will:': 'Conduct operations research studies on defence and national security-related issues.Develop mathematical and simulation models and apply them to complex real-world problems.Conduct data analysis and convey findings and recommendations to decision makers.', 'Requirements': 'Master’s / Bachelor’s Degree in Computer Engineering / Computer Science / Mathematics / Statistics / Operations Research.Proficiency in programming languages (e.g., C/C++/Java, Python).Possess strong quantitative, analytic and communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '199701777M', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '16 days', 'Industry': 'R&D'}, {'Company Overview': '\n\tDefence research and development (R&D) is at the heart of what we do at DSO. As Singapore’s largest national defence R&D organisation, DSO is entrusted with the critical mission of developing technological surprises to enhance Singapore’s defence capabilities. From research to systems development, our defence engineers and scientists push the boundaries to develop game changing technologies and solutions that are not available in the market, or not available to Singapore. DSO also invest and explore emerging technologies to ensure the nation’s defence and national security capabilities are future ready. With more than 50 research areas across the domains of air, land, sea, space and cyberspace, DSO shapes the future of defence with our imagination and dare-to-do spirit in the relentless pursuit of the next big idea.'}, {'url': 'http://www.jobstreet.com.sg/en/job/operations-analyst-jobsthatmatter-10124136?jobId=jobstreet-sg-job-10124136§ionRank=431&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Operations Analyst
[{'position': 'Data Analyst | Up to $8,000'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa08,000', 'Posted on 27-Oct-22']}, {'Job responsibilities': "Extract and clean the data from various data sources to generate daily, weekly and monthly reports.Set up the automation of reports from data extracted and stored by AWS.Provide data analysis and insights to identify and recommend areas of improvement.Fulfil ad-hoc data request from client and management.Have some experience in ETL processes and mapping different sources of data with key identifiers.Writing SQL queries to retrieve information quickly.Management and Identification of key data points, trends that can be used in tandem with operations to increase KPI's.", 'Knowledge/Skills Required': 'Experience in contact centre/service industry including data/trend prediction & analysis, self-help migration.Experience in building reports using Excel, Tableau, SQL, Power BI, Python, or other business intelligence and data analytics tools Strong communication and presentation skills.Proactive and able to work independently with minimum supervision.Excellent time management with strong critical thinking and ability to handle pressure.', 'click the "APPLY NOW" button': []}, {'Career Level': 'Non-Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays'}, {'Company Overview': 'PERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.Headquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.Today, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.Our deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.By sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates to collect, use and disclose your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0suitability for employment, conducting reference checks, administering employment related services, complying with Government’s health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at https://www.persolkelly.com.sg/policies.\xa0If you wish to withdraw your consent, please drop us an email at [email\xa0protected] to let us know. Please feel free to contact us if you have any queries.(NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)For more information, please visit www.persolkelly.com.sg'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-%7C-up-to-%248-000-10109200?jobId=jobstreet-sg-job-10109200§ionRank=432&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Job responsibilities
[{'position': 'Patent Agent or Patent Scientist'}, {'company_name': 'Biro Oktroi Roosseno'}, {'small_section': ['River Valley', 'SGD\xa06,000 - SGD\xa012,000', 'Posted on 1-Nov-22']}, {'Biro Oktroi Rooseno – Intellectual Property Executive': '', 'Patent Agent/ Patent Scientist': 'Drafting patents, filing and prosecuting patent applications.Conducting prior art/freedom to operate searches.Advising on Singapore’s patent laws and procedures.Reviewing specification search and examination reports.Assisting lawyers with patent litigation.Advising on strategies and courses of actions available to clients.(For Patent Agents) Registered Patent Agent / Patent Attorney Qualification in Singapore (Candidates qualified in other jurisdictions such as UK. Europe, US, or others may also be considered).Career path towards senior management and directorship of the firm.Postgraduate study and other qualifications such as a law degree or industry experience will be well regarded but are not essential..Strong command in verbal & written English..Excellent interpersonal and communication skills..Minimum 3 years of experience in patent drafting and prosecution.A good team player with a positive working attitude is essential.Be able to work independently.Be resourceful, possess strong interpersonal skills, and have the ability to manage business demands proactively..Experience and interest in managing and growing the practice.The candidate will work closely with our team in Jakarta and will answer directly to the Singaporean management..Directorship of the firm is possible..Career opportunities for building up an IP practice in Singapore..'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Services, Lawyer/Legal Asst', 'Registration No.': '201718516H', 'Company Size': '1 - 50 Employees', 'Industry': 'Consulting (Business & Management)', 'Benefits & Others': 'Regular hours, Mondays - Fridays', 'Specific Location': 'Clarke Quay'}, {'Company Overview': '\nBiro Oktroi Roosseno Singapore\nAs a Singapore based agent and advisory firm, we support large and small companies expanding their business into Indonesia.\nWe collaborate closely with Biro Oktroi Roosseno the leading strategic partner for Intellectual Property in Indonesia. Biro Oktroi Roosseno was incorporated in 1951 and is a family owned business with over 120 employes including 30 technical staff.\nAgent for Biro Oktroi Rosseno Indonesia:\n\nIntellectual property related services for the South East Asian region.\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/patent-agent-or-patent-scientist-10122321?jobId=jobstreet-sg-job-10122321§ionRank=434&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Biro Oktroi Rooseno – Intellectual Property Executive
[{'position': 'Scientist (AI for healthcare), Computing & Intelligence, - IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Research Scientist (AI for Healthcare)': '', 'Requirement': 'Hold a Ph.D.\xa0degree\xa0in computer science, statistics, applied mathematics, data science\xa0or\xa0other related disciplines;.Knowledge in one of the AI programming frameworks, e.g., PyTorch, TensorFlow, JAX;.Experience in leading significant research projects;.Great\xa0visibility to the community;.', 'The above eligibility criteria are\xa0not\xa0exhaustive. A*STAR may include additional selection criteria\xa0based\xa0on its prevailing recruitment policies. These policies may be amended\xa0from\xa0time to time without notice. We regret that only shortlisted\xa0candidates\xa0will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-ai-for-healthcare-computing-intelligence-ihpc-10124222?jobId=jobstreet-sg-job-10124222§ionRank=435&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Research Scientist (AI for Healthcare)
[{'position': 'Scientist, Molecular Biology - 204038BR'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities and Authorities': 'Development of qPCR/CE/NGS/DPCR assays for new product introduction.Execute experiments independently and analyze data set under guidance of senior group members and keep a detailed record of experiments.Write procedures, protocols and reports.Support operations-related liaising and activities.Exercise independent judgment within defined procedures and practices to determine appropriate action.Recommend and execute changes to processes, procedures or products internally to the department.May train and guide interns.Adhere to internal policies and procedures, as well as external quality standards.', 'Qualification': '', 'Experiences': 'Experience with qPCR/NGS/CE and molecular in vitro diagnostics assays.Experience in working under ISO13485 preferred.Experience in document control systems and writing design quality control documents preferred \u200b.Years of experience: 2- 5 years.', 'Competencies Preferred': 'Good practical knowledge of molecular biology techniques..Possess good laboratory and documentation practices..Driven to deliver quality results on time and in a highly ethical and professional manner..Demonstrated resourcefulness, self-motivation, systematic and analytical thinking, directed toward achieving objectives..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-molecular-biology-204038br-10053053?jobId=jobstreet-sg-job-10053053§ionRank=436&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Responsibilities and Authorities
[{'position': 'Database Administrator - must be able to travel'}, {'company_name': 'REC Solar Pte Ltd'}, {'small_section': ['Tuas', 'Posted on 4-Nov-22']}, {'This position is required to do occasional business travels and requires the ability to work and stay in Jamnagar of Gujarat, India for at least 1 year (beginning circa Jun 2023), due to expansion plans.': '', '': '', 'ESSENTIAL DUTIES AND RESPONSIBILITIES:': 'Responsible for implementation and performance of critical SQL Server RDBMS for MES and related systems.Work closely with application development team to ensure appropriate and efficient SQL.Perform tuning for queries, design indexes, monitor and optimize performance.Investigate, analyze, and resolve database related issues.Support periodic SQL patch, upgrade and migration.Perform database purging and collaborate with data owner to define the purging policy for each individual system, database re-indexing and database tuning.Build, setup and manage data pipeline in Azure Synapse Analytic and SQL data warehouse databases.Ensure data pipelines and data stores are high-performing, efficient, organized and reliable.Collect, manage and transform data into usable information for building business analytic and machine learning solutions.Collaborate with various stakeholders to understand and provide data requirements.Create reports and dashboards to support various stakeholders’ analytic requirements.Install, configure, and administer analytic application servers, such as SSRS reporting services and Tibco servers.Plan and create suitable environment for data science workloads.Run experiments, train, manage, optimize, and deploy machine learning models into production.Prioritize, manage and successfully complete multiple projects with minimal supervision from manager.', 'ADDITIONAL RESPONSIBILITIES:': "Provide cross-functional leadership and equipment's vendor interaction to troubleshoot, analyze and develop solution.Work with service desk and third-party solutions vendor to resolve on the disrupted service and rectify the database issues promptly to minimize business impact.Assist the Operations and Project Lead on the issues related to database in daily operations or new projects implementation.Involve in write-up of RDBMS system specifications.Demonstrated ability to manage technical teams.Independent and self-motivated.Strong communication and presentation skills with the ability to influence stakeholders.", 'REQUIRED QUALIFICATIONS AND SKILLS:': '', 'with MS SQL Server DBA certification preferred': 'Expertise in Microsoft SQL Server and Reporting Services.Expertise in any cloud architecture (Azure).Solid working experience as a MS SQL Database Administrator.Solid working experience with database partitioning design, data warehouse, database design and coding, performance tuning and optimization, database errors diagnostic and troubleshooting, and database access management.Solid working experience in SQL queries optimization, writing efficient functions, stored procedures and complex SQL queries is needed.Proven working experience in Azure Synapse Analytics and Azure.Machine Learning platforms.Proven working experience in developing and operationalize Azure data pipelines and machine learning models.Hands-on experience with database standards and end user applications.Excellent knowledge in Database installation, configuration on Windows/Azure platforms.Excellent knowledge of data backup, recovery, security, integrity in MS SQL.Experience of SSRS report creation, MYSQL and PostgreSQL Sense of ownership and pride in your performance and its impact on company’s success.Critical thinker and have problem-solving skills.Ability to communicate complex data in a simple, actionable way.Good time-management skills.Great interpersonal and communication skills.Minimum 6-10 years of working experience as database administrator in any IT Systems / Manufacturing Execution System (MES).Must involve at least in full SDLC.Experience of process automation solutions is a plus.Industry 4.0.Digitization and automation of operational activities.Collecting and analyzing via Azure Synapse Analytics.Building tools to automate data collection.Developing prediction systems and machine learning algorithms.Ability to break down problems and gain understanding to make effective decisions.Innovative, motivated, team player and a quick learner.Attention to detail, curiosity, and passion for technology.Ability to establish clear, measurable goals and deliver on commitments.Ability to work well in the team and take end-to-end ownership of problems and their resolution.Proven ability to work creatively and analytically in a problem-solving.environment.Excellent communication (written and oral) and interpersonal skills.Excellent leadership, team player and management skills.', 'ADDITIONAL ADVANTAGEOUS SKILLS:': 'Experience in TIBCO Spotfire, JMP scripting, SSRS, SSIS, Java scripting is a plus.Database support of cloud applications, network and connectivity, smart analytic, etc.Experience in Python Programming with common data science toolkits, such as NumPy, SciPy, Pandas, Scikit-Learn, matplotlib etc..', 'OTHER REQUIREMENTS:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200723409E', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '22 days', 'Industry': 'Manufacturing / Production', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Parking, Vision, Transport provided islandwide, Uniform / Jumpsuit/Smart Casual, 12 hours shift Saturday or Sunday required/Regular hours, Mondays - Fridays', 'Specific Location': 'Tuas South Avenue 14'}, {'Company Overview': '\nREC Group is an international pioneering solar energy company dedicated to empowering consumers with clean, affordable solar power through high-quality solar panels with a leading power density. As Solar’s Most Trusted, REC is known for its patented innovations and multiple award-winning products with reliable long-term performance. The cornerstone for REC’s strong reliability is advanced and highly efficient manufacturing using Industry 4.0 practices. Founded in 1996 in Norway, REC has always been committed to a low carbon footprint in its solar materials and panels. REC is headquartered in Norway with operational headquarters in Singapore and regional hubs in North America, Europe, and Asia-Pacific.\n\nFind out more at www.recgroup.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/database-administrator-must-be-able-to-travel-10132146?jobId=jobstreet-sg-job-10132146§ionRank=441&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
This position is required to do occasional business travels and requires the ability to work and stay in Jamnagar of Gujarat, India for at least 1 year (beginning circa Jun 2023), due to expansion plans.
[{'position': 'Innovation Manager, Artificial Intelligence Lab, School of Computing'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Innovation Manager, Artificial Intelligence Lab, School of Computing (2 year contract)': "Design, implement and oversee strategic initiatives, programs, and projects by \xa0working with faculty members, research scientists and engineers, students, and other partners and collaborators to plan and manage the scope, schedule, cost and resources involved.\xa0.Monitor and facilitate successful delivery and implementation of strategic initiatives, programs and projects, ensuring that they are completed on time while meeting the requirements, such as schedule and cost constraints.\xa0.Establish and improve program and innovation management practices, such as protocols, processes, tools, and documents as necessary.\xa0.Develop strong relationships across various stakeholders, including project teams, internal management, external collaborators and partners..Perform horizon scanning and identify new opportunities for novel initiatives, programs, and projects in AI to create social and economic impact..Bachelors or master's degree in a quantitative/technical field, e.g., Computer Sciences, Engineering, or equivalent. Experience in Artificial Intelligence (AI) or Data Science is highly desirable.\xa0.Experience and a proven track record in program management or managing multidisciplinary, cross-functional projects.\xa0.Solid understanding of project management processes and practices. Project management certification (e.g., PMP, PRINCE2) is desirable but not required.\xa0.Familiarity with R&D projects and government/industry R&D funding schemes\xa0.Excellent communication and presentation skills, able to articulate complex issues to different stakeholders verbally and in writing.\xa0.Strong interpersonal and leadership skills, effective in fostering teamwork with members of diverse background. \xa0.Occasional travel is expected.\xa0."}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/innovation-manager-artificial-intelligence-lab-school-of-computing-10115442?jobId=jobstreet-sg-job-10115442§ionRank=442&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Innovation Manager, Artificial Intelligence Lab, School of Computing (2 year contract)
[{'position': 'Research Officer, Cell Line Development (BTI)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Responsibilities:': 'Be responsible for execution of experiments; collection, analysis and reporting of data.Documentation of clear and accurate research data.Practice highest standards of research integrity and laboratory safety.Execute necessary duties for laboratory maintenance.', 'Job Requirements': 'Bachelor of Biological Sciences, molecular biology or related field.Experience with mammalian cell culture in suspension.Experience in protein production in mammalian cells.Experience with other techniques such as ELISA, molecular cloning, PCR, qPCR and Western blotting.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-officer-cell-line-development-bti-10096553?jobId=jobstreet-sg-job-10096553§ionRank=443&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Associate (Data Science & Mobility), R00004884'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Survey and data collection for active mobility (walking, cycling, and riding PMD) safety.Statistical & causal correlation analysis for the collected data.Modelling and analysis of the interaction behaviour.Report writing and documentation for the project.', 'Job Requirements': 'Possess Master degree in Transportation Engineering/Data Science/Computer Science/Statistics/Social Science or related disciplines.Experience in transportation engineering.Experience in data analytics.Good interpersonal skills.Excellent teamwork awareness.Good communication and writing in English.Strong responsibility for research / work.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-science-mobility-r00004884-10051611?jobId=jobstreet-sg-job-10051611§ionRank=447&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Senior/ Market & Data Analyst (Sales Planning & Data Analysis)'}, {'company_name': 'Talent Trader Group Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'https://www.careers-page.com/talent-trader-group/job/R8Y6Y6': []}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '201230353E', 'EA No.': '13C6305', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tOur business philosophy stems from our belief that Mid management are vital to all organisations.\n\tWe thus focused our specialisation to the placement of these professionals and we are now among Singapore’s leading Mid management recruitment firms.\n\n\tOur understanding of Mid recruitment spans the following areas:\n\n\n\t\tIndustry knowledge\n\n\t\tCandidate psychology\n\n\t\tPre-recruitment analysis\n\n\t\tRecruitment\n\n\t\tPost recruitment maintenance\n\n\n\n\tWe are fully committed to achieving excellence in every assignment through leveraging our vast candidate pool, industry connections and strategic insights.\n\n\tFor candidate who applied for the advertised position is deemed to have consented to us that we may collect, use or disclose your personal information for purpose in connection with the services provided by us.\n\n\tMOM License No. 13C6305\n\n\thttp://talenttradergroup.com/'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-market-data-analyst-sales-planning-data-analysis-10112136?jobId=jobstreet-sg-job-10112136§ionRank=448&token=0~ee4c2c52-96ca-4b42-b28c-f459434ecece&fr=SRP%20Job%20Listing'}]
https://www.careers-page.com/talent-trader-group/job/R8Y6Y6
[{'position': 'Data & AI Solution Lead, Public Sector #Urgent'}, {'company_name': 'IBM Singapore Pte. Ltd'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Introduction': '', 'Your\xa0Role\xa0and\xa0Responsibilities': '', 'Job Description:': '', 'Job Requirements:': ''}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197501566C', 'Company Size': '501 - 1000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts), Flexible Benefit Plan'}, {'Company Overview': '\n\tIBM is a leading cloud platform and cognitive solutions company. Restlessly reinventing since 1911, we are the largest technology and consulting employer in the world, with more than 380,000 employees serving clients in 170 countries. With Watson, the AI platform for business, powered by data, we are building industry-based solutions to real-world problems. For more than seven decades, IBM Research has defined the future of information technology with more than 3,000 researchers in 12 labs located across six continents. For more information, visit www.ibm.com.\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-ai-solution-lead-public-sector-urgent-10129928?jobId=jobstreet-sg-job-10129928§ionRank=452&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Introduction
[{'position': 'FVP, Enterprise Data Governance & Quality, Data Management Office'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Data Manment Office': '', 'Big Data Analytics': '', 'Job Responsibilities': '', 'The main responsibilities include:': 'Lead the data quality innovations team rolling out data quality improvements across the Bank, covering Group and countries, and across multiple business functions and stakehers.Lead the planning, co-ordination, stakeher manment, progress reporting, risk and issue manment across the data quality improvement initiatives, in Singapore and the region.Collaborate with data producers and consumers across the Bank and look at innovative ways of identifying and quantifying data quality problems as well as ways of resolving data manment issues over the data lifecycle, in Singapore and the region\xa0.Provide guidance and expertise in the understanding of business-data requirements, design of data quality checks, data profiling, root cause analysis and design of data quality dashboards.Explore and apply innovative methods such as data science techniques and machine learning as part of data quality improvement strategies, and to proactively man related regulatory, operational and data risks.Provide regular updates to the Project Steering Committee as well as relevant Manment Committees on the progress of data quality initiatives.Develop strong relationship with key business and technology stakehers. Also, collaborate with other EDGQ leads in promoting the development and operationalisation of data governance and quality best practices.Be a change nt and promote adoption of robust data governance culture and discipline in business, data manment and technical processes.', 'Job Requirements': 'Degree in Information Technology, Business Computing, Data Analytics or related disciplines with at least 12 of working experience in the banking industry, or consulting industry with strong exposure to Financial Services.Proven track record in delivering data and innovation projects in financial institutions, involving improvements in data quality, underlying business processes and data architectures.Excellent project manment and facilitation skills, with the ability to man senior and diverse stakehers across the Bank and to navigate through conflicts with ease.Experience with managing personnel as a team leader or supervisor, providing coaching and mentoring support.Possess good understanding of banking products and processes, with a keen interest in driving transformations and process enhancements.Excellent written / oral communication as well as presentation skills.Experience of working with Big Data platforms, ETL tools and data quality tools and technologies will be an advant.', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '12 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/fvp-enterprise-data-governance-quality-data-management-office-10084210?jobId=jobstreet-sg-job-10084210§ionRank=454&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Central Lab Scientist – Flow Cytometry'}, {'company_name': 'Medpace Singapore Pte. Ltd.'}, {'small_section': [None, 'Posted on 29-Oct-22']}, {'Responsibilities': 'Monitor laboratory operations in order to verify that accurate, precise, and reliable data are being generated for clinical trials;.Interact with corporate leadership, administration, government agencies, accrediting agencies, and potential sponsors/clients to gain information and knowledge required to make appropriate business and/or operational recommendations and decisions;.Ensure that accurate, precise, and reliable data are compliant with regulations, study requirements and Medpace SOPs and GCP.Ability to troubleshoot technical issues;.Ability to meet aggressive timelines;.Routine flow cytometry data review and approval of clinical reports;.Develop and conduct training within flow cytometry;.Review and write Validation Plans/Reports/SOPs and;.Oversee design, validation, and maintenance of flow cytometry assays in regulated environment.', 'Qualifications': 'Experience with analysis of flow cytometry data is required;.Excellent communication and teamwork skills.Excellent record keeping skills are required;.Analytical Method Validation experience is preferred;.Clinical research or translational research experience is preferred;.Previous experience in a central lab environment is preferred; and.Excellent interpersonal skills to effectively interact with and influence stakeholders, both internally and externally, are required..Travel: Minimal.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200617614R', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '25 days', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts), Others'}, {'Company Overview': 'Medpace is a global, full-service clinical research organization with expertise and therapeutic specialization in multiple areas. Medpace has quickly become a global leader in providing pharmaceutical and biotechnology companies with customized solutions in the drug development process.\n\nAt Medpace, our experienced and accomplished employees give us a competitive advantage across the range of clinical research services we provide. Their commitment to quality has made us a global leader in research-based drug development and they are our most important asset. We invite you to join Medpace – a firmly established and continually growing company with a focus on quality, not quantity. You will also enjoy a stimulating work environment with exciting opportunities to work in international teams and develop your career.'}, {'url': 'http://www.jobstreet.com.sg/en/job/central-lab-scientist-flow-cytometry-10029560?jobId=jobstreet-sg-job-10029560§ionRank=455&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Manager / Assistant Manager(Data Science & Evaluative Analytics), SORA - (3516BR)'}, {'company_name': 'Woodlands Health'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Broad Function': '', 'Key Responsibilities and Duties': 'Participate in work-plan development exercise and strategy formulation to catalyse and enable SORA in meeting its targets and KPIs.Perform and complete stretched tasks within tight deadlines.Supervise analysts in the performance of their work.Assist with ad-hoc projects.Perform any other duties/ projects as assigned by supervisor.', 'Job Requirements': 'Quantitative analysis with strong knowledge in developing Statistical models, Predictive models, Machine Learning models, and Deep Learning models.Machine Learning frameworks such as pytorch, tensorflow, sklearn for regression, classification, time series, neural networks, natural language processing etc.Strong programming skills and in software such as SPSS Modeller, R, Python, Excel etc.Good communication and problem solving skills.Able to communicate complex ideas to technical and non-technical audiences.Good team player.Able and willing to coach peers and juniors on analytical expertise.', 'NHG Career Webpage (corp.nhg.com.sg/Careers), WHC Career Webpage (whc.sg/joinus), JobStreet Singapore (jobstreet.com.sg), Singapore Medical Association (sma.org.sg), Singapore Nurses Association (sna.org.sg), MyCareersFuture.sg, LinkedIn and WHC appointed recruitment agencies\xa0': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '201426682D', 'Company Size': '501 - 1000 Employees', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Business attire for office staff; uniform may apply for hospital-based staff, Office hours available for admin. staff ; Shifts work for hospital-based staff'}, {'Company Overview': '\n\tWoodlands Health (WH) provides care for the North-Western population in Singapore. We will operate a purpose-built integrated Campus set to open progressively from 2023. The Campus will include a fully integrated acute and community hospital, specialist outpatient clinics, intermediate and long-term care facilities and green healing spaces. We will offer a comprehensive range of acute, sub-acute, rehabilitative and transitional care services, working closely with partners to deliver seamless care within and beyond our Campus. Since 2016, WH has started serving and empowering residents in their health journey through our Community Nurse Posts and outreach efforts. In September 2020, WH introduced the GPFirst Programme in the North and opened the first community-based Urgent Care Centre at Kampung Admiralty making urgent care more accessible to residents living nearby.'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-assistant-manager-data-science-evaluative-analytics-sora-3516br-10069545?jobId=jobstreet-sg-job-10069545§ionRank=456&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Broad Function
[{'position': 'Research Assistant, - (Computer Science/Engineering/Electrical), - (R00008286)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Development of graph-based reasoning networks for facial landmark detection.Development of spatial temporal graph-based reasoning network to improve the accuracy of video facial landmark detection.Development of stabilization methods for video facial landmark detection.Development of graph neural network theory.Development of sequence modeling theory.Development of deep learning methods and theory.Development of computer vision methods\u200b.', 'Job Requirements:': '\u200bBachelor degree or above in Computer Science/Engineering, or Electrical/Electronic Engineering.Strong mathematical background and related project experience.Top-tier AI venue publications are very much preferred.Minimum 2 years of related work experience.Deep understanding of the theory of Machine Learning, Deep Learning, Computer Vision.Experience in at least one Deep Learning framework such as Tensorflow, Pytorch and Programming Languages such as Python, Matlab, R and/or C/C++.Demonstrated project experience related to graph-based reasoning and facial landmark detection will be an advantage.Good written and oral communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-engineering-electrical-r00008286-10140279?jobId=jobstreet-sg-job-10140279§ionRank=457&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Engineer'}, {'company_name': 'ASUS Global Pte Ltd'}, {'small_section': ['East', 'Posted on 2-Nov-22']}, {'Experience / Preferred Background': 'Master degree or above in a STEM field such as CS, Engineering or Mathematics/Statistics with a strong interest in machine learning and computer vision..Excellent programming skills in some rapid prototyping environment such as Python; C++ and parallel programming (e.g., CUDA) is a plus..Clearly and effectively present research findings and developments, both verbally and in writing, both internally and externally..Experience with one or more general purpose programming languages, including but not limited to: Python, C++..Experience with machine learning systems, algorithms or applications such as: deep learning, computer vision, unsupervised/semi-supervised learning, meta-learning, or time-series analysis..Previous development experience using NVIDIA, Intel and other potential AI inference accelerators and other tools to complete projects..', 'Essential Soft skills': 'The successful individual will be confident and able to engage across all levels and all functions..Good verbal and written skills will be required..A strong character able to negotiate effectively.Able to perform effectively while “juggling” a number of tasks..Must be organized & take ownership.Team player.', 'Desirable Skills': 'Open-source projects that demonstrate relevant skills and/or publications in relevant conferences and journals (e.g. NeurIPS, ICML, ICLR, CVPR, ICCV, ECCV, ICASSP).Experience with studied the following technologies or engaged in the projects of the following technologies: Self-supervised learning, Active learning, Transformer, Meta learning, Reinforcement learning etc..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '201306935R', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '21 days', 'Industry': 'Computer/Information Technology (Hardware)', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout ASUS:\nASUS is a multinational company known for the world’s best motherboards, PCs, monitors, graphics cards and routers and driven to become the most-admired innovative leading technology enterprise. With a global workforce that includes more than 5,000 R&D professionals, ASUS leads the industry through cutting-edge design and innovations made to create the most ubiquitous, intelligent, heartfelt and joyful smart life for everyone. Inspired by the In Search of Incredible brand spirit, ASUS won thousands of prestigious awards in 2018 and ranked as one of Forbes’\xa0Global 2000 Top Regarded Companies, Thomson Reuters’ Top 100 Global Tech Leaders and Fortune’s World’s Most Admired Companies. \xa0\n關於華碩\n華碩為美國《財富》雜誌評比「世界最受推崇企業之一」,並榮登美國《富比士》雜誌「全球最受信賴企業排行榜」及英國《路透社》「全球科技100強」。產品類別橫跨主機板、顯示卡、筆記型電腦、智慧手機、螢幕、路由器及全方位的科技產品解決方案,並積極拓展電競產品及開創AIOT新領域的各種應用。華碩致力追尋無與倫比的科技創新,為全球使用者創造體貼人心的智慧生活與無所不在的幸福感,以成為「數位新世代備受推崇的科技創新領導企業」為品牌願景。華碩全球員工數約14,500人,擁有世界級研發菁英超過5,000人,產品行銷全球70多個國家,營業額超過100億美元。\n\nToday, ASUS is looking to expand its presence in Singapore and is looking for enthusiastic, aggressive and career-minded individuals to join the team.\nFor more details, please visit https://www.asus.com/sg/.\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-10037530?jobId=jobstreet-sg-job-10037530§ionRank=458&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Experience / Preferred Background
[{'position': 'Executive, Healthcare Information (Analytics And Training)'}, {'company_name': 'SingHealth Polyclinics'}, {'small_section': ['Bukit Merah', 'Posted on 3-Nov-22']}, {'Requirements:': 'Facilitating requirements gathering sessions, digging deep to uncover users’ needs to set up project parameters.Brainstorming within or outside the team for viable solutions, then leading, coordinating and iterating through efforts to ensure timely project delivery.Turning insights into comprehensible narratives, guiding SHP’s evidence-based decision-making process by:.separating the overly-technical/irrelevant chaff from the wheat when proposing solutions or explaining to the layman.creating aesthetically-pleasing and functional visualisations that leads users to the desired narrative.Conducting training sessions to upskill the entire organisation in terms of simple data analyses.Degree in Mathematics, Statistics, Information Technology, Computer Science, Business Analytics or Data Science with 2-5 years of relevant experience; OR graduate of other disciplines with 3-6 years of relevant experience.Experience in data management and analytics work, with proven and relevant project delivery experience; preferably with experience in the Healthcare industry.Grounded in data management and analytics methods and processes to lead the team’s data management and analytics-related work and to be the subject matter expert within SHP.Intermediate-level skills in platforms/software like Oracle Business Intelligence (OBIEE), Tableau, R/Python; able to quickly wrangle data to the required form for analysis and presentations.Good interpersonal and communication skills; able to dig enough to uncover users’ needs, work within a cross-matrix team or solo, and create and present comprehensible narratives.Able to prioritise tasks and requests – all pressing and urgent – and yet maintain good relationships with stakeholders.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Admin/Human Resources, Clerical/Administrative Support', 'Registration No.': '52928775K', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Education support, Medical, Business (e.g. Shirts), Regular Work Hours'}, {'Company Overview': "SingHealth Polyclinics, a leader in family medicine, provides seamless, patient-centred and preventive healthcare that is affordable and accessible to all.\nSingHealth Polyclinics' network of\xa0polyclinics provides primary healthcare services to the community. It plays an integral role in promoting a healthy lifestyle within the community and empowering families with the knowledge of common health issues, care and treatment options.\n\nSingHealth Polyclinics is a member of Singapore Health Services (SingHealth) - a public healthcare cluster which also manages three hospitals and five specialty centres.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/executive-healthcare-information-analytics-and-training-10130238?jobId=jobstreet-sg-job-10130238§ionRank=459&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Requirements:
[{'position': 'Digital Marketing Manager'}, {'company_name': 'Kallang Alive Sport Management Co Pte. Ltd.'}, {'small_section': ['Kallang', 'Posted on 6-Nov-22']}, {'ROLES & RESPONSIBILITIES': 'Digital Strategy, Platform Development and Maintenance:.Lead the digital team in the creation, development, and implementation of an ‘Always-On” strategy including but not limited to SEO, SEM, and digital ads to create energising brand experiences at scale through systematic optimisation.Lead the digital team in analysing the performance of the “Always-On” strategy against established KPIs to determine success and translate analytics into insights to provide recommended improvements together with the appointed digital agency.Lead the digital team in coordinating ongoing website management and updates including but not limited to events on sale, activities and programmes updates, marketing campaigns and promotions, and troubleshoot and support website and digital issues that arise.Support website, app and CRM platform development and maintenance efforts, including UX coordination, testing and implementation for new features,.Marketing Automation Platform Management.Work cross-functionally with the ICT team as well as internal and external stakeholders to develop and manage the marketing automation platform.Lead the successful creation and execution of marketing automation strategies and tactics to drive programmes and activities take-ups, customer retention, frequency and lifetime value.Manage marketing automation campaign creation and implementation through segmentation strategies, owned communications, and content offerings.Analyse the performance of marketing automation campaigns against established KPIs to determine success and translate analytics into insights to provide recommended improvements.Lead the digital team in managing the email marketing calendar including creative coordination, set-up, deployments, and reporting.Marketing Promotions and Content Creation.Collaborate with a cross-functional team of creative, marketing, and communications members within the marketing department in campaign brainstorming and ideation.Work with the cross-functional team to plan, organise and execute the social media strategy for the quarterly and ad-hoc campaigns within budgets, ensuring cross-media efficiency and close tracking of results with actionable recommendations.Work with the cross-functional team to drive and create social content and assets for marketing campaigns and promotions.Lead the social team in managing paid social channel executions and marketing support for marketing campaigns and promotions.', 'SKILLS': 'Impressive track record as a digital marketing strategist, performance marketing manager and marketing automation lead with a background in both agency and corporate setting is highly desirable.Strong hands-on experience with SEO/SEM, performance marketing strategies and tools with at least 5 years of experience implementing and optimising digital advertising campaigns and marketing automation strategies and tactics.Solid knowledge of web analytics tools like Google Analytics and hands-on experience with tracking tools and setting up measuring strategies.Advanced knowledge of web design, CSS, and HTML for both mobile and desktop.Excellent verbal and written communication skills with a natural tendency to lead both people and projects, taking a logical data-driven approach to problem-solving.Attentive to details on what customers are asking and be able to manage stress in a fast-paced environment.Strong project management skills.At least 3 years experience managing a team.', 'PREFERRED QUALIFICATIONS': 'University degree in Marketing, Advertising, IT, Business or relevant field.Prior experience in the venues and events industry is an advantage.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Digital Marketing', 'Registration No.': '202235440C', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '15 days', 'Industry': 'Sports', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Smart Casual', 'Specific Location': 'Stadium'}, {'Company Overview': 'Kallang Alive Sport Management - a new chapter for Singapore Sports HubSport Singapore is setting up a new corporate entity to manage and operate the business and operations of the Sport Hub. We believe that this will unlock greater potential by allowing closer integration of the Sport Hub facilities with other facilities within the Kallang Alive precinct, expanding the breadth and quality of world-class international events, and driving more community activities at the venue. We also intend to make the Sports Hub more accessible to the broader community in Singapore, in terms of sports, lifestyle, entertainment and social uses, whilst maintaining its commercial sustainability.'}, {'url': 'http://www.jobstreet.com.sg/en/job/digital-marketing-manager-10110875?jobId=jobstreet-sg-job-10110875§ionRank=460&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
ROLES & RESPONSIBILITIES
[{'position': 'Research Scientist, - [Electrical and Electronic Engineering] - [R00002765]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Research Scientist (Electrical and Electronic Engineering/Computer Science)': 'Efficient software and hardware implementation, and benchmarking of post-quantum cryptographic primitives.Studying vulnerabilities and side-channel attacks for these designs.Preparing reports and scientific papers based on the findings.Possess PhD in the Electrical and Electronic Engineering/Computer Science.Experience in optimized software and hardware implementations with background in cryptography.Excellent teamwork and verbal, written communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-%5Belectrical-and-electronic-engineering%5D-%5Br00002765%5D-10132042?jobId=jobstreet-sg-job-10132042§ionRank=463&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Research Scientist (Electrical and Electronic Engineering/Computer Science)
[{'position': 'SAS Solution Lead'}, {'company_name': 'Deloitte Consulting SEA'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Optional': 'Experienced on Viya Visual Investigator (e.g. Network visualization configuration/customization, Workflow configuration/customization, etc.).Provide best practices on analytics and sas configuration for VI/VA.Experienced building end-to-end case lifecycle management including manual user data capture and storage, information sharing between partition and global network, etc..Experienced\xa0with customizing functional scenarios, workflows and alerts such as further manipulation of scores etc..Experienced on integration of VI with other SaS tools.Experienced to build process to store\xa0fields keyed in during different stages of investigation on VI in the database, and having the information reflected on the global network and in search results..Experience delivering VI/VA solution through the SDLC lifecycle – Development, QA and production.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '474377-V', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '14 days', 'Industry': 'Consulting (Business & Management)', 'Benefits & Others': 'Miscellaneous allowance, Medical, Parking, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tWant to make an impact?\n\t\n\tAt Deloitte, we are looking for talented professionals who want to play a key role in this exciting journey – talents like you. Every day we challenge ourselves to do what matters most for our clients, our people and for the society. We offer the opportunity to be part of a firm that makes an impact that matters, to work with inspiring leaders and talented professionals to deliver outstanding value to our clients in a culture that is inclusive, collaborative and one that provides exceptional career experience.'}, {'url': 'http://www.jobstreet.com.sg/en/job/sas-solution-lead-5163816/origin/my?jobId=jobstreet-my-job-5163816§ionRank=465&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Optional
[{'position': 'Scientist, Centre for Frontier AI Research, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'JOB DESCRIPTION': '', 'Successful candidates will be responsible for:': 'Designing novel algorithms for improving the performance (e.g. accuracy, diversity, explanation and fairness) of various machine learning models and systems.Using different learning paradigms, e.g. deep and shallow learning frameworks for effectively performing analytical tasks in various data domains(e.g. graph, biology, and text, etc.).Preparing high-quality papers for being published in major AI journals and conferences.', 'JOB REQUIREMENTS': 'PhD Degree in Computer Science or Computer Engineering.Strong track record of research in AI and related applications (e.g. publications in related journals like TPAMI, TNNLS, TCYB, TEVC, TFUZZ, JMLR and other IEEE or ACM Transactions, conferences like ICML, NeurlPS, ICLR, CVPR,AAAI, and IJCAI).Possess research experience in machine learning (e.g. unsupervised or semi-supervised learning), and data mining for real-world data-driven problems.Strong programming skills or other quantitative skills (e.g. statistical analysis).Ability to work both independently and in a team..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-centre-for-frontier-ai-research-ihpc-10126009?jobId=jobstreet-sg-job-10126009§ionRank=466&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
JOB DESCRIPTION
[{'position': 'Scientist (AI), Computing & Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Scientist (Artificial Intelligence)': '', 'Responsibilities': 'Conduct cutting-edge R&D in machine learning, with focus on federated learning, split learning, and privacy-presvering machine learning related topics..Publish papers on top-tier conferences and journals, such as CVPR, ICCV, ICML, NeurIPS, ICLR, AAAI, KDD, IJCAI, etc..Apply distributed privacy-preserving algorithms to develop various decentralized and trusted computing systems and platforms such as for domains like healthcare, digital economy, supply chain, agritech, advanced manufacturing and engineering, as well as the Smart Nation initiative..', 'Qualifications': 'PhD degree in Computer Science/Electrical & Electronics Engineering/Computer Engineering or equivalent..Familiar with one or more areas in machine learning and deep learning such as computer vision, natural language processing, semi/self-supervised learning, domain aaptation, adversarial learning, graph neural networks, contrastive learning, continual learning, meta learning, etc..Published papers at top AI-related conferences like CVPR, ICCV, ICML, NeurIPS, ICLR, AAAI, IJCAI, KDD, or journals such as TPAMI, TNNLS, TIP, TMI, Neurocomputing, JMLR, IJCV..Proficient programming skill in Python, familiar with open source tools such as PyTorch..Self-driven, collaborative, with good communication and presentation skills..', 'Preferred qualifications': 'Familiar with distributed machine learning, federated learning, split learning..Familiar with the recent advance in the field of deep learning, e.g., generative models, transformers..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-ai-computing-intelligence-ihpc-10125490?jobId=jobstreet-sg-job-10125490§ionRank=467&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Scientist (Artificial Intelligence)
[{'position': 'Data Product Manager - (2200014N)'}, {'company_name': 'The Great Eastern Life Assurance Co Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Job Purpose': '', 'The Job': 'Recognized as the Data Product owner, the DPM will be deemed as the point of contact and key liaison party with all external stakeholders including the regulators.Manage and align across all internal stakeholders on\xa0business requirements, economic & liability model for data provision and consumption, principles of participation and customer consent, operational requirements.Manage the implementation of the data product and subsequent enhancements / change requests within the given timelines.Operationalize the data product and partner with business to maximize the effective use of data to create and maintain strategic advantage.Accountable for the quality, reliability and sustainability of the data product.Design the roles of team members to ensure complete coverage of all aspects of due diligence in running the data product, which covers sustainability and business continuity.Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..', 'Our Requirements': 'Degree in Computer Engineering, Computer Science, Mathematics, Software Engineering, equivalent fields or proven experience in data engineering.Stakeholder\xa0Management – Conversant in Business terms and ability to resolve and explain data analytics issues with Business users and other concerned stakeholders.A minimum 5 years of experience in Data Engineering and Data Analytics field. A data practitioner with proven experience in delivering data-driven business solution and data-driven process augmentation.Excellent interpersonal and communication skills, with ability to manage different levels of stakeholders across the organization and navigate through conflicts and differences competently and with ease;.Extensive experience in team and people management;.Detail oriented and analytical, with good problem solving, organizational skills, and program management knowledge and experience;.Demonstrated experience in working with varied forms of data infrastructure inclusive of relational databases such as SQL, Hadoop, Spark, and column-oriented databases such as AWS Redshift, MySQL, and MariaDB.Process oriented, and able to translate complex problems into logical and repeatable processes and diligently document the proposed technical solution.Experience with MicroServices will be an advantage.High level of integrity, takes accountability of work and good attitude over teamwork..Takes initiative to improve current state of things and adaptable to embrace new changes..', 'About Great Eastern': '', 'To all recruitment agencies:': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '190800011G', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Insurance'}, {'Company Overview': '\n\tFounded in 1908, Great Eastern is a market leader and a well-established trusted brand in Singapore and Malaysia. With S$82.5 billion in assets and over 4 million policyholders, the Group also operates in Indonesia and Brunei and has a presence in China as well as a representative office in Myanmar.\n\n\tThe Great Eastern Life Assurance Company Limited and Great Eastern General Limited have been assigned the financial strength and counterparty credit ratings of "AA-" by Standard and Poor\'s since 2010, one of the highest among Asian life insurance companies.\n\n\tWe are a LIFE company and our purpose is to empower generations to live healthier and better so that they can live life to the fullest. Be it celebrating life’s simple moments or commemorating life’s major milestones, every day, in many ways, we inspire those around us to live great and celebrate life.\n\n\tPlease note that our career opportunities are only posted on our Career Website (http://grp.gelife.co/findacareer) and on our authorised job platforms which are specifically LinkedIn, JobStreet and eFinancialCareers. We do not initiate any unsolicited calls and all official emails from Great Eastern will be sent from email addresses ending with “@greateasternlife.com”. Should you receive any communications outside from these channels listed, please do not provide any personal information and do reach out to us at [email\xa0protected] or at 6248 2990 for us to assist you and confirm the legitimacy of the content.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-product-manager-2200014n-10103715?jobId=jobstreet-sg-job-10103715§ionRank=468&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Job Purpose
[{'position': 'VP, Data Engineer - Platform Tools'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Technology and Operations ': '', 'Job Responsibilities': '', 'Job Requirements': '', 'Functional skillsets': '', 'Technical skillsets': '', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-data-engineer-platform-tools-10075164?jobId=jobstreet-sg-job-10075164§ionRank=471&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Senior AI Developer'}, {'company_name': 'ST Engineering Geo-Insights Pte Ltd'}, {'small_section': ['Ang Mo Kio', 'Posted on 4-Nov-22']}, {'About us': 'Develop machine learning, deep learning algorithms and graph networks using multi-modality data sources such as imagery, text and tabular data for maritime, agriculture, infrastructure and sustainability applications.Work with software team to integrate developed algorithms into geospatial system products.Work with product, business development and sales teams to develop comprehensive geospatial products roadmap.Provide pre and post sales technical support.Degree / Master / PhD in Electrical Engineering, Computer Science, Mathematics or Statistics or equivalent.At least 5-10 years of relevant work experience.Proficient in machine learning and deep learning techniques.Proficient in Python programming and experience with libraries such as PyTorch, openCV, scikit-learn, XGBoost and Prophet.Experience with Git, containerisation and software development workflow.Knowledge of cloud platforms and development would be an advantage.Knowledge of working with geospatial data would be an advantage.Knowledge of Earth Observation Satellite systems and their imaging products would be an advantage.Applicants should be motivated, proactive, able to work independently and results oriented.Location: Ang Mo Kio.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201907611C', 'Company Size': '201 - 500 Employees', 'Industry': 'Science & Technology', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tEncompassing satellite communications ground infrastructure and satellite manufacturing to earth observation and geospatial analytics, our comprehensive range of satellite solutions helps to advance and grow economies, enables tomorrow’s smart cities and shapes the future of how the world connects.\n\n\tA leading satellite communications manufacturer and solutions provider, we power many of the world’s satellite networks that keep people and businesses connected any place, any time. Our universal, multi-access, multi-orbit platform enables customers to offer unified services across any telecommunications network, speeding their time to market and driving profitability. Our breakthrough technologies and solutions enable satellite operators, service providers and network operators around the world to deliver a much wider range of services that will empower end users anywhere in the world with consistent, reliable, high quality experiences across diverse and challenging environments.\n\n\tTogether with our suite of satellite imagery and geospatial analytics services, satellite design, manufacturing and integration, satellite launch and ground operations services, we enable new possibilities and transform how businesses operate.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-ai-developer-10133787?jobId=jobstreet-sg-job-10133787§ionRank=472&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
About us
[{'position': 'Senior Clinical Informatics Analyst (Data Analytics Infrastructure) - (4699BR)'}, {'company_name': 'National Healthcare Group Corporate Office (HQ)'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'(a)\xa0': 'Bachelor’s Degree in Business, Digitalization, Technology or related discipline.At least 5 years’ of experience in data architecture/engineering..Working knowledge of common programming languages such as Python, R, Java or C#..Experience with relational databases (including SQL fluency) and nonrelational databases..Familiarity with extract-transform-load/extract-load-transform operations is a must (eg Informatica)..Familiarity with data warehousing concepts (schemas, operational data stores, feature stores, datamarts) is a must..Experience with cloud-based computing, storage, analytics, administration and management, such as Healthcare Commercial Cloud..Prior experience in healthcare industry or technology startups will be an advantage.Professional certification in cloud infrastructure, Project Management, data engineering, data-ops or equivalent areas would be advantageous..Working knowledge of streaming ingestion and streaming analytics is an advantage..Working knowledge of container technology is an advantage..People Management skills.Ability to work independently.Adaptable.Creative.Good Communication Skills.Design Thinking.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200002150H', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Bonus'}, {'Company Overview': '\nThe National Healthcare Group (NHG) is a leader in public healthcare in Singapore, recognised at home and abroad for the quality of its medical expertise and facilities. Care is provided through an integrated network of six primary care polyclinics, acute care and tertiary hospitals, national specialty centres and business divisions. Together they bring a rich legacy of medical expertise to our philosophy of integrated patient-centred care.\n\n\tNHG\'s vision is "Adding Years of Healthy Life". This vision goes beyond merely healing the sick to the more difficult and infinitely more rewarding task of preventing illness and preserving health and quality of life. With some 20,000 staff, NHG aims to provide care that is patient-centric, accessible, seamless, comprehensive, appropriate and cost-effective.\n\n\tAs the Regional Health System (RHS) for Central Singapore, it is vital for NHG to partner and collaborate with stakeholders, community advisors, and voluntary welfare organisations. Together with our patients, their families and caregivers, we aim to deliver integrated healthcare services and programmes that help in Adding Years of Healthy Life to all concerned.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-clinical-informatics-analyst-data-analytics-infrastructure-4699br-10057255?jobId=jobstreet-sg-job-10057255§ionRank=473&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
(a)
[{'position': 'Assistant Professor in Economics - Data Science'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Nanyang Technological University, Singapore': '', 'School of Social Sciences': '', 'Tenure-track Assistant Professor in Economics and Data Science': '', 'Emoluments': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-professor-in-economics-data-science-10051287?jobId=jobstreet-sg-job-10051287§ionRank=474&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Nanyang Technological University, Singapore
[{'position': 'Research Scientist, Chemicals'}, {'company_name': 'Company Confidential'}, {'small_section': ['Queenstown', 'Posted on 2-Nov-22']}, {'Responsibilities': 'Propose, research and experiment on new inhalable aerosol formulations for drug delivery, evaluate them for chemical and physical properties, understanding the aerosol dynamics in evaporation, deposition, and hydroscopic growth.Plan and conduct experiments on continuous improvement of aerosol formulations including the drug encapsulation, nano emulsions, and evaluate the efficiency of aerosol delivery.Research and identifying new surfactants, emulsifiers, and preservatives for the aerosol formulations and improving the stability.Oversee a variety of new innovations projects and investigations within biological, organic, chemical, physical and life science areas.Responsible for overlooking the analytical method development and characterization of aerosol particles and formulation stability.Understanding and reasoning of the formulations in drug delivery and human biological systems.Conduct literature review, design of experiments, data analysis, developing new experimental set-up, test methods and protocols. Provide all the required scientific support to enable the laboratory to function effectively, while adhering to correct procedures and health and safety guidelines..Ability to lead various team members in R&D, projects, and product development. Involved in the advancement and development of modern applications and science.Keeping the necessary documentation (logs, reports, etc.) in orderly manner on the work carried out.Selection or development of analytical methods for determining the physicochemical and technical properties of substances and the improvement of these methods.Maintaining a database of raw materials and samples and its updating.Proper care and usage of equipment and the workplace, including maintenance of equipment to ensure proper calibration of equipment.Compliance with health and safety rules, fire safety and internal regulations.Establish lab regulations and records.Other ad-hoc tasks / projects assigned by Senior Management/Board member.', 'Qualifications and Requirements': "A Bachelor's degree and above in biology, chemistry, biochemistry, microbiology, or other relevant life sciences field..Good knowledge on drug delivery, aerosol chemistry, particle size analysis, understanding the aerosol lifecycle and interactions of aerosol particles with human respiratory systems, evaluation of physical and chemical properties of aerosol particles..Good understanding in surfactants, emulsifiers, preservatives, and anti-foaming agents..Experienced in aerosol formulations and design of experiments, chemical analysis, hands-on experience in aerosol characterization methodologies and aerosol instrumentation..Knowledge on FDA and European Union regulations..Work closely with senior scientists to design and execute experiments, develop new products, and test hypotheses..", 'Specific Requirements (Mandatory for the role)': 'Able to manage a multitude of projects and/or vendors simultaneously.With experience in leading projects is an advantage..Good level of liaison skills and ability to meet deadlines and targets..Good team-work skills actively involve colleagues across the business, builds the benefits of collaborative working..Innovative thinker, ability to provides speedy solutions and creative.Ability to work in a team, creative thinking in resolving issues, diligent in work attitude, and data accuracy.Able to organize work in a systematic manner, responsible attitude, honesty in the implementation of assigned tasks, reliable and committed in undertaking assigned tasks.Able to work under time pressure and to withstand stress.Expert knowledge of laboratory health and safety protocols..Knowledgeable and capable of operating and developing methods to characterize the aerosol particles.Experience in conducting literature study, research work and new innovations independently.Proper and accurate record keeping of all tests and experiments performed and ensuring timely reporting.Good computer skills (MS Office).', 'Others': 'Working Location: Singapore, Commonwealth.5 working days per week.Remuneration commensurate with relevant working experience and similar trade / knowledge.Leave, medical, Dental benefits, and Group insurance..Flexible Working Time Policy.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology'}, {'Company Overview': 'Being the leading FMCG corporation in Asia, we strive to offer our consumers with best product experience. We are developing and constantly innovating, to open new markets - working with passion and commitment to deliver winning products.As our business is expanding, we respect the needs of our stakeholders and environmental demands. We are incorporated since 2009 and we take pride in our diversified portfolio. Being a dynamic and innovative company with regional presence, our headquarter is located at the west region of Singapore with other regional offices located at Asia & European countries.Our competitive edge is the use of state-of-the art technology, backed by experience and heritage in our core business. Our talented and motivated teams strive daily to create products that will change the world.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-chemicals-10126306?jobId=jobstreet-sg-job-10126306§ionRank=475&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': '2023 Digital Innovation Graduate Programme - Singapore'}, {'company_name': 'HSBC Limited'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Singapore': '', 'Requirements:\xa0\xa0': '', 'What you’ll do': '', 'Who you are': '', 'What you’ll learn': []}, {'Career Level': 'Entry Level', 'Qualification': 'Not Specified', 'Job Type': 'Internship', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': 'S16FC0010A', 'Company Size': 'More than 5000 Employees', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties)'}, {'Company Overview': '\n\nAbout HSBC\n\n\t\tAs one of the world’s leading international banks, HSBC was founded in 1865 and has two home markets - Hong Kong and London. The HSBC Group opened its first branch in Singapore in 1877.\xa0 HSBC Singapore provide personal, private, commercial and investment banking services including areas such as insurance, forfaiting, trusts, securities and capital markets.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/2023-digital-innovation-graduate-programme-singapore-10074824?jobId=jobstreet-sg-job-10074824§ionRank=476&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Singapore
[{'position': 'Specialist (AOT), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Project description:': 'The project is on ”Semiconducting Exciton Devices”, exploring exciton dynamics in van der Waals heterostructure devices for ultrafast photodetection..One specialist who has one or more following hands-on skills is desired..He / She will be tasked with low level electrical signal measurement, or fabrication of nanodevices, or designing opto-mechanical components..', 'Job Requirements:': "Diploma or Bachelor's degree in Materials science / Physics / Applied Physics / Electrical Engineering.Ability to draw scientific figures and draft experimental reports.Good problem-solving skills.A passion and zeal for trying out new ideas in labs have one of the following experiences.Desired Experiences (One of them):.Nanofabrication of semiconductor devices in clean room (E-beam lithography, e-beam evaporation, dry etching).Optoelectronic semiconductor devices measurement including low-signal electronic measurement, optical measurement.Designing mechanical components with computer-assisted design software (CAD / Solidworks etc.).Programming hardware for measurement automation using Python / LabVIEW / other languages."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/specialist-aot-imre-10096723?jobId=jobstreet-sg-job-10096723§ionRank=478&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Project description:
[{'position': 'Senior Data Analyst (POWER BI / TABLEAU / GOOGLE TAG / SQL) [ID: 563342]'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Central', 'SGD\xa04,500 - SGD\xa07,500', 'Posted on 28-Oct-22']}, {'Work Location: Downtown': '', 'What do we need:': '', 'What’s special about this role:': '', 'Required qualifications:': '5+ years’ experience in digital marketing/ e-commerce analytics..Proficiency in a major digital analytics tool – Google Analytics, Adobe Analytics, Heap or similar..Proficiency in SQL.Proficiency in data visualization tools like Tableau, Power BI or Google Data Studio.Solid understanding of tag management implementation and ongoing support, utilizing Google Tag Manager, Adobe Launch, or Tealium.Knowledge of cloud-based product sets like AWS, Google Cloud Platform or similar..', 'Job Code: SIYT': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting', 'Specific Location': 'Downtown'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-analyst-power-bi-tableau-google-tag-sql-%5Bid%3A-563342%5D-10113487?jobId=jobstreet-sg-job-10113487§ionRank=479&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
Work Location: Downtown
[{'position': 'Research Fellow, AI Singapore'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-ai-singapore-10108304?jobId=jobstreet-sg-job-10108304§ionRank=480&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing'}]
[{'position': 'Senior Data Engineer'}, {'company_name': 'Hudson Global Resources ( HQ )'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Major Foreign-Based Manufacturing Organisation in Singapore': 'Major Foreign-Based Manufacturing Organisation in Singapore.Key IT Role in Singapore.', 'Key IT Role in Singapore': 'Employee-Centric Environment.', 'Employee-Centric Environment': '', 'Responsibilities:': '', 'Requirements:': '', 'You MUST BE': '', 'based in Singapore currently and has relevant work experience in Singapore.': []}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199501238M', 'EA No.': '18S9265', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tHudson is a talent solutions company with expertise in leadership, specialized recruitment and talent management.\n\n\tOur Singapore office specializes in recruiting mid-to-senior level positions across Accounting & Finance, Financial Services, Human Resources, Technology and Sales & Marketing.\n\n\tTo find the right talent for your team or to explore opportunities, please visit hudson.sg.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-engineer-10122412?jobId=jobstreet-sg-job-10122412§ionRank=482&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Major Foreign-Based Manufacturing Organisation in Singapore
[{'position': 'Senior Research Engineer I, - (Computer Science) (R00010614)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Description:': 'Gather system requirements by defining and analyzing system problems.Design and implement natural language processing (NLP) algorithms and models for semantic analysis, e.g., word embedding, named-entity recognition, coreference resolution and parsing, and ontology and knowledge graph constructions.Application of NLP in knowledge and information retrieval, and relevancy ranking with spatiotemporal consideration.Conduct “translational” research to apply the state-of-the-art solutions at scale for real world challenges.Documentation and scientific reporting.', 'Job Requirements:': 'PhD in computer science.Some experience and research background in AI and NLP.Passionate about NLP and AI related research, innovations and their applications.Proficient in one or more programming languages (e.g., Python, C/C++, etc.) and research packages/modules.Experience in large-scale text processing and analytics.Good track records in publication.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-engineer-i-computer-science-r00010614-10071250?jobId=jobstreet-sg-job-10071250§ionRank=483&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Finance Statistic Analyst'}, {'company_name': 'MHC HEALTHCARE PTE LTD'}, {'small_section': ['West', 'SGD\xa04,000 - SGD\xa05,600', 'Posted on 31-Oct-22']}, {'Responsibilities:': 'Developing and implementing data collecting strategies..Extracting and organizing raw data..Setting parameters to disqualify non-usable data..Analyzing and interpreting data using statistical modelling software..Creating spreadsheets and data analysis reports..Presenting reports to business development managers and stakeholders..Assisting with the interpretation and use of extracted data..Evaluating the success of business decisions based on data trends..Working with Finance and the sales team, evaluating sales performance, campaign effectiveness, participate in tenders and bids when required..', 'Requirements:': "Bachelor's degree in statistics, mathematics, or similar..More than 5 years of relevant experience as a statistic analyst..In-depth knowledge of statistical data modelling software..Ability to spot data trends..Knowledge of data mining and scrubbing..Advanced mathematical skills..Experience with data visualization tools..Above average communication and interpersonal skills..Excellent report writing skills.."}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '199608119C', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '28 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Medical, Business (e.g. Shirts), Annual Leave, 12 Hours Rotating Shift', 'Specific Location': 'Commonwealth'}, {'Company Overview': 'MHC Asia Group is a leading health technology company with a network of over 2000 panel clinics in Singapore and 880 in Malaysia with foot prints in Indonesia, Philippines and Hong Kong. It is currently processing more than 1.5million outpatient claims annually.Majority of insurers and thousands of corporate clients adopt MHC’s web-based system to help manage their healthcare costs and profile the health of its members and workforce.MHC simplifies healthcare and connect stakeholders in the healthcare delivery chain with effective use of information technology and big data analytics — increasing efficiency, ensuring transparency, lowering costs and boosting productivity.OUR VISION To make a difference in people’s lives and to empower individuals to take ownership\xa0of their health.OUR MISSION We simplify healthcare and connect the stakeholders in the healthcare delivery chain with effective use of information technology and big data analytics — increasing efficiency, ensuring transparency, lowering costs and boosting productivity.Visit us at:www.mhcasia.com/managedcarewww.mhcasia.com/health_screeningwww.facebook.com/mhcasiawww.youtube.com/mhcasia'}, {'url': 'http://www.jobstreet.com.sg/en/job/finance-statistic-analyst-10031882?jobId=jobstreet-sg-job-10031882§ionRank=484&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Head, Data Platform and Engineering'}, {'company_name': 'The Great Eastern Life Assurance Co Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'The Job': 'Own the technical strategic roadmap planning and execution for the data platform. Collaborate with engineering teams, product managers, and data scientists to inform this roadmap..Lead the development of our group’s data products, such as product experimentation, user audiences/segmentation, product analytics, etc..Ensure our data platform operates securely, efficiently and cost effectively 24x7.Establish data generation, collection, transformation and governance best practices.Design and develop unified data schemas and tables.Scale our data pipelines, tools and data stores.Help identify and build shared libraries and resources for data science and analytics.Own data engineering practices, raising the bar for the quality and speed of software delivery and operations..Set clear measurable goals for your data engineers..Foster a culture of continuous growth improvement through coaching, mentoring, feedback and clear measurable outcomes..Attract, develop and retain great engineers who are passionate about data engineering and serving internal and external users. Support their career growth and development..As part of the leadership team, work with key stakeholders to proactively shape the organisation’s culture\xa0and conduct environment that is aligned to the organization’s Core Values.Champion culture and conduct behavioral expectations within the Department/Division.Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices.', 'Our Requirements': '10+ years experience as a hands-on senior data engineering leader.A track record of developing and leading data teams via mentorship and coaching diverse, multi-cultural engineers and engineering managers..Experience in query optimization, resource management, and data lake/warehouse performance.Experience with data workflow/orchestration platforms (ex. Airflow, KubeFlow, Argo, Luigi).Experience with data streaming platforms (ex. Beam, Dataflow).Understanding of distributed compute engines (ex. Presto, Spark, Flink) and modern Big-Data storage technologies (ex. Delta Lake, Iceberg, Hudi).Experience with cloud infrastructure (ex. Google Cloud, Kubernetes, Terraform).Experience deploying and scaling ML solutions using open-source frameworks.Business understanding and ability to manage a budget. Ability to identify, evaluate and convey the engineering and technology choices and trade offs..Bachelor’s degree, with a strong academic record, in Computer Science or Engineering, Masters preferred..Demonstrates alignment with the organisation’s core values through expected behaviours.High level of integrity, takes accountability of work and good attitude over teamwork..Takes initiative to improve current state of things and adaptable to embrace new changes..', 'About Great Eastern': '', 'To all recruitment agencies:': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '190800011G', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Insurance'}, {'Company Overview': '\n\tFounded in 1908, Great Eastern is a market leader and a well-established trusted brand in Singapore and Malaysia. With S$82.5 billion in assets and over 4 million policyholders, the Group also operates in Indonesia and Brunei and has a presence in China as well as a representative office in Myanmar.\n\n\tThe Great Eastern Life Assurance Company Limited and Great Eastern General Limited have been assigned the financial strength and counterparty credit ratings of "AA-" by Standard and Poor\'s since 2010, one of the highest among Asian life insurance companies.\n\n\tWe are a LIFE company and our purpose is to empower generations to live healthier and better so that they can live life to the fullest. Be it celebrating life’s simple moments or commemorating life’s major milestones, every day, in many ways, we inspire those around us to live great and celebrate life.\n\n\tPlease note that our career opportunities are only posted on our Career Website (http://grp.gelife.co/findacareer) and on our authorised job platforms which are specifically LinkedIn, JobStreet and eFinancialCareers. We do not initiate any unsolicited calls and all official emails from Great Eastern will be sent from email addresses ending with “@greateasternlife.com”. Should you receive any communications outside from these channels listed, please do not provide any personal information and do reach out to us at [email\xa0protected] or at 6248 2990 for us to assist you and confirm the legitimacy of the content.'}, {'url': 'http://www.jobstreet.com.sg/en/job/head-data-platform-and-engineering-10103739?jobId=jobstreet-sg-job-10103739§ionRank=485&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
The Job
[{'position': 'Principal Data Engineer, Data Engineering #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Join us on this journey to make a difference for the nation and our future generations, if you are:': 'Experienced leading data pipeline building and data wrangling and enjoys optimizing data systems and building them from the ground up as part of multiple cross-functional teams,.Have strong project management and organizational skills, self-directed and comfortable supporting the data needs across multiple teams, systems and products,.Excited by the prospect of optimizing or even re-designing central and agencies’ data architecture to support next generation of government products and data initiatives, and.Recognized expert with proven technical leadership, experienced working in a agile team to build systems from architecture to deployment for cloud and on-prem infrastructure, and.Have the desire to serve the public good through the use of technology..', 'What you will be working on:': 'Take the driving seat and lead our data engineers in complex technical projects to:.Expand and optimize our data and data pipeline architecture, as well as optimize data flow systems for cross functional teams in a secured and scalable manner..Assemble large, complex data sets that meet functional / non-functional business requirements, transforming data into formats that are easy to consume and analyze..Identify, design, and implement internal process improvements, e.g., automating manual processes, optimizing data delivery, re-designing infra for greater scalability..Build the infra required for optimal extraction, transformation, and loading of data from a variety of data sources using SQL and industry standard Infra-as-Code tools..Build analytics tools that utilize the data pipeline to provide actionable insights into key performance metrics and support our next gen of products and data initiatives..Work with stakeholders including the Executive, Product, Data and Design teams to support their data and data pipelining use cases, and ensure optimal and secured data delivery architecture is consistent across projects, products and platforms..Drive innovative initiatives that uplift data capability across the government sector:.Develop a strategic sense of key organisations, software and hardware tools, methodologies, and best practices in the data engineering landscape..Be the bridge between engineering and product line management and translate market requirements into product definitions and architecture designs..Analyse and solve complex data engineering problems, and translate architecture designs into implementations that satisfy the market requirements..Educate the team on new technological advances and work alongside them in proof-of-concept research projects and subsequent agile product delivery..Provide expert perspective to help shape data-related strategy and initiatives, and be our technical ambassador by writing internal blogs or publishing white papers..', 'What we are looking for:': 'Candidate with 8+ years of experience in a Lead Data Engineer role, who has attained a Bachelor’s degree in Computer Science or other relevant engineering degree..In-depth working knowledge across a variety of relational SQL and NoSQL databases, including efficient query authoring, performance optimization and troubleshooting..Experience building and optimizing data, data pipelines, and architectures, with processes to support transformation, data structures, metadata, dependency and workload management..Experience performing root cause analysis on internal and external data and processes to answer specific business questions and identify opportunities for further improvement..Working knowledge of message queuing, stream processing, and scalable data stores..A successful history of processing and extracting value from large datasets from different sources and systems, with strong analytics skills related to working with unstructured data..', 'You should also have experience using the following software/tools:': 'Big data and stream-processing tools: Hadoop, Spark, Beam, Flink, Kafka, etc..Data pipelining and workflow management tools: Luigi, Airflow, etc.Cloud computing environments and services: AWS, GCP, Azure.DevSecOps tools: Git, Kubernetes, Docker, Terraform etc.Programming languages: Python, Java, C++, Scala, etc.'}, {'Career Level': 'Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-data-engineer-data-engineering-jobsthatmatter-10052814?jobId=jobstreet-sg-job-10052814§ionRank=486&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Join us on this journey to make a difference for the nation and our future generations, if you are:
[{'position': 'Digital Twin Simulation Engineer'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Digital Twin Simulation Engineer': 'Golden Opportunity with\xa0EV MNC\xa0.Competitive Remuneration\xa0Package.Leading Digital Twin R&D division.', 'About the Client': '', 'Main Duties & Responsibilities': 'Design, develop, implement and maintain the algorithm development of a digital simulation model for a 60+ hectares smart factory using Unity-based simulation engine.Utilize Java and C# to enhance the in-house 3D simulation engine.Be involved in improving the simulation library for end-to-end manufacturing production line.Take into consideration physics and latency factors while creating a two-way digital twin simulation engine that is accessible cross border using 5G technology.Constantly improve this state-of-the-art system as the smart factory continually evolve.', 'Education Backgrounds': "Master's or Bachelor's Degree in Computer Engineering, Mechanical Engineering, Information Systems Engineering or equivalent with at least 3 years of Digital Twin development experience especially in simulation.Experience in at least one of the following is a must: Java and/or C#.Experience in Unity preferred.Prior exposure in an established Automotive or Manufacturing setting will be recommended.", 'What to Expect': '', 'Interest & Apply': '', 'Personnel Registration No R1980978': '', 'EA license No. 09C5803': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/digital-twin-simulation-engineer-10108885?jobId=jobstreet-sg-job-10108885§ionRank=487&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Digital Twin Simulation Engineer
[{'position': 'Data Manager, Heat Resilience and Performance Centre (2-year contract renewable)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'The Role': 'Establishing and operationalizing the required data governance and infrastructure.Developing supporting data architecture and management plans in support of the Centre’s research and development requirements.Ensuring databases and archives are protected from security breaches and data losses.Developing data visualization frameworks and models.Creating and implementing models to augment research workflows in the Centre.Supporting project implementation\xa0.Performing extraction, transformation, analysis and loading of large amounts of data.', 'Qualifications': 'MSc/MA in computing, data analytics, healthcare statistics or relevant field.At least 3 years of experience with demonstrated competency at the junior managerial level.Excellent understanding of data administration and management functions (collection, analysis, distribution, etc).Proficient with programming in Python and other AI related frameworks.Proficient in statistical software (e.g. SPSS, SAS, etc).Familiar with modern database information system technologies.Familiar with data quality, metadata and master and reference data\xa0.Knowledge of data protection techniques \xa0.Excellent written and verbal communication, with the ability to write for a variety of audiences\xa0.Resourceful and self-driven with high degree of professional integrity\xa0.Creative and strong in strategic thinking and planning\xa0.Strong business process and analytical skills with the ability to assimilate information quickly and communicate complex requirements effectively\xa0.Adaptable and able to multitask well with clear follow-through\xa0.High levels of attention to detail and quality \xa0.Demonstrated ability to work independently and thrive in a fast-paced environment\xa0.Commitment to the ongoing development of a positive organizational culture\xa0.Willingness to contribute to a learning environment\xa0.', 'More Information': []}, {'Career Level': 'Senior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-manager-heat-resilience-and-performance-centre-2-year-contract-renewable-10108450?jobId=jobstreet-sg-job-10108450§ionRank=488&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
The Role
[{'position': 'Manager, Health Informatics'}, {'company_name': 'National University Polyclinics'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Responsibilities': '', ':': 'Apply analytics for decision making and solve business problem and challenges.Provide insights gathered from all the data sources in NUP to aid in the planning process of the organization..Leveraging knowledge and skill with a variety of analytic tools to design, create, maintain powerful visualizations and models that illuminate opportunities to support strategic planning and initiatives, improve organizational performance, project future demand, and advance progress towards population health outcome and impact.Plan, develop and execute data management strategy, data roadmap, data defect management, reporting/dashboard automation and training to meet organization’s strategic needs and requirement, improve productivity and build NUP analytics capabilities..Perform data analysis and trending observations for possible areas for attention when required..Conceptualize, define, and develop actionable visualization and dashboard.Work with the relevant stakeholders at the cluster level and ministry level to gather data and provide data to gain both micro and macro insights from the necessary analysis to aid in the strategic planning of the organization..Manage and maintain data repositories with the relevant stakeholders within NUP..Manage, improve and govern the relevant policies and guidelines pertaining to data and data related systems and audit..Ensure the timely generation of regular reports based on established reporting requirements..Perform any other duties assigned by your supervisor..', 'Requirements': 'Degree from an established university in a related field such as statistics, data science, business analytics, analytics, applied mathematics. Master’s degree in Business Administration, Healthcare Management or Public Health will be an added advantage..At least 5 years of relevant working experience, in planning and data analytics environment..Experience working with tableau for data analysis, integrate data from different sources and create dashboards..Experience and knowledge of statistical modeling technique.Proficient in 1 or more of the software such as Excel macros, Tableau, R, OBIEE, Python, SQL, H2O Flow, Flexsim, Microsoft excel (advanced) etc..Proficient in use of Microsoft Office Applications for word processing and presentation.Adaptive and pick up new skillsets fast as per organization needs.A team player with excellent written and verbal communication and collaboration skills.Resourceful and analytical, with ability to synergise data concisely for decision support..Good in strategic planning, able to work under pressure and deliver on time..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': '53358682L', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '13 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical'}, {'Company Overview': '\n\tThe National University Polyclinics (NUP) is a member of the National University Health System (NUHS), a leading academic health system and one of three public healthcare clusters in Singapore.\n\n\tNUP provides primary care treatment for acute illnesses, management of chronic diseases, women and children health services, and dental care at its network of polyclinics at Bukit Batok, Bukit Panjang, Choa Chu Kang, Clementi, Jurong, Pioneer, Queenstown (with Tengah and Yew Tee to come).\n\n\tAs part of an integrated academic health system, NUP collaborates with the hospitals and national specialty centres within NUHS as well as partner general practitioners, grassroots, the community and social care partners to provide patient-centred care for the population.\n\n\tFor more information, please visit www.nup.com.sg | www.nuhs.edu.sg\n\n\tDelivering ‘Incredible care and health, together!’\n\n\tMembers of the NUHS:\n\t·\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 National University Hospital\n\t·\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Ng Teng Fong General Hospital\n\t·\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Alexandra Hospital\n\t·\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Jurong Community Hospital\n\t·\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 National University Polyclinics\n\t·\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 National University Cancer Centre, Singapore\n\t·\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 National University Heart Centre, Singapore\n\t·\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 National University Centre for Oral Health, Singapore\n\t·\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 NUS Yong Loo Lin School of Medicine\n\t·\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 NUS Faculty of Dentistry\n\t·\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 NUS Saw Swee Hock School of Public Health'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-health-informatics-10055284?jobId=jobstreet-sg-job-10055284§ionRank=489&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Project Officer (Real-time Analytics) (R00006213)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Developing visual SLAM algorithm that integrates semantic information and real-time analytics for an Indoor Positioning System.Undertake original research and has opportunities to collaborate with industry and top researchers around the world.', 'Job Requirements:': 'Bachelor’s in Computer Engineering, Computer Science, Electronic Engineering, Electronics and Communication Engineering, or related disciplines.Solid background in visual Simultaneous ization and Mapping (SLAM) algorithms.Experience in embedded systems design.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-real-time-analytics-r00006213-10134841?jobId=jobstreet-sg-job-10134841§ionRank=492&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Scientist (Strategic Research Initiative), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {}, {'Career Level': 'Senior Manager', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-strategic-research-initiative-imre-10111962?jobId=jobstreet-sg-job-10111962§ionRank=494&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
[{'position': 'Senior Data Analyst [US Tech MNC/ UP 9k]'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'The Talent:': '', 'Min 3-5 years of experience working with a large amount of data': '', 'Advance Excel user (VLOOKUP, pivot tables)': 'Data/ business / pipeline management.Prior analyst experience in tech industry is mandatory to understand the nature of business.', 'Job Description': 'Responsible for looking at standard business dashboards for KPI tracking, understand them, assimilate them, drive key insights.Commercial business nuances.Take that data and convert it into consolidated excels to bring out YoY growth, to see duplications.Not required to present data to the business.Management of worldwide data, more specifically Asia-wide data to support the overall business data.', 'Next Step': '', 'Send your resume to [email\xa0protected]!': 'All shortlisted candidates will be contacted.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-analyst-%5Bus-tech-mnc-up-9k%5D-10058734?jobId=jobstreet-sg-job-10058734§ionRank=495&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
The Talent:
[{'position': 'Research Fellow, - (Biomedical Eng./Biological/Biochemistry) #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 24 hours ago']}, {'This includes:': 'Microfluidics development of a low-cost droplet storage device.Operation and characterization of digital microfluidics.Workflow integration of droplet storage chip with digital microfluidics.Characterization of biological entities (cells, molecules, drugs) in the developed platforms.', 'Job Requirements:\xa0': 'A doctorate (PhD) qualification in Biomedical Engineering and/or a relevant biological or biochemistry discipline.Experiences in development of microfluidics development for sample preparation.Experiences in microfabrication, rapid prototyping, 3D printing.Proficient in AutoCAD or Solidworks.Microfluidic handling of biological and drug samples and non-aqueous flow.Experiences in pharmaceutical analysis and analytical chemistry.Strong written and verbal communication skills in English.Experiences in mass spectroscopy is an advantage.Publication track record is an advantage.Experiences in system control and bioinstrumentation is an advantage.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-biomedical-eng.-biological-biochemistry-worknow-10145656?jobId=jobstreet-sg-job-10145656§ionRank=496&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
This includes:
[{'position': 'Research Engineer - (Visual Analytics) (R00010454)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Description:': 'Research into Visual Search and Video Analytics related work, including object detection, person re-identification (reID) & tracking, and search & retrieval.Creation of large-scale datasets for research and algorithm evaluation.Be part of a research team in the execution of funded research projects.Assist in drafting of proposals for research grants in the above areas.', 'Job Requirements:': 'Bachelors degree in Computer Science and/or Engineering, Data Science & Analytics, Mathematics, or related field.Research experience in Computer Vision, Pattern Recognition, Deep Learning, and working with large-scale datasets, in particular in a university or research lab.Experience with object detection & segmentation, domain adaptation, and adversarial learning is essential.Proficiency in software such as Caffe, PyTorch, TensorFlow, TensorRT, OpenCV, and programming languages such as C/C++ and Python, as well as Linux (eg. Ubuntu) is essential.Knowledge of GPU computing, CUDA programming, optimization (eg. with TensorRT), and industry experience in engineering software development would be an advantage.Good inter-personal skills, with the ability to work with people from varied backgrounds.Proficient in English.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-visual-analytics-r00010454-10130695?jobId=jobstreet-sg-job-10130695§ionRank=499&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Associate - [Software Eng.-Artificial Intelligence] - [R00007506]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Key Responsibilities:\xa0': "Conducting research in cutting edge AI domains (mainly related to reinforcement learning) and software/hardware testing.Developing and integrating AI algorithms into the real development progress.Participating in co-operation with Continental's development team.Preparing academic publications such as pattern and research paper.Contributing to writing and presenting seasonal and annual report.", 'Job Requirements:\xa0': "Master's degree in Artificial Intelligence, Computer Science, Software Engineering, Electrical Engineering.Strong background and research experience in artificial intelligence, software engineering, automatic testing, Hardware Design.Excellent background and experience in programming language, especially python.Good communication and report-writing skills.Strong responsibility for research and work."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-%5Bsoftware-eng.-artificial-intelligence%5D-%5Br00007506%5D-10127505?jobId=jobstreet-sg-job-10127505§ionRank=502&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Engineer'}, {'company_name': 'Michael Page International Pte Ltd'}, {'small_section': ['Central', 'SGD\xa07,000 - SGD\xa09,000', 'Posted on 27-Oct-22']}, {'Data Engineer': [], 'Python': [], 'Client Details': '', 'Description': 'Collaborate with trading applications and backend developers to advise and fulfill data requirements in terms of consistency, latency and scalability.Responsible for the implementation and maintenance of relevant database technologies and data quality to meet these data needs.Collaborate with existing data team to design and implement data synchronization.Work with development team for the maintenance and enhancement of latency-sensitive market data feed components.', 'Profile': '', 'R': '', 'Julia': '', 'SQL': '', 'Linux': '', 'C++': '', 'Java': '', 'Rust': '', 'Apache': '', 'Kafka': '', 'Aeron': '', 'Chronicle': '', 'Job Offer': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Hardware', 'Registration No.': '199804751N', 'EA No.': '90C4069', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tMichael Page International is a leading professional recruitment consultancy specialising in the recruitment of permanent, contract and temporary positions on behalf of the world¦s top employers. Now, after more than 40 years in the recruitment market, we have secured our position as leaders in international recruitment and hiring. We currently have 140 offices that create a network that spans 36 countries around the world, with strong opportunities for more growth within Asia Pacific.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10107809?jobId=jobstreet-sg-job-10107809§ionRank=503&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Data Engineer
[{'position': 'Assistant VP, Data Analyst, Group Contact Centre & Retail Operation (PROCO) #JobsThatMatter'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'\xa0Assistant VP, Data Analyst, Group Contact Centre & Retail Operation (PROCO)': '', 'About UOB': '', 'About the Department': '', 'Group Technology and Operations (GTO)': '', 'Job Responsibilities': '', 'Collect and analyze operations metrics': '', 'Learn expected patterns of activity for operations': '', 'Alert when workload and / or operation anomalies are detected': '', 'Management reporting': '', 'Enhance Operational Insights': '\xa0.', 'Job Requirements': 'Degree/ Diploma holder.Knowledge in querying and mining raw datasets for analysis using SQL script.Knowledge in Qliksense (Reporting Analysis), proficient in Excel and Powerpoint.Data Story Telling - Ability to effectively communicate insights from a dataset using narratives and visualizations..Effective communication skills - Ability to communicate effectively at all levels.', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-vp-data-analyst-group-contact-centre-retail-operation-proco-jobsthatmatter-10101259?jobId=jobstreet-sg-job-10101259§ionRank=504&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Assistant VP, Data Analyst, Group Contact Centre & Retail Operation (PROCO)
[{'position': 'Professional Officer - (Centre for Digital Enablement -- Data Architect) 498109 #Immediate'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities': 'Collaborate with faculty and corporate divisions on the data-related LLOS projects..Supervise external parties and mentor students in the development of the projects..Analyse user requirements, research, design, write, maintain, and/or disseminate the new data operation components..Manage digital technology related resources within the division such as (but not limited to) being a system administrator for software, hardware systems, and equipment..Provide support in ad-hoc activities such as (but not limited to) promoting awareness in digital and data literacy..Develop and deliver digital skills literacy related courses or workshops to undergraduate students and staff. Development of learning activities and assessment of students is one of the responsibilities..Provide consultations to undergraduate students and staff on digital skills/technology related queries and access feasibility of potential project ideas..', 'Job Requirements': 'Holding a PhD or Master degree in Electronic Engineering or Computing science from a recognized University, with 3-5 years of relevant experience..Have published in renowned international scientific conferences and/or journals..Proficient in programming and experienced in several languages such as (but not limited to) C, C++, Java, Python..Experience in data warehouse, data lake, data analytics, and various big data platforms and tools such as (but not limited to) Apache Hadoop, Apache Attic, Apache Impala, Apache Spark..Experience in cloud platforms such as Amazon Web Services, Microsoft Azure, and or Google Cloud Platform. Holding a valid official professional certification for the platform will be an additional advantage..Experience in using statistical programming tools to manipulate data and draw insights from large data sets..Has knowledge of a variety of machine learning techniques such as (but not limited to) clustering, decision tree learning, artificial neural network, and their real-world advantages/drawbacks..Has knowledge of advanced statistical techniques and concepts such as (but not limited to) regression, properties of distributions, statistical tests, and proper usage..Keen interest to support academic project work, with demonstrated ability in developing software solutions to technical problems..Possess strong supervisory skills and project management skills..Enjoy working with students in an educational environment..Demonstrate proficiency to stay up to date on emerging technologies and new applications..Good interpersonal skills and ability to work individually or in a team and with other divisions..Innovative mindset and passion in digital technology is required..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/professional-officer-centre-for-digital-enablement-data-architect-498109-immediate-10121539?jobId=jobstreet-sg-job-10121539§ionRank=505&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'NGS Research Scientist'}, {'company_name': 'Hays Specialist Recruitment Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa04,000 - SGD\xa06,000', 'Posted on 27-Oct-22']}, {'Your new company': '', 'Your new role': 'Set up NGS workflows and protocols.Receiving and process biological samples for NGS applications.Implement new workflow solutions and negotiations with third-party vendors.Laboratory management - organization and supply management.Sequencing runs and handling operation of sequencing instruments.General laboratory and instrument maintenance.', "What you'll need to succeed": 'Min. B.Sc. or M.Sc. in molecular biology, biotechnology, or related life science field.Experience in NGS will be advantageous.Hands-on experience with molecular biological methods and library preparation would be an advantage.', "What you'll get in return": 'Competitive compensation package including a competitive performance-based bonus structure and consistent career development.', 'What you need to do now': []}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200609504D', 'EA No.': '07C3924', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Miscellaneous allowance, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'WORKING FOR YOUR TOMORROW\xa0At Hays we invest in lifelong partnerships that empower people and businesses to succeed. With over 50 years’ success under our belts and a workforce of 10,000+ people across 33 countries, we’ve evolved to put our customers at the heart of everything we do.\xa0So much more than a specialist recruitment business, what really sets us apart is our knowledge through scale, deep understanding and our ability to meaningfully innovate for our customers. By providing advice, insights and expertise on issues you face today in the fast-paced world of work, we help you make the right decisions for tomorrow.\xa0Offering an unrivalled suite of recruitment and workplace solutions, whether you’re looking for what’s next in your career, or have gap to fill, we’ll help get you get where you want to go.\xa0\xa0You can rely on us to deliver today and help you plan for tomorrow.\xa0In Singapore, our recruiting experts are available to you in the following specialisms:Accountancy & FinanceBanking & Financial ServicesConstructionEngineeringHuman ResourcesInsuranceLegalLife SciencesMarketing & DigitalOffice ProfessionalsProcurementPropertySalesSupply ChainTechnologyTo connect with a recruiting expert at Hays, visit us at www.hays.com.sg or follow Hays on LinkedIn - The #1 Recruiter on LinkedIn globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/ngs-research-scientist-10109380?jobId=jobstreet-sg-job-10109380§ionRank=506&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Your new company
[{'position': 'Research Project Specialist [US Biotech | Up to $3500]'}, {'company_name': 'Rapid Recruitment Asia Pte Ltd'}, {'small_section': ['Central', 'SGD\xa03,000 - SGD\xa03,500', 'Posted on 3-Nov-22']}, {'Job Scope:': 'Great career exposure with well-known US BIOTECH company.1 year Contract role with opportunity for renewal/conversion ($3,500).Buona Vista (Mon - Fri, 830am - 530pm).Developing creative and engaging story ideas on consumer goods.Translating the ideas into PowerPoint Slides, Brochures, Videos, etc to be used to educate the consumers.Presenting the ideas of the scientific stories to get feedback.Running experiment in the lab to understand the product benefits.', 'Role requirement': 'Minimum Diploma / Degree in Science or Biology or equivalent.Minimum 2 years of relevant working experience in laboratory environment.Proficient in writing and communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '201617530H', 'EA No.': '16C8261', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '16 days', 'Industry': 'Human Resources Management / Consulting', 'Specific Location': 'Buona Vista'}, {'Company Overview': '\nRapid Recruitment Asia is a professional staffing firm providing total recruitment solutions to suit the needs of companies in various industries\n\n\tWe are a company of HRcreate, which has been serving many enterprises both locally and overseas and we provide our clients with the best HR consulting services based on our wide network and partnership. We simply focus on results and deliver them through our expertise. It is what makes us successful and thriving through this tough competition in the HR consulting spectrum.\n\n\tWe believe in the motto of "Recruiting Fast, Recruiting Right" and companies trust us with the correct fit and swift turnaround times for their staffing gaps.\n\n\tOur domain in recruitment extends to outsourcing, general staffing and executive search placements in all industries in the market.\n\n\n\tOur provision of recruitment capabilities to our clients also allow us to support them in HR services such as Payroll Services, HR Administration, Business Process Outsourcing and RPO.\n\n\tAt Rapid Recruitment Asia,\xa0allow us to assist you as a job seeker, to broaden your industry knowledge and placing you with suitable employment with our clients from SMEs to Global MNCs both locally and internationally!'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-project-specialist-%5Bus-biotech-%7C-up-to-%243500%5D-10129117?jobId=jobstreet-sg-job-10129117§ionRank=509&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Job Scope:
[{'position': 'Senior Data Analyst (1 year contract)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Central', 'SGD\xa06,000 - SGD\xa08,000', 'Posted on 25-Oct-22']}, {'Job Duties:': '', 'Our Requirements': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Temporary', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-analyst-1-year-contract-10101502?jobId=jobstreet-sg-job-10101502§ionRank=510&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing'}]
Job Duties:
[{'position': 'Research Engineer I, - (Computer Science) - (R00009810) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Key Responsibilities': 'Designing and Implementing web applications.Developing cloud-native AI systems.Designing system architecture.Designing and developing APIs.Creating servers and databases for functionality.Ensuring responsiveness of applications.Diagnosing the issue and resolving it on demand.', 'Job Requirements:': 'Bachelor’s degree in Computer Science from a recognised university.Strong organisational and project management skills.Proficiency with front end language and framework such as Typescript and React.js.Proficiency with Python.Familiarity with web framework like Flask and FastAPI.Familiarity with both SQL and non-SQL databases.Good knowledge in system architecture design.Familiarity with cloud services and cloud native applications.Familiarity with Linux and containers.Excellent verbal communication skills and good problem solving skills.At least 3 years of working experience is preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-i-computer-science-r00009810-urgent-10139853?jobId=jobstreet-sg-job-10139853§ionRank=512&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'R&D Optimization Engineer | Automotive | AI Research'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'SGD\xa06,000 - SGD\xa012,000', 'Posted on 31-Oct-22']}, {'Job Description:': "This position is responsible for researching and developing advanced algorithms with the knowledge of optimization to solve the real problems in the manufacturing process..Center to lead paradigm shift in mobility value chain, spanning the entire lifecycle of vehicles..The group will build a customer-centered smart mobility environment where products are tailored to customer needs and mobility services would enrich its customers' lives..Lead or participate in the project which aims for solving diverse problems from the automotive industry covering acquiring data, algorithm development, and model deployment..Work with manufacturing team to establish optimization strategies for the factory such as Inventory optimization, Job assignment problem, Queueing system, or Supply chain optimization..Drive research from concepts to feasible output to determine the viability of ideas that leverage the knowledge of data analytics or optimization..Acquire the state of the art technologies and present ways to use them for solving real-world problems..Operate and develop models/services deployed in the manufacturing process..Publishing papers in journals/conferences or applying for patents as a result of the research conducted..", 'Job Requirements:': 'Bachelor or Master degree or PhD in Industrial Engineering, Computer Science, Operation Research, Mathematics, or equivalent practical experience.Total over 2 years of research or development experience in data analytic, or optimisation..Research experience in the manufacturing industry is preferred but not required..Experiences in the following: mathematical optimisation using Mathematical programming (Linear/Nonlinear programming), (Meta)Heuristic algorithms, Stochastic Process, or Combinatorial Optimization..Expertise in mathematical programming solvers including GUROBI, or CPLEX..', 'Next Steps': 'Only shortlisted candidates will be notified..'}, {'Career Level': 'Manager', 'Qualification': "Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/r-d-optimization-engineer-%7C-automotive-%7C-ai-research-10117216?jobId=jobstreet-sg-job-10117216§ionRank=513&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Principal Research Scientist (Engineering) (R00003838)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Key Responsibilities:': 'Development of an IOT product line.Responsible for the offer plan and technical/economical decisions.D elivering new IOT solutions and communication architectures for energy utilities.', 'Job Requirements:': 'Master’s or PhD in engineering.Know-How on IoT applications for Energy Efficiency and Grid Applications.Project manment with PMP Certification.Knowledge in Artificial Intelligence applications, IOT platforms and communication.Experience in implementation of an open IoT platform.Cloud security experience.Proficient with SaaS, PaaS, and Openstack/Opensource technologies.Thought leader, and/or certicitation in modern IT/developer operations.Minimum 15 of experience.CWNA or relevant certification is advantous.'}, {'Career Level': 'Senior Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '15 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-research-scientist-engineering-r00003838-10053342?jobId=jobstreet-sg-job-10053342§ionRank=514&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior/ Statistics Officer'}, {'company_name': 'Singapore Health Services Pte Ltd (SingHealth HQ)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Requirements': 'Bachelor’s Degree in Statistics, Mathematics, Computer Science, Information Management, Data Science, Business Analytics, Engineering or related.At\xa0least 2 years of relevant working experience.Proficiency in\xa0VBA for Microsoft Excel, Microsoft Access,\xa0Oracle BI, SAS, Tableau, R and/ or Python will be an advantage.Strong communication and interpersonal skills\xa0and is able to work with staff of all levels.Good team player\xa0who is proactive, meticulous and adaptable to a rapidly changing environment.Strong problem-solving, analytical and logical thinking skills.Fast learner with a positive attitude, good number sense, good knowledge in at least one programming language and able to rapidly learn new software skills.Proficient with Microsoft Excel.Must be fully vaccinated against COVID-19.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '200002698Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '17 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts), Subject to Designation'}, {'Company Overview': 'SingHealth is the largest public healthcare cluster in Singapore. At our Headquarters, we focus on cluster-wide, strategic core functions for the organisation and work closely with our institutions and care teams to facilitate excellent care for our patients.We offer a diverse variety of roles that you can fulfil your career aspirations in. You can choose from different domain areas such as medical and clinical services, regional health system, research, education, organisational transformation and informatics, as well as corporate services including operations, finance, human resources, legal and communications. These comprise healthcare administration roles and other unique jobs such as genetic counsellors and clinical research nurses.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-statistics-officer-10080743?jobId=jobstreet-sg-job-10080743§ionRank=515&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Requirements
[{'position': 'Scientist, Centre for Frontier AI Research, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'The scope of work includes:': 'Development of AI/ML models for the modelling of multi-scale, multi-physics problems for purposes such as design and scientific discovery..Development of foundational methodologies for incorporating knowledge such as fundamental laws of physics into AI/ML models. This can be incorporated in different ways, including for uncertainty quantification, enabling effective learning with less data and meta-modelling..Working with domain experts (e.g. in fluid dynamics) to better understand problems and acquire context for the advancement of physics-informed learning..Collaboration with other partners such as other research institutes, academic partners and other relevant stakeholders..', 'Job Requirements': 'PhD in Computer Science, Engineering or other relevant disciplines.Having some background in engineering (e.g. fluid dynamics), numerical methods (e.g. finite volume or finite element methods) and/or statistical learning (e.g. deep learning).Strong skills in multi-language programming (e.g. Python) and can work independently in modeling, algorithm design and coding implementation.Experience in customizing open-source programs.Good interpersonal and communications skills.Ability to work effectively as part of a small, agile team, resourceful and self-driven.Good command of written and spoken communication skill.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-centre-for-frontier-ai-research-ihpc-10124183?jobId=jobstreet-sg-job-10124183§ionRank=516&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
The scope of work includes:
[{'position': 'Research Fellow (Molecular Parasitology) R00010341 #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Description:': '', 'Job Requirements': 'BSc in molecular/cellular biology, parasitology or related fields is required for this job application.The candidate is expected to have a reasonable level of training in basic molecular and cellular biology, in general. Good track record including authorships at peer-reviewed publication, as well as previous experience with malaria culture and systems biology will be particularly favored.The School of Biological Sciences seeks a diverse and inclusive workforce and is committed to equality of opportunity. We welcome applications from all and recruit on the basis of merit, regardless of age, race, gender, religion, marital status and family responsibilities, or disability..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-molecular-parasitology-r00010341-urgent-10138912?jobId=jobstreet-sg-job-10138912§ionRank=517&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Data Engineering Team Lead #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What to Expect': 'Involve in the design and building of resilient and efficient data pipelines for both batch and real-time streaming data.Involve in the architecture and design of data infrastructure on cloud using industry standard Infrastructure-as-Code tools.Execute projects with an Agile mindset.Build software frameworks to solve data problems at scale.Collaborate with product managers, software engineers, data analysts and data scientists to build scalable and data-driven platforms and tools.Be put in the driving seat as an engineering leader.', 'How to Succeed': 'Bachelor’s Degree in Computer Science or have equivalent professional experience.Have at least 3 years of experience in a technical leadership and management role.Experience with data processing tools such as Spark, Beam, Flink.Experience with the cloud (e.g. AWS, GCP, Azure).Experience implementing batch and streaming data pipelines.Experience writing efficient SQL.Knowledge of both SQL and NoSQL databases, including performance tuning and troubleshooting.Familiar with DevOps tools such as Git, Docker, Terraform.Experience in leading and managing teams.Experience in developing the capabilities of engineers by providing effective mentorship and training opportunities.Experience in the public sector is a bonus.Keep the team aligned using project management systems to track task progress and recalibrating as necessary.Ability to identify bottlenecks and roadblocks in engineering processes and clear them.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineering-team-lead-jobsthatmatter-10052958?jobId=jobstreet-sg-job-10052958§ionRank=518&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
What to Expect
[{'position': 'SVP / VP, Data Security Service Product Owner - DataFirst, Transformation Group - (WD34981)'}, {'company_name': 'DBS Bank Limited'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Business Function:': '', 'Job Purpose:': '', 'Responsbilities:': 'Work closely with the DataFirst Data Security Product Owner & Lead as Product Owner for specific Data Security Services. \xa0.Define customer needs and the associated features to meet those needs..Work with the data security cross-functional team in designing solutions including a user journey centric perspective. Planning and scheduling of the product releases. Prioritizes defect or bug resolution..Work closely with LCS, ISS and Data Governance counterparts in solution design and conformance with Data Policy & Standards and any regulatory requirements..Socialise solutions with BU/SU stakeholders and ensure buy-in and fit for purpose solutions.Communicate updates including corresponding metrics & KPIs to data security products (inclusive of technical and non-technical aspects) in governance and program tracking forums..Establish robust and efficient programme management hygiene, including a Project Steering Committee with a regular cadence to provide visibility on the Data Security Stream and seek any required decisions from Senior Sponsors. Produce appropriate documentation including meeting packs, risk logs, minutes/notes and tracked actions..', 'Requirements:\xa0': 'Experience as a Product Owner and/or Project Manager..Demonstrated success in releasing products that meet and exceed business objectives..Excellent detailed written and verbal communication skills, possibly including some user interface documentation skills..Proven ability to influence cross-functional teams without formal authority. The ability to influence and work collaboratively with technology teams is especially important..Subject matter expertise in data security products and how to develop solutions for this area.\xa0.Knowledge of Data Governance, its flows and the various roles involved..', 'Apply Now': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '196800306E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '26 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Business (e.g. Shirts)'}, {'Company Overview': '\n\tDBS is a leading financial services group in Asia, with over 280 branches across 18 markets. Headquartered and listed in Singapore, DBS has a growing presence in the three key Asian axes of growth: Greater China, Southeast Asia and South Asia. The bank\'s "AA-" and "Aa1" credit ratings are among the highest in the world.\n\t\n\t\tDBS is at the forefront of leveraging digital technology to shape the future of banking, and has been named “World’s Best Digital Bank” by Euromoney in 2016 and 2018. The bank has also been recognised for its leadership in the region, having been named “Asia’s Best Bank” by several publications including The Banker, Global Finance, IFR Asia and Euromoney since 2012. In addition, the bank has been named “Safest Bank in Asia” by Global Finance for nine consecutive years from 2009 to 2017.\n\n\t\tDBS provides a full range of services in consumer, SME and corporate banking. As a bank born and bred in Asia, DBS understands the intricacies of doing business in the region’s most dynamic markets. DBS is committed to building lasting relationships with customers, and positively impacting communities through supporting social enterprises, as it banks the Asian way. It has also established a SGD 50 million foundation to strengthen its corporate social responsibility efforts in Singapore and across Asia.\n\n\t\tWith its extensive network of operations in Asia and emphasis on engaging and empowering its staff, DBS presents exciting career opportunities. The bank acknowledges the passion, commitment and can-do spirit in all of its 26,000 staff, representing over 40 nationalities.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/svp-vp-data-security-service-product-owner-datafirst-transformation-group-wd34981-10133532?jobId=jobstreet-sg-job-10133532§ionRank=519&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Business Function:
[{'position': 'Research Fellow / [Computer Science] [R00007173]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Conduct research and development related to Machine Learning and Deep Learning and spatial-temporal data mining.', 'Job Requirements:': 'PhD in Computer Science or related disciplines.At least 2 of experience in machine learning and spatial-temporal data mining and data manment.Good knowledge of and machine learning applications.Excellent publication records.Good spoken and written English.Strong research ability.Strong leadership quality.Good interpersonal skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-%5Bcomputer-science%5D-%5Br00007173%5D-10072433?jobId=jobstreet-sg-job-10072433§ionRank=521&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'IT Big Data Platform Architect - (210001H7)'}, {'company_name': 'The Great Eastern Life Assurance Co Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Job Purpose': '', 'The Job': 'Lead and facilitate techno-functional design workshops & project implementation involving big data platform (Hadoop, cloudera), data analytics solutions (e.g. SAS Viya,R, Python\xa0 etc), data visualisation tools (e.g. Tableau), ETL/ELT tools (Talend, Informatica, Artificial Intelligence (AI) solutions, as well as open source technology (eg. Mariadb) etc..Work with business product owners, application teams, infrastructure team, vendors, data scientists to conduct Proof of Concepts (POCs), jointly evaluate and implement various data analytics and AI related solutions..Understand data flows and lineage from operational data sources to analytical data sources..Review and approve project designs including data models and ETL..Establishing and enforcing standards, processes, frameworks, tools and best practices for process modeling, semantic modeling, and logical and physical data modelling..Establish standard information architecture best practices in the context of the enterprise’s overall architecture, and consistently apply such standards to operating units and functions across the company..Work with project teams to ensure compliance with data management standards..Participate in the development and maintenance of corporate data architecture, data management standards and conventions, data dictionaries and data element naming standards and conventions for multiple computing environments..Work with Information Security to ensure proper classification and protection of enterprise data..Create ETL specifications and documentation used to develop data migration mappings and transformations for Data Warehouse loading..Provide comprehensive consultation to database administration, business analysts and business owners in resolving questions during the translation to a physical database..Research and evaluate alternative solutions and recommend the most efficient and cost effective data related solutions for improved data integrity..Regular review of emerging technologies to assess their relevance and viability in solving on-going information management challenges. Big Data, cloud computing, data visualization, data masking, enterprise business metadata management and Data SOA..Work closely with users to understand and help develop functional specifications..Prepares written reports of findings and recommendations..Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..', 'Our Requirements': "Bachelor’s Degree in computer science, or other relevant field..Minimum 10 years of relevant data management experience, including architecting data management solutions and designing/developing data governance policies/standards..Experience in implementation of big data platform and data warehouse projects..Strong project leadership and management skills to lead organizational change to effectively meet strategic and tactical goals..Strong written and verbal communications skills required; must be equally comfortable discussing the enterprise information management (EIM) strategic perspective with executives and implementation details with operational staff and IT..Organizational/political agility with the ability to drive large, cross-functional data management programs involving coordination with multiple stakeholders..Ability to help define and articulate the enterprise data management strategic vision and translate it into tactical implementable steps to C level..Solid knowledge of the organization's industry and its challenges in the use of data and information..Certification in data management and understanding of the various technologies of data management within an organization..Strategic decision-making skills with a high degree of latitude..Financial services domain knowledge, including expertise at the intersection of risk, finance and customer domains..Expertise in business and IT architecture, including familiarity with leading architectural standards such as TOGAF, FEA and/or Zachman..Familiarity with Enterprise Metadata Management (business and IT) and OMG standards..Information management program life cycle experience..Experience in operationalizing Data Governance, Data Stewardship and Data Quality..Familiarity with industry data models such as IBM BDW and IIW, Teradata FSLDM, and SAS IIA..End-to-end data warehousing program execution knowledge and leadership..Familiarity with software development lifecycles..Experience in defining business requirements for information management projects..Familiarity with process modeling, semantic modeling and data modelling..High level of integrity, takes accountability of work and good attitude over teamwork..Takes initiative to improve current state of things and adaptable to embrace new changes..", 'About Great Eastern': '', 'To all recruitment agencies:\xa0': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '190800011G', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Insurance'}, {'Company Overview': '\n\tFounded in 1908, Great Eastern is a market leader and a well-established trusted brand in Singapore and Malaysia. With S$82.5 billion in assets and over 4 million policyholders, the Group also operates in Indonesia and Brunei and has a presence in China as well as a representative office in Myanmar.\n\n\tThe Great Eastern Life Assurance Company Limited and Great Eastern General Limited have been assigned the financial strength and counterparty credit ratings of "AA-" by Standard and Poor\'s since 2010, one of the highest among Asian life insurance companies.\n\n\tWe are a LIFE company and our purpose is to empower generations to live healthier and better so that they can live life to the fullest. Be it celebrating life’s simple moments or commemorating life’s major milestones, every day, in many ways, we inspire those around us to live great and celebrate life.\n\n\tPlease note that our career opportunities are only posted on our Career Website (http://grp.gelife.co/findacareer) and on our authorised job platforms which are specifically LinkedIn, JobStreet and eFinancialCareers. We do not initiate any unsolicited calls and all official emails from Great Eastern will be sent from email addresses ending with “@greateasternlife.com”. Should you receive any communications outside from these channels listed, please do not provide any personal information and do reach out to us at [email\xa0protected] or at 6248 2990 for us to assist you and confirm the legitimacy of the content.'}, {'url': 'http://www.jobstreet.com.sg/en/job/it-big-data-platform-architect-210001h7-10103743?jobId=jobstreet-sg-job-10103743§ionRank=522&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Job Purpose
[{'position': 'Executive (Data), Haematology'}, {'company_name': 'Singapore General Hospital'}, {'small_section': ['Johor', 'SGD\xa03,200 - SGD\xa04,480', 'Posted on 2-Nov-22']}, {'Requirements': 'Data collection and cleaning of data in accordance with accreditation quality standards.Implement new/ revised procedures and guidelines.Perform data quality assurance reviews.Oversee data management process.Provide regular reports to Programme Director.Assist in development of database and ensure data are updated.Ensure all data accreditation and standards forms are completed and maintained in Registry.Degree in Science/ Nursing.Relevant work experience in healthcare industry will be an advantage.Strong team player and good communication skills.Proficient in Microsoft Office applications.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '198703907Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '16 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Leave benefits, 42 hours'}, {'Company Overview': "\nSingapore General Hospital is Singapore's largest flagship tertiary hospital with an 10,000-strong multi-generation diversified workforce and a rich 190 years history. Every year, the SGH Campus caters to over 1 million patients, providing advanced medical care under its 36 clinical specialties.\nAs an academic hospital, SGH plays a key role in nurturing doctors, nurses and allied health professionals and is committed to innovative translational and clinical research to provide the best care and outcomes to patients.\nWe offer a challenging, family-friendly and conducive work environment with enormous scope and opportunities to meet your career aspirations, advancement and personal development.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/executive-data-haematology-10078643?jobId=jobstreet-sg-job-10078643§ionRank=524&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Requirements
[{'position': 'Research Associate (Clinical Data Engineer)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Description': '', 'Roles & Responsibilities': '', 'Clinical Data Engineer)': '', 'Healthy Longevity Translational Research Program': 'Work with management team, and research team to develop a clinical research management system in line with NUS/ NUHS data policy guidelines.Formulate techniques for quality data collection to ensure adequacy, accuracy and legitimacy of data.Establish rules and procedures for data sharing, curation, management.Identify, manage and track issues, risks and dependencies that affect the delivery of the project outcome.Support research team in the daily use of data systems and ensure adherence to legal and company standards.Assist with reports and data extraction when needed.Monitor and analyze information and data systems and evaluate their performance to discover ways of enhancing them (new technologies, upgrades etc.).Ensure clinical databases and archives are protected from security breaches and data losses.Develop data visualization framework, models for CHL.', 'Qualifications': 'Candidate should possess at least 3 years of experience with demonstrated competency at the junior managerial level.Excellent communication skills to facilitate cross-disciplinary work.Excellent understanding of data administration and management functions (collection, analysis, distribution etc).Familiar with modern database information system technologies (REDCAP is a plus).Proficient in statistical software (SPSS, SAS, Graphpad etc.).An analytical mindset with problem-solving skills.', 'Formal Application': '', '3': '', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-clinical-data-engineer-10062702?jobId=jobstreet-sg-job-10062702§ionRank=525&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Associate - (R00010452)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:\xa0': 'Support research and development related to Deep Learning and Computer Vision algorithms applied to Air Traffic Control and Air Traffic Management..Develop deep learning-based end-to end oversampling technique to deal with class imbalance problems, and to detect extremely rare events like runway excursion prediction..Develop explainable deep learning techniques to support the air traffic controller with reasoning behind the decision from the so-called black box machine learning models..Join the team in the development of algorithmic concepts for the broader applied analytics of Air Traffic Management..', '\xa0': '', 'Job Requirements:\xa0': 'Master’s Degree in Computer Sc. /Aerospace Eng/Operation Research or equivalent.Programming Experience: working knowledge of Python Programming (preferably PyTorch) Languages.Demonstrated project experience related to applied Machine Learning, Data Mining, Deep learning, Generative models, Air Traffic Control or Air Traffic Management.Publications in peer-reviewed conferences and/or journals related to Machine Learning/Air Traffic Management.Good English writing and communication skills (required).'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-r00010452-10131804?jobId=jobstreet-sg-job-10131804§ionRank=526&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Project Service Quality Intern 2023'}, {'company_name': 'NTUC Health Co-operative Ltd'}, {'small_section': ['East', 'Posted on 4-Nov-22']}, {'Evaluating Client’s satisfaction at Eldercare Centre (EC)': "Interview Eldercare (EC)s' staff to understand existing programmes conducted at the centres\xa0.Propose evaluation methodology and design forms to understand clients’ satisfaction with EC’s services and programme offerings\xa0.Develop a process to capture feedback regularly\xa0.Administer survey with seniors (individual or focus groups)\xa0.Compile, analyze data, findings and provide recommendations\xa0.Collaborate and communicate with internal and external stakeholders\xa0.May require to perform additional duties as requested.", 'Qualification': ''}, {'Career Level': 'Entry Level', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Job Type': 'Internship', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': 'S92CS0208D', 'Company Size': '501 - 1000 Employees', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Vision, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties)'}, {'Company Overview': '\n\n\t\tAbout NTUC Health Co-operative Limited\n\n\t\tNTUC Health Co-operative Limited (NTUC Health) is an NTUC social enterprise that provides a comprehensive and integrated suite of quality and affordable health and eldercare services to meet the growing needs of families and their dependents. Building on more than four decades of experience and expertise, NTUC Health is among the largest senior day care, nursing home and home personal care providers in Singapore. It also offers other services for seniors such as an active ageing hub, senior activity centres, community support for vulnerable seniors, and a sheltered / senior group home. In addition, it runs a chain of dental clinics, and a family medicine clinic. For more information, please visit www.ntuchealth.sg.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-service-quality-intern-2023-10105791?jobId=jobstreet-sg-job-10105791§ionRank=527&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Evaluating Client’s satisfaction at Eldercare Centre (EC)
[{'position': 'Scientist (Mechanical Metrology), NMC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Description:': 'Design the test methods and develop the test procedures for data integrity inspection for digital bunkering systems.Data modeling and analytics, algorithm and code development to implement data driven smart functions and solutions.Design and conduct metrological tests and uncertainty evaluations on digital systems.Building new metrology capabilities and services based on emerging needs of the industry; and developing programs to enhance the technical competencies of lab personnel.Raising measurement capabilities of the industry by conducting consultancies,.training, and proficiency testing in temperature and humidity measurements.Supervision of students and trainees from the industry under attachment programs..', 'Job Requirements:': 'PhD degree in science or engineering.Experience with data analytics and modeling, Statistical analysis, Machine Learning, and applications.Knowledge of instrumentation, technical management, automation and digitalization.R&D experience in the field of flow measurement and characterization.Proficiency in at least one programming language (Python/C++/Java).Team spirit and problem-solving ability.Excellent verbal and written communication skills.', 'The above eligibility criteria are\xa0': '', 'not': '', '\xa0exhaustive. A*STAR may include additional selection criteria\xa0': '', 'based': '', '\xa0on its prevailing recruitment policies. These policies may be amended\xa0': '', 'from': '', '\xa0time to time without notice. We regret that only shortlisted\xa0': '', 'candidates': '', '\xa0will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-mechanical-metrology-nmc-10124473?jobId=jobstreet-sg-job-10124473§ionRank=528&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Senior Research Scientist, (Electrical Engineering) - (R00008423)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Lead the technical development of advanced data-driven methods for smart meter data analytics for smart home applications..Design artificial intelligence (AI) based models for residential load demand forecasting, solar PV power forecasting, and prosumer behaviour modelling and knowledge extraction..Perform testing and demonstration of the algorithms and deliverables..Communicate with the industry collaborators for progress reporting and potential commercialization of deliverables..Assist the PI for project management, including time schedule and milestone management..Coordinate with other research teams in this project for internal and external communication and collaboration..', 'Job Requirements:': 'PhD degree in Electrical Engineering..At least 5 years research and/or industry working experience..Expert knowledge in power system data analytics, especially on forecasting and knowledge extraction..Comprehensive experience in industry-funded research projects..Familiar with commercialization of research deliverables..Excellent project management skills..Excellent publication record in top-tier journals..Excellent verbal and written communication skills in English..Strong analytical and conceptual abilities..Able to work independently and in a team to realize proposed research work..'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-electrical-engineering-r00008423-10075998?jobId=jobstreet-sg-job-10075998§ionRank=529&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'VP - System Analyst, - Data, - Enterprise & Wholesale Bank Analytics Team #Immediate'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Job Responsibilities': '', ' System Analyst': '', 'Enterprise & Wholesale Bank Analytics Team': '', 'Key responsibilities include:': 'Analyse user requirements and convert requirements to design documents.Develop system documentation to capture key design decisions.Communicate complex technical issues to business users in a language they understand.Create solution options to meet business requirements.Engage user to achieve concurrence on technology provided solution. Conduct review of solution documents along with Functional Business Analyst and Business Unit for sign-off.Create technical documents (functional/non-functional specification, design specification, training manual) for the solutions. Review interface design specifications created by development team.Perform design and development of applications according to change requests and project requirements.Participate in selection of product/tools via RFP/POC..Perform detailed estimation of projects and change requests.Review test strategy and functional test cases created by testing team\xa0.Monitor and manage risks /issues related to requirements and scope creep.Work with production support team members to conduct root cause analysis of issues, review new and existing code and/or perform unit testing.Continuously work to optimize the production run time of IT applications.Execute continuous service improvement and process improvement plans.', 'Job Requirements': '', 'Functional skillsets': 'Experience in Data Modeling, Data mapping for Data Warehouse and Data Marts solutions.Expertise in FSLDM / similar industry models and dimensional models.Financial Crime Analytics & Reporting - Transaction Monitoring, Customer Due Diligence, Payment Screening.Retail & Wholesale Data marts targeted at Digital engagement/ Acquisition/ profitability/ AUM/ Sales/ management\xa0.Expertise in design of role based fine grained access control.Data security solutions targeted at full life cycle of data\xa0.Designing cloud ready data solutions, Virtualization \xa0.', 'Technical skillsets': 'Hadoop (Cloudera).Teradata.AS400.UNIX.Informatica\xa0.', 'At least, 2 to 3 technical certifications in any of the below technologies:': 'Cloudera Hadoop distribution - Hive, Impala, Spark, Kudo, Kafka, Flume\xa0.Teradata - Bteq, GCFR, MDM.Informatica Data Integration - PC, IDR, BDM, MM, IDQ\xa0.Data modelling tools (Erwin).QlikSense\xa0.SAS.AS400.Language - SQL, Java, \xa0Python, Scala.Automation / scripting - CtrlM, Shell Scripting, Groovy\xa0.', 'Experience or certification in the below technologies will be an added advantage:': 'CI/CD software, Testing Tools - Jenkins, SonarQube.Data Analytics Tools - Qlik Sense.Version Control Tool - Aldon+LMe, CA Endeavor.Deployment Tool kit -Jenkins.Service or Incident Management (IcM) Tools - Remedy.Source Code Repository Tool - Bitbucket.Scheduling Tool - Control-M.Defect Management Tool - JIRA.Application Testing tool - QuerySurge.', 'Education': '', 'What will help you succeed in this role': 'Adopt an uncompromising attitude when it comes to quality and help raise bar of products and team members\xa0.Be a team player who communicates effectively and professionally with both internal and external customers\xa0.Identify ideas to improve system performance and impact availability.Embrace tackling and resolving complex technical design issues.Possess strong problem solving and decision-making skills while exercising good judgment.Strong analytical and problem-solving skills\xa0.Ability to work on multiple projects at a time\xa0.Be able to work under pressure and manage deadlines or unexpected changes in expectations or requirements.Good communication skills - ability to convey technical information to non-technical audience.Ability to understand the big picture\xa0.Ability to develop long lasting relationships with all levels\xa0.Deep understanding and experience in software development cycle, including Agile based rapid delivery.Collaborate with business and IT to analyse, elicit and review business requirements.Facilitate communication between vendor, project team, business stakeholders and internal IT team.Ability to work in a team distributed across multiple locations.', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-system-analyst-data-enterprise-wholesale-bank-analytics-team-immediate-10101750?jobId=jobstreet-sg-job-10101750§ionRank=530&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Post Doctoral Fellow, Lab of RNA Genomics & Structure'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Job Responsibilities:': 'Be in charge of engineering circular RNAs related to high throughput RNA structure probing, including troubleshooting of new strategies.\xa0.The postdoc is expected to perform all experiments related to circular RNA expression and manufacturing, as well as to guide an RO in his/her job..', 'Job Requirements:': 'The applicant needs to have a PhD in Biological sciences/Biochemistry/Molecular Biology and be an expert in molecular cloning and nucleic acid biology..He also needs to be able to work well in a team and be able to collaborate with others across different institutes.\xa0.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/post-doctoral-fellow-lab-of-rna-genomics-structure-10097062?jobId=jobstreet-sg-job-10097062§ionRank=533&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Fellow, - (Geometry, Probability, and Deep Learning) (R00009869)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Responsibilities': 'Obtaining mathematical results in the area of Geometry, Probability, and Deep Learning.Designing, implementing, and testing algorithms.Engaging in scientific exchange with collaboration partners of the project.Guiding junior researchers in the team.Preparing reports, scientific papers, and presentations.Helping with academic self-administration.', 'Job Requirements': 'PhD in Mathematics or related areas.Experience in geometry, probability and/or deep learning..Some more specific research areas of particular interest are infinite-dimensional Riemannian or metric geometry, infinite-dimensional probability or stochastic analysis, statistical learning theory, coding theory, inverse problems, and harmonic analysis. Moreover, some applications of particular interest are mathematical finance and biomedical image or shape analysis..Good publication record.Good communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-geometry-probability-and-deep-learning-r00009869-10071498?jobId=jobstreet-sg-job-10071498§ionRank=534&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow, - (Geometry, Probability, and Deep Learning) (R00009871)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Responsibilities': 'Obtaining mathematical results in the area of Geometry, Probability, and Deep Learning.Designing, implementing, and testing algorithms.Engaging in scientific exchange with collaboration partners of the project.Guiding junior researchers in the team.Preparing reports, scientific papers, and presentations.Helping with academic self-administration.', 'Job Requirements': 'PhD in Mathematics or related areas.Experience in geometry, probability and/or deep learning. Some more specific research areas of particular interest are infinite-dimensional Riemannian or metric geometry, infinite-dimensional probability or stochastic analysis, statistical learning theory, coding theory, inverse problems, and harmonic analysis. Moreover, some applications of particular interest are mathematical finance and biomedical image or shape analysis..Good publication record.Good communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-geometry-probability-and-deep-learning-r00009871-10071505?jobId=jobstreet-sg-job-10071505§ionRank=535&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Manager/Assistant Manager, Data & Analytics'}, {'company_name': 'Resorts World at Sentosa Pte Ltd'}, {'small_section': ['Central', 'Posted on 30-Oct-22']}, {'Job Description:': 'Supports the design, implementation and maintenance of data flow channels and data processing systems that support the collection, storage, batch and real-time processing, and analysis of information in a scalable, repeatable, and secure manner..Keep abreast of latest technologies and products in database and data processing software, and technologies..Recommend solutions to improve new and existing data platforms including migration..Experiment with, select, and implement cutting edge Big Data tools and frameworks required to provide requested capabilities..Build, deploy and manage big data tools with solid devops functions. Be able to manage CI/CD pipelines..Develop codes and scripts to process structured and unstructured data in real-time from a variety of data sources..Implement and monitor data security and privacy measures on data solutions..Maintenance and support of batch job processing in Data warehouse / data platform.Automate and optimize the data collection and analysis processes, data releasing and reporting tools..Gather requirements for data warehouse projects, conducting UAT and to provide training for end users, as and when required..Mentoring junior team members through code review and enablement training.', 'Job Requirements': 'Degree in Computer Science/Information Systems or equivalent with minimum 4 years of hands-on experience in the maintaining and supporting an enterprise level data platform..Must have hands-on ETL/ELT experience, specifically on Microsoft SSIS / Azure Data Factory, strong working experience ETL / ELT experience will also be acceptable..Proficiency in SQL and deep understanding of DWH architecture and data/table formats such as parquet/json/csv in distributed data processing and storage systems..Possess good understanding of software development life cycles..Ability to analyze large datasets, data model and interpret data pattern..Working experience in handling projects involving Data Analytics related work is a plus..Knowledgeable on cloud systems like Alicloud, Azure.Experienced in managing Tableau Servers is a plus..Good experience with programming languages like Python, R, and scripting languages such as PowerShell and bash is a plus..Experience in machine learning operations, or setting up environments for data scientists/machine learning engineers would be advantageous.Strong communication and interpersonal skills..Have a positive attitude and willingness to learn and adapt to a changing environment..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200502573D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Hotel / Hospitality', 'Benefits & Others': '-, -'}, {'Company Overview': '\n\tResorts World Sentosa (RWS), Asia’s premium lifestyle destination resort, is located on Singapore’s resort island of Sentosa. Spanning 49 hectares, RWS is home to world-class attractions including Universal Studios Singapore, S.E.A. Aquarium, Dolphin Island and Adventure Cove Waterpark. Complementing the adventure and adrenaline of its theme parks and attractions are six unique luxury hotels, the world-class Resorts World Convention Centre, a casino and the Asian flagship of a world-renowned destination spa. RWS offers award-winning dining experiences and exciting cuisines from around the world across its many renowned celebrity chef restaurants, establishing itself as a key player in Singapore’s vibrant and diverse dining scene and a leading gourmet destination in Asia for epicureans. The integrated resort also offers world-class entertainment, from original resident productions to concerts and public shows such as Lake of Dreams. RWS has been named “Best Integrated Resort” since 2011 for nine consecutive years at the TTG Travel Awards which recognises the best of Asia-Pacific’s travel industry.\n\n\tRWS is wholly owned by Genting Singapore, a company of the Genting Group. For more information, please visit www.rwsentosa.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-assistant-manager-data-analytics-10069872?jobId=jobstreet-sg-job-10069872§ionRank=536&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Senior Research Scientist (Electrical Engineering) - (R00008423) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Key Responsibilities:': 'Lead the technical development of advanced data-driven methods for smart meter data analytics for smart home applications..Design artificial intelligence (AI) based models for residential load demand forecasting, solar PV power forecasting, and prosumer behaviour modelling and knowledge extraction..Perform testing and demonstration of the algorithms and deliverables..Communicate with the industry collaborators for progress reporting and potential commercialization of deliverables..Assist the PI for project management, including time schedule and milestone management..Coordinate with other research teams in this project for internal and external communication and collaboration..', 'Job Requirements:': 'PhD degree in Electrical Engineering..At least 5 years research and/or industry working experience..Expert knowledge in power system data analytics, especially on forecasting and knowledge extraction..Comprehensive experience in industry-funded research projects..Familiar with commercialization of research deliverables..Excellent project management skills..Excellent publication record in top-tier journals..Excellent verbal and written communication skills in English..Strong analytical and conceptual abilities..Able to work independently and in a team to realize proposed research work..'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-electrical-engineering-r00008423-urgenthire-10128418?jobId=jobstreet-sg-job-10128418§ionRank=538&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'System Engineer | C++ | AI'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Key Responsibilities:': 'Conduct user requirements, application development, system integration, deployment as well as troubleshooting.Improving Computer Generated Forces (CGF)\xa0behaviours by scripting of realistic behaviours in CGF entities.Development of scenario planning tools\xa0and\xa0Conduct testing to evaluate software.Maintain and improve\xa0existing codebase and review code changes.Investigate and using new technologies to improve current workflow.Good technical documentation skills.', 'Key Requirements:': 'Diploma or Degree in Software Engineering, Computer Science, Computing or related fields.Have relevant experience in scripting or modding.Knowledge of scripting languages using C++ and Lua..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/system-engineer-%7C-c-%7C-ai-10139717?jobId=jobstreet-sg-job-10139717§ionRank=539&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Engineer (Digital Customer Experience & Analytics) - (SATS01239-9952)'}, {'company_name': 'SATS Ltd.'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About SATS – Feed and Connect Communities': '', 'KEY RESPONSIBILITIES': '', 'Business Analytics': 'Build data pipelines and functions for visualisation and business analytics supporting the business and respective product owners.Deliver accurate regular and ad-hoc performance tracking and analysis to drive traffic, transactions and processes.Ad-hoc analysis based on strategic direction of the business and deep dive into specific area / trend.Make data management recommendations based on data and industrial practices\xa0.Assist in business case and pricing initiatives as required.', 'Data Engineering and Analytics': 'Design, develop and implement datasets, models, as well as support to interpret and present statistical outcomes to support the organisation’s operations and execution of key business strategies.Design and conceptualize solution that address the organisation’s challenges through use of data engineering and analytics and process large amount of data by applying algorithms.Collaborate with stakeholders to build data management and analytics capabilities, conduct feasibility studies,.Knowledge of ETL and OLAP to support and contribute to database implementation and systems, devising strategies to promote continuous improvement.Devise methods and strategies to obtain and extract data to derive business insights..', 'KEY REQUIREMENTS': '', 'data mining principles': '', 'analytical concepts and statistical techniques': '', 'structured and unstructured, SQL and NoSQL data ': '', 'data engineering methods and technologies / tools such as ETL, R and/or Python. Azure Cloud proficiency will be an advantage.': 'Highly motivated, structured and methodical with high degree of initiative.Strong problem solving, quantitative and analytical abilities.Excellent written and oral communication skills..Able to work independently or cross functionally.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '197201770G', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '13 days', 'Industry': 'Aerospace / Aviation / Airline', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Regular hours, Saturdays or shift may be required for operational positions'}, {'Company Overview': "SATS – Feed and Connect CommunitiesSATS is Asia's leading provider of food solutions and gateway services. Using innovative food technologies and resilient supply chains, we create tasty, quality food in sustainable ways for airlines, foodservice chains, retailers and institutions. With heartfelt service and advanced technology, we connect people, businesses and communities seamlessly through our comprehensive gateway services for customers such as airlines, cruise lines, freight forwarders, postal services and ecommerce companies.Fulfilling our purpose to feed and connect communities, SATS is delighting customers in over 60 locations and 14 countries across the Asia Pacific, UK, and the Middle East. SATS has been listed on the Singapore Exchange since May 2000. For more information, please visit\xa0www.sats.com.sg."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-digital-customer-experience-analytics-sats01239-9952-10128110?jobId=jobstreet-sg-job-10128110§ionRank=540&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing'}]
About SATS – Feed and Connect Communities
[{'position': 'Research Fellow, (Data Restoration), R00003935'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 29-Oct-22']}, {'Job Responsibilities': 'The Research Fellow will work on a project to conduct the research on the development of Data Analysis of Recovered Data from Flash Memory for image and video data. The roles of this position include:.Development of image and video data restoration algorithms and software development in Android System.Develop image and video recovery methods of corrupted zip file.Recovery of encrypted data in Android system.', 'Job Requirements': 'PhD in Electrical and Electronic Engineering, Computer Science or related field specialization in Data Restoration.At least 3 years research experience in research institute or university in related area is required.Expertise in video algorithms and machine learning.Good publication track record is required.Proficiency in basics of programming languages such as C, C++ and Python.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-restoration-r00003935-10066953?jobId=jobstreet-sg-job-10066953§ionRank=542&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow (Machine Learning for Geothermal Energy Exploration) (R00010122)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Responsibilities': 'Develop modern machine learning techniques for seismic data analysis.Deploy seismic sensors and collect seismic data at possible geothermal sites in Singapore.Use advanced inversion theory to interpret real seismic reflection data.Publish scientific results in high-profile journals.', 'Job Requirements': 'PhD in mathematics, computer sciences, physics, geophysics, engineering or equivalent.Evidence of innovation and/or high quality publications in the area of computational mathematics, computer sciences, applied mathematics or geophysics.Enthusiasm, good communication skills, and able to conduct independent research.Experiences with seismic inversions and massive data processing are preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-for-geothermal-energy-exploration-r00010122-10047391?jobId=jobstreet-sg-job-10047391§ionRank=543&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Engineer - (Engineering/Computer Science) - #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Play a leading role in the development of AI/Machine learning models and algorithms for the predictive fault detection and classifications for Li Ion battery energy storage system (ESS) by a companion team for improved operation safety.Work closely with senior team members in coding/building machine learning algorithms, RNN, LSTM, GNN etc for data driven ESS models for purposes of fault/failure prediction.Work closely with the AI/machine learning team to deliver the overall project KPIs.Responsible for the acquisition and uploading of ESS operation data from the test-bed ESS.Assist in the preparation and compilation of regular progress reports and presentations.General support to the ESS research team’s activities.', 'Job Requirements:': "Master's degree in Engineering/Computer Science.Candidates with Bachelor's degree in Engineering/Computer Science are welcome to apply.Minimum 3 years of working experience in machine learning data driven modelling and related areas.Working knowledge in machine learning model development tools/platform such as Tensorflow, Keras, Pytorch, Scikit-learn etc.Working knowledge in machine learning algorithms, like neural network, SVM, deep learning.Knowledge on battery energy storage systems operating condition monitoring and analysis.Working knowledge of data acquisition and communication with battery management system (BMS).Independent problem solver with the ability to co-operate and work in a team."}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-engineering-computer-science-urgent-10135661?jobId=jobstreet-sg-job-10135661§ionRank=546&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Full Stack Developer (Visualisation)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted 10 hours ago']}, {'Job description:': 'Design and develop a visualisation platform, comprising of user interface, data ingestion tools and visualisation aids, to visualise data generated in real-time and non-real time from digital twins of ocean going platforms and maritime systems..Maintain system configuration, interface specifications and user documentation for each development cycle..Engage stakeholders (hydrodynamics and structural engineers) to refine and prioritize requirements for system enhancements..Any other duties as assigned by supervisor..', 'Requirements:': '', 'Qualification & Field of Study:': 'Bachelor/Masters in Computer Science or Computer Engineering\xa0or equivalent.\xa0.', 'Work Experience:': 'At least 3 years of relevant working experience in UX design, data visualisation or Augmented Reality/Virtual Reality..Proven track record in designing data structures, algorithmic programming, data visualisation, virtual or augmented reality, and database management..Proficient with C++, Matlab, Python, database technologies, and visualisation using game engines such as Unity 3D..Experience in MPI-based parallelisation and GPU computation is an advantage..', 'Other Requirements:': 'Good interpersonal and communications skills..Good organization skills and ability to adapt and work effectively as team player..Curious, resourceful, and self-driven with a high degree of professional integrity.\xa0.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/full-stack-developer-visualisation-10096627?jobId=jobstreet-sg-job-10096627§ionRank=547&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Job description:
[{'position': 'Assistant Head / Senior Officer (Data Policy and Governance)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities': 'Developing and maintaining the data management policies to standardize the best practices in data governance, quality, metadata management, data sharing, data catalogue & dictionary, master data management, data lineage etc across A*STAR to ensure the data assets are secured, responsibly and effectively used..Maintaining the data classification and registration of the data assets in A*STAR..Conducting regular assessments to measure and check compliance to policies and progress in achieving the strategic data goals..Supporting the Data Management Office (DMO) in performing the role of a secretariat for the Data Governance Council (DGC) and other data management meetings..Supporting training and awareness activities to build good understanding of the data policies and best data management practices across the organization..', 'Job Requirements': 'Degree in computer science, information technology, business computing, business analytics, software/computer engineering or related disciplines..At least 2 years of relevant working experience in a similar role with knowledge of data management and governance policies development and implementation..Process oriented with strong documentation skills..Excellent engagement and inter-personal skills to build and maintain strong and effective relationships with stakeholders on data matters..Excellent communications in both written and spoken language, as well as good presentation skills..Possess good analytical, logical and ability to multi-task in a fast-paced environment..Knowledge in industry best practices and framework for data management such as DMBOK will be an added advantage..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-head-senior-officer-data-policy-and-governance-10123649?jobId=jobstreet-sg-job-10123649§ionRank=548&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Assistant Manager (Applications)'}, {'company_name': 'SPD Scientific Pte Ltd'}, {'small_section': ['Central', 'Posted on 5-Nov-22']}, {'Responsibilities:': 'To assist in leading the applications team on technical support, pre-sales and marketing activities for all brands within Lifescience and Clinical Research portfolio..To be accountable for all pre-sales and post-sales application support and the on-site training to customers..Leverage strong structured problem-solving skills to identify and resolve customer need.Communicate with the sales team to ensure all business needs are met, in managing client request and provide problem-solving solutions..To keep an up-to-date knowledge with the current products and clinical trends and support internal training sessions to ensure product knowledge is at high levels within all relevant parties..Provide voice of customer to internal teams on product performance, implementation, and development areas, identify training and documentation gaps.As a customer-centric person, you will build and maintain a good business relationship with customers and various stakeholders.\xa0.', 'essential ': '\xa0Bachelor’s Degree in Laboratory Medicine, Biomedical Sciences, Medical Technology, Biological Sciences, Biotechnology, Life Sciences or any other equivalent qualification\xa0.Candidates should have a minimum 3-5 years of relevant applications/ lab experience, with minimum 1 years of team lead experience.Preferably strong technical background in Cell Biology, Proteomics and Genomics.Experience in an applied science area (e.g. Clinical Research) is an added advantage.Strong analytical, technical troubleshooting and presentation skills.Highly motivated with strong problem-solving skills.Customer focused/Strong networking skills.Quick learner, team player and ability to work independently as required.Must be willing to travel (est. 10%) regionally and internationally as required.Excellent communication and interpersonal skills.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biomedical', 'Registration No.': '199401685W', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '12 days', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts), Team Bonding Activities, Fruit Day, Annual Dinner', 'Specific Location': 'Pasir Panjang'}, {'Company Overview': '\n\n\t\tOur Company enables the industrial, R&D and healthcare professionals to make an impact in improving lives by aiding them in their research and testing processes with our products and services. This is just one of the many ways "We impact lives".\n\n\t\tOne of our business entities - SPD Scientific Pte Ltd\xa0- a leading distributor of top-notch laboratory consumables, reagents, biomedical and laboratory equipment and diagnostic products, offers myriad benefits to customers in varying industries, such as F&B, pharmaceutical, academic and government research institutions, and healthcare.\n\n\t\tExcellence through people. Shaping the future together. Join our team today in empowering communities and impacting lives.\n\n\t\thttp://www.biomediaholdings.com/\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-manager-applications-10087740?jobId=jobstreet-sg-job-10087740§ionRank=549&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Senior Research Fellow (Quantum Optics), Centre For Quantum Technologies'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'About the Centre for Quantum Technologies': '', 'Job Description': '', 'Job Requirements': '', 'More Information': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-fellow-quantum-optics-centre-for-quantum-technologies-10106510?jobId=jobstreet-sg-job-10106510§ionRank=550&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
About the Centre for Quantum Technologies
[{'position': 'Assistant Manager, Data Management'}, {'company_name': 'Keppel Enterprise Services'}, {'small_section': ['Central', 'Posted on 28-Oct-22']}, {'Job Description': 'Analyze and organize raw data.Build data systems and pipelines.Evaluate business needs and objectives.Interpret trends and patterns.Conduct complex data analysis and report on results.Prepare data for prescriptive and predictive modeling.Build algorithms and prototypes.Combine raw information from different sources.Explore ways to enhance data quality and reliability.Identify opportunities for data acquisition.Develop analytical tools and programs.Collaborate with data scientists and architects on several projects.', 'Job Requirements': 'Hands-on experience with data analytics and data science projects.Knowledge of programming languages (e.g. Python and R) and data science packages.Technical expertise with data preparation and data mining.Experience with customer analytics and relevant machine learning models (clustering, churn modelling, looks-alike).Hands-on experience with BI tools (e.g. Power Bi, Tableau, etc,).Familiarity with cloud computing (e.g. Azure, AWS, GCP, Snowflake) is a plus.Analytical mind and business acumen.Strong math skills (e.g. statistics, algebra).Degree in Computer Science, IT, or similar fields.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201431983N', 'Company Size': '201 - 500 Employees', 'Industry': 'Environment/Health/Safety', 'Benefits & Others': 'Dental, Medical'}, {'Company Overview': 'With a global footprint in over 30 countries, Keppel Group leverages its international network, resources and talents to grow its key businesses. It aims to be a global company at the forefront of our chosen industries, shaping the future for the benefit of all our stakeholders - Sustaining Growth, Empowering Lives and Nurturing Communities.The Keppel Group of Companies includes Keppel Offshore & Marine, Keppel Infrastructure, Keppel Telecommunications & Transportation (Keppel T&T) and Keppel Land, among others.'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-manager-data-management-10110596?jobId=jobstreet-sg-job-10110596§ionRank=551&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Senior Data Engineer, Quantitative Strategy (FDT) #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Team Introduction:': '', 'How do we work:': '', 'Outcome Driven': '', 'Start Small and Move Fast': '', 'Ownership ': '', 'Continuous Learning': '', 'We are in this Together': '', 'Job Overview:': '', 'What you will be working on:': "Manage a team of 2-3 data scientists and/or data engineers deployed to the partner agency, to build next-generation data infrastructure and galvanise digitalization at said partner agency..Organize and guide your team to execute the pipeline of projects. This will involve overseeing your team's work in the following areas:.Design and build resilient and efficient data pipelines for both batch and real-time streaming data;.Architect and design data infrastructure on cloud, using industry standard Infrastructure-as-Code tools;.Build software frameworks to solve data problems at scale;.Collaborate with product managers, software engineers, data analysts, and data scientists to build scalable and data-driven platforms and tools..Work with partner agency's Chief Data Officer (CDO)’s and Chief Information Officer (CIO)’s Offices to improve the agency’s data management and analytics infrastructure, and to grow data science capabilities within the agency’s workforce.\xa0.Support the professional growth and development of data scientists and data engineers in your team and forge a positive team culture to ensure staff retention..", 'What we are looking for:': "A Bachelor’s Degree or higher in Computer Science, Software Engineering, Information Technology, or related disciplines. Advanced degrees are preferred. Relevant training and certifications (e.g., Coursera) may also be considered..At least 5 years of relevant experience, in data engineering and/or the public sector, preferably with experience managing a data science team..Well-versed in government systems and government's policies relating to data governance, data management, data infrastructure, and data security..Have strong analytical, conceptualisation, and problem-solving skills. Able to take broad, strategic perspectives, and when necessary, drill deep to understand business needs and challenges..Understand key concepts, broad methodologies, and common use cases in data science..Deep understanding of key concepts in data engineering, e.g., system design, data structure and algorithms, data modelling, data access, and data storage..Training and relevant experience in four or more of the following areas:.Both SQL and NoSQL databases, including performance tuning and troubleshooting;.Write efficient SQL;.Implement batch and streaming data pipelines;.Cloud technologies such as AWS, Azure, and Google Cloud;.Data engineering tools and frameworks such as Airflow, Kafka, Hadoop, Spark, Beam, Flink, Kubernetes;.DevOps tools such as Docker, Git, Terraform;.LDAP, OAuth, API gateways..Demonstrable experience in project management of technical initiatives..Have excellent oral and written communication skills, along with the ability to pitch ideas and influence stakeholders at all levels on the adoption of analytics. Able to present technical concepts and results of technical analyses to non-technical audience effectively..Adaptable to dynamic operating contexts and able to work with multiple stakeholders across different teams..Strong people manager who can inspire, motivate, and grow the team and has strong organisation skills. Effective in setting and managing individual and team KPIs..Have passion for improving public service using analytics and data..", 'Preferred Requirements:': 'Experience in agile project management\xa0.Understand processes in digital transformation\xa0.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-engineer-quantitative-strategy-fdt-jobsthatmatter-10052798?jobId=jobstreet-sg-job-10052798§ionRank=552&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Team Introduction:
[{'position': 'Research Fellow, - (Data Science / Blood Sugar Dynamics/Diabetes) (R00010120)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Job Description:': 'Conduct cross-disciplinary research in monitoring of diabetic condition in healthy and affected individuals. This involves analysis of the continuously measured blood sugar concentration dynamics in diabetics, pre- and none-diabetic individuals. Correlation of these measurements with food nutritional composition and the individuals’ psychological and physical life-stress levels.\xa0 Collaborate with metabolic disease researchers from NTU LKC School of Medicine and TTS Hospital Singapore..Take part in current initiatives in SG health care and digital wellbeing. This project is specifically focused on providing advice for elderly people with type 1 and 2 diabetes and pre-diabetic condition and development of personal data-based dietary recommendations assisting with the decision making process such as insulin injections, food type and nutrition, exercises.\xa0 Collaborate with Temasek Centre for Applied Nutrition Services & Glycemic Index Research Unit. \xa0.', 'Job Requirements:': 'PhD in biology, bioinformatics, metabolic diseases, nutrition, or related fields. This position also welcomes applicants with qualifications at MSc or BSc level (to be offered at Research Associate or Project Officer, respectively), if the right experience, technical qualifications, and expertise is met..Prior research experience..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-science-blood-sugar-dynamics-diabetes-r00010120-10070210?jobId=jobstreet-sg-job-10070210§ionRank=553&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Fellow, - (Computer Science/Vision/Graphics) - (R00010451)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:\xa0': 'Contribute to design and development of the perception system of our autonomous mobile robot project..Support collaboration with academia and help translate state of the art academic research results in mobile robotics and machine learning to production ready systems..Contribute to the development of internal infrastructure for managing the training, testing/quality assurance, and deployment of both machine learning models and software modules for the perception system..Provide support and leadership in system architecture design for autonomous mobile robot systems..Represent Continental-NTU Corp Lab in national and international initiatives..Carry out project planning, tracking, and reporting..', '\xa0': '', 'Job Requirements:\xa0': 'Must hold\u202fa PhD degree in computer science, computer vision, computer graphics, robotics, video game programming, or machine learning..Proven track record in research excellence as evidenced by published in at least one of the following conferences as an author, SIGGRAPH, CVPR, ICCV, ECCV, ACCV, WACV, BMVC, ICCP, ISMAR, NeurlPS, ICLR, ICRA, IROS, RSS, or in major CV/CG/Robotics/Machine learning journals..Must be passionate about generating new ideas, solving problems, and building working systems..Must be self-motivated, proven collaborators, good communicators, attentive to details, and keen to learn..Ideally have practical experience working in an academic or industrial research environment.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-vision-graphics-r00010451-10131803?jobId=jobstreet-sg-job-10131803§ionRank=555&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Process Excellence, Executive'}, {'company_name': 'Cornerstone Global Partners'}, {'small_section': ['Central', 'SGD\xa04,000 - SGD\xa04,500', 'Posted on 27-Oct-22']}, {'Job Scope:': 'Design and develop Tableau dashboards to automate and track business performance and project initiatives.Provide automation support for the division to improve operational efficiency.Monitor and track development of distribution incentives and challenges on a regular basis using automated reports.Drive analytics and insights on distribution performance and behavior to support business decision-making process.Work cross-functional to ensure the delivery of distribution strategic initiatives and execute any ad-hoc tasks as assigned.Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..', 'Requirements:': 'Degree in Finance, Business Analytics, Statistics, Actuarial Science or related.At least 3 years of relevant professional experience with insurance industry knowledge.Proficient with data visualization tools (i.e. Tableau, Qlik, or Power BI).Proficient with data tools such as SQL and Python, and has working knowledge in handling large datasets.Experience in working with Microsoft Excel and PowerPoint.Ability to automate processes, reports and trackers using Excel VBA, Python, SQL..', 'R1659753': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201622755N', 'EA No.': '19C9859', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '5 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': 'Launched in 2012, CGP Group is one of the largest recruitment solutions and HR Technology platforms worldwide, delivering traditional C-level to mid-level executive search, contract staffing, market entry/outbound investment consultancy and organizational design solutions through our industry-specialized recruiting team.We operate in 17 offices globally, including Mainland China, Hong Kong, Singapore, Thailand, Japan, Middle East and the United States. CGP Group has won multiple industry and government awards including Best Recruitment Firm and Best Innovation in Recruitment as a result of the development of our proprietary AI enabled O2O recruitment platform.\xa0EA Licence number: 19C9859'}, {'url': 'http://www.jobstreet.com.sg/en/job/process-excellence-executive-10109852?jobId=jobstreet-sg-job-10109852§ionRank=556&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Job Scope:
[{'position': 'Lead, Business Analytics [Contact Centre | East]'}, {'company_name': 'Company Confidential'}, {'small_section': ['Bedok', 'Posted on 1-Nov-22']}, {'#BeMore': '', 'Top reasons to work with us': '', 'What is your mission?': '', 'Who are we looking for?': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics'}, {'Company Overview': 'Attractive remuneration, great perks, and performance incentivesComprehensive medical, insurance, or social security coverage\xa0Premium workspacesEngaging activities and recognition programsStrong learning and development plans for your career growthPositive culture for you to #BeMore at workEasy to locate area with direct access to public transportFlexible working arrangementsBe coached and mentored by experts in your fieldJoin a global company with 26 years of experience and more than 350+ industry awards'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-business-analytics-%5Bcontact-centre-%7C-east%5D-10121397?jobId=jobstreet-sg-job-10121397§ionRank=557&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
#BeMore
[{'position': 'Research Fellow - 1 Year Renewable Contract'}, {'company_name': 'National Healthcare Group Polyclinics'}, {'small_section': ['West', 'Posted on 3-Nov-22']}, {'Requirements': 'PhD or professional doctorate in public health, health services research or a related discipline..Experience in quantitative and/or qualitative research methodologies and healthcare programme evaluation.Preferably with track record of first author publications in the medical, health services research or public health literature.Proven ability to initiate and successfully manage research projects.Proficiency in literature search and reference management software (e.g. Endnote).Familiar with statistical software applications such as SPSS / STATA.Advanced verbal communication and written skills.Ability to work both as part of a team and independently.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Biomedical', 'Registration No.': '52929305J', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '23 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Sports (e.g. Gym), Business (e.g. Shirts)'}, {'Company Overview': "\nNational Healthcare Group Polyclinics (NHGP) forms the primary healthcare arm of the National Healthcare Group (NHG). Its seven polyclinics serve a significant proportion of the population in the central and northern parts of Singapore.\n\n\tNHGP provides a comprehensive range of health services for the family, functioning as a one-stop health centre providing treatment for acute medical conditions, management of chronic diseases, women & child health services and dental care.\xa0 The focus of NHGP's care is on health promotion and disease prevention, early and accurate diagnosis, disease management through physician led team-based care as well as enhancing the capability of Family Medicine through research and teaching."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-1-year-renewable-contract-10102057?jobId=jobstreet-sg-job-10102057§ionRank=559&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Requirements
[{'position': 'Data Engineer for AI Singapore'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-for-ai-singapore-10055285?jobId=jobstreet-sg-job-10055285§ionRank=560&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
[{'position': 'Senior Scientist (AI), Computing & Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'JOB DESCRIPTION': '', 'A successful candidate will be involved in some or all of the following tasks:': 'Perform research in knowledge extraction and modeling / knowledge graphs / knowledge-based reasoning systems..Evaluate developed systems with use cases motivated by industry..Actively collaborate with other researchers in R&D activities including scientific publication and grant proposal writing, system development, testing and deployment of intelligent systems..', 'JOB REQUIREMENTS': 'PhD in computer science, information systems, or a related field.A good scientific track record and practical experience in some of the following fields: natural language processing, knowledge engineering, knowledge bases and reasoning systems, computational and artificial intelligence, cognitive systems.Being a team player with good communication skills.Strong skills in scripting languages (e.g. Python).Experience in graph learning and language models.Experience in graph databases like Neo4j, TigerGraph, etc..Strong skills in functional programming and languages like LISP or Clojure.Experience in designing and performing a grant project.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-scientist-ai-computing-intelligence-ihpc-10124251?jobId=jobstreet-sg-job-10124251§ionRank=561&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
JOB DESCRIPTION
[{'position': 'Senior/ Professional Officer (Software Engineering for ML/DL/AI) - [498101] #Urgent'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities': 'Design and teach labs & practice modules..Mentor students in Capstone Projects and the Integrated Work Study Programme (IWSP)..Lead or co-lead innovation projects with industry..Manage labs and equipment to support academic programmes and applied research..Ensure safety in labs.', 'Job Requirements': 'A Postgraduate Degree in Computer Science, Data Science, or a related field, or equivalent levels of industry experience..Proven working experience related to Machine Learning or AI, with good knowledge of industry practices and technological applications in the field. Familiarity with practical ML, including standard frameworks and libraries..Basic to advanced level competence in programming languages such as C/C++, Python and Java. Should be able to handle OOP..Good grasp and understanding of data structures, data modelling and software architecture as well as a firm competence in mathematics..Motivation to be involved in applied research and academic project work, with demonstrated ability in developing software solutions to technical problems..Proven supervisory skills and the ability to work well with others..Demonstrated proficiency to keep abreast of developments in the field, and pursue professional certification programs. Possession of industrial certifications in relevant areas will be an advantage..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-professional-officer-software-engineering-for-ml-dl-ai-%5B498101%5D-urgent-10105351?jobId=jobstreet-sg-job-10105351§ionRank=562&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Research Fellow - (Computer Science) - (R00007173) #WorkNow #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Key Responsibilities:': 'Conduct research and development related to Machine Learning and Deep Learning and spatial-temporal data mining.', 'Job Requirements:': 'PhD in Computer Science or related disciplines.At least 2 years of experience in machine learning and spatial-temporal data mining and data management.Good knowledge of and machine learning applications.Excellent publication records.Good spoken and written English.Strong research ability.Strong leadership quality.Good interpersonal skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-r00007173-worknow-urgent-10127573?jobId=jobstreet-sg-job-10127573§ionRank=563&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Analytics Lead (Business Domain Experience)(Marketing/Logistics/Shipping/Revenue Mgt)'}, {'company_name': 'GMP Technologies - Engineering'}, {'small_section': ['Central', 'Posted on 22-Oct-22']}, {'Strong understanding of a business domain (e.g. Supply Chain, Marketing, Revenue Management)': 'Present information using data visualization techniques to enhance business outcomes..Build advanced analytics applications from structured and unstructured data on the various cloud and big data platforms..To lead strategic data analytics projects to identify or explore marketing and business development opportunities in all channels..Execute analytics with the right balance of business and technical skills.To build effective data science solutions and strategies to address business challenges.Degree with any specialisation in Data Science or other quantitative related fields.6 to 8 years of related experience.\xa0.Experience with visualization programs like Tableau, Looker, or any BI visualizer with knowledge of SQL databases.Strong understanding of a business domain (e.g. Supply Chain, Marketing, Revenue Management).Coding skills in Python, and ideally in other languages like R, SQL, Hive SQL, C++.Hands-on experience with Python libraries.Demonstrated ability to solve business problems involving data science problem classes (classification, forecasting, natural language understanding, computer vision, quantitative optimization).Ability to communicate data science solutions that business stakeholders can understand.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '09C3051', 'EA No.': '11C3793', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tGMP Technologies is a division of The GMP Group.\n\n\t\tFounded in 1991, The GMP Group is one of Asia’s leading staffing and human resource consultancies. Since its inception, the group has progressed to become a regional human capital solutions provider across all industries. Today, GMP is headquartered in Singapore with a branch office in Malaysia. The group’s extensive network and comprehensive services affirm GMP’s role as one of the most dynamic staffing professionals in the region.\n\n\t\tRECRUITMENT I TECHNOLOGIES I BANKING I INTERNATIONAL I CONSULTANCY I\n\n\t\tVoted on of Top 10 recruitment agencies by HR practitioners since 2006 (Human Resources magazine).\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-lead-business-domain-experience-marketing-logistics-shipping-revenue-mgt-10093817?jobId=jobstreet-sg-job-10093817§ionRank=565&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Strong understanding of a business domain (e.g. Supply Chain, Marketing, Revenue Management)
[{'position': 'Executive, Information Management & Analytics (ID:508997)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Singapore', 'SGD\xa03,300 - SGD\xa04,300', 'Posted on 28-Oct-22']}, {'Responsibilities:': 'Provide data support and report generation.Extract, review and analyze the business information.Support the population health programs by present the data and reports.Data operation.', 'Requirements:': 'Degree in Economics, Information Management, Mathematics or Statistics\xa0.Business Analytics experience preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/executive-information-management-analytics-id%3A508997-10111068?jobId=jobstreet-sg-job-10111068§ionRank=566&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Innovation Manager, Artificial Intelligence Lab, School of Computing (2 year contract)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Purpose': '', 'Job Description': 'Design, implement and oversee strategic initiatives, programs, and projects by\xa0working with faculty members, research scientists and engineers, students, and other partners and collaborators to plan and manage the scope, schedule, cost and resources involved.\xa0.Monitor and facilitate successful delivery and implementation of strategic initiatives, programs and projects, ensuring that they are completed on time while meeting the requirements, such as schedule and cost constraints.\xa0.Establish and improve program and innovation management practices, such as protocols, processes, tools, and documents as necessary.\xa0.Develop strong relationships across various stakeholders, including project teams, internal management, external collaborators and partners..Perform horizon scanning and identify new opportunities for novel initiatives, programs, and projects in AI to create social and economic impact..', 'Qualifications': "Bachelors or master's degree in a quantitative/technical field, e.g., Computer Sciences, Engineering, or equivalent. Experience in Artificial Intelligence (AI) or Data Science is highly desirable.\xa0.Experience and a proven track record in program management or managing multidisciplinary, cross-functional projects.\xa0.Solid understanding of project management processes and practices. Project management certification (e.g., PMP, PRINCE2) is desirable but not required.\xa0.Familiarity with R&D projects and government/industry R&D funding schemes\xa0.Excellent communication and presentation skills, able to articulate complex issues to different stakeholders verbally and in writing.\xa0.Strong interpersonal and leadership skills, effective in fostering teamwork with members of diverse background.\xa0.Occasional travel is expected.\xa0."}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/innovation-manager-artificial-intelligence-lab-school-of-computing-2-year-contract-10106787?jobId=jobstreet-sg-job-10106787§ionRank=567&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Job Purpose
[{'position': 'Scientist (Knowledge Engineering), Social & Cognitive Computing, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'JOB DESCRIPTION': '', 'A successful candidate will be involved in some or all of the following tasks:': 'Perform research in knowledge extraction and modeling / knowledge graphs / knowledge-based reasoning systems..Evaluate developed systems with use cases motivated by industry..Actively collaborate with other researchers in R&D activities including scientific publication and grant proposal writing, system development, testing and deployment of intelligent systems..', 'JOB REQUIREMENTS': 'PhD in computer science, information systems, or a related field.A good scientific track record and practical experience in some of the following fields: natural language processing, knowledge engineering, knowledge bases and reasoning systems, computational and artificial intelligence, cognitive systems.Being a team player with good communication skills.Strong skills in scripting languages (e.g. Python).Experience in graph learning and language models.Experience in graph databases like Neo4j, TigerGraph, etc..Strong skills in functional programming and languages like LISP or Clojure.Experience in designing and performing a grant project.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-knowledge-engineering-social-cognitive-computing-ihpc-10124244?jobId=jobstreet-sg-job-10124244§ionRank=568&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
JOB DESCRIPTION
[{'position': 'Data Analytics Infrastructure Engineer (Data Architect, Healthcare)'}, {'company_name': 'Triton AI Pte Ltd'}, {'small_section': ['West', 'SGD\xa04,500 - SGD\xa09,000', 'Posted on 30-Oct-22']}, {'Permanent Role + AWS + VB': 'Permanent Role + AWS + VB.Basic up to 5.5k (Senior Executive Level with experience).', 'Basic up to 5.5k (Senior Executive Level with experience)': 'Basic up to 9k (Principal Analyst Level with experience).', 'Basic up to 9k (Principal Analyst Level with experience)': 'Reputable Healthcare Sector, West MRT.', 'Reputable Healthcare Sector, West MRT': 'The ideal candidate should possess at least 5 years of experience in data architecture/ engineering and working/ programming knowledge in Python, R, Java, or C#.', 'The ideal candidate should possess at least 5 years of experience in data architecture/ engineering and working/ programming knowledge in Python, R, Java, or C#': "Collaborate with stakeholders to understand requirements for data structure, availability, scalability & access..Establish and maintain data pipelines from ingestion (batch, real-time, or streaming), stage, extract-transform-load (or extract-load-transform), fuse, and use in analytics and machine learning (batch, real-time and asynchronous).Establish and maintain data virtualization over ingested datasets in the company's Data Lake, for data consistency, standardization, and ease of use..Assist in data governance quality assurance for oversight, monitoring and reporting results.Collaborate with infrastructure and operations teams to architect and implement performance-tuning solutions for data storage and analytics..Communicate and build partnerships with stakeholders, vendors, developers, and testers, presenting technical concepts to business stakeholders in understandable terms to garner support for solution architectures, resourcing, and budgeting to align with the data architectural roadmap..Foster continuous improvement by looking for opportunities to improve design practices and technical approaches within the department..Evaluate tools and techniques, engaging vendors where needed, to support estimation of effort, costs, and bill of materials, and create common ground for the solution to be developed..Serve as a technical expert on solution design, development, and implementation requirements to address business needs while balancing financial and technical constraints such as scalability, security, performance, and reliability..Bachelor’s Degree in Business, Digitalization, Technology or related discipline.At least 5 years of experience in data architecture/engineering..Working knowledge of common programming languages such as Python, R, Java, or C#..Experience with relational databases (including SQL fluency) and nonrelational databases..Familiarity with extract-transform-load/extract-load-transform operations is a must (eg Informatica)..Familiarity with data warehousing concepts (schemas, operational data stores, feature stores, datamarts) is a must..Experience with cloud-based computing, storage, analytics, administration, and management, such as Healthcare Commercial Cloud..Prior experience in the healthcare industry or technology startups will be an advantage.Professional certification in cloud infrastructure, Project Management, data engineering, data-ops, or equivalent areas would be advantageous..Working knowledge of streaming ingestion and streaming analytics is an advantage..Working knowledge of container technology is an advantage..", 'Interested candidates can forward their CVs in MS Word format to jermaine#triton-ai.com': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '21C0661', 'EA No.': '21C0661', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '5 days', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'TRITON AI\xa0(EA License Number 21C0661)\xa0is a Singaporean-owned talent resource organization formed with the purpose of developing a Singaporean core for our clients.Established since 2011 and formally operating as Talent Touche Pte Ltd,\xa0TRITON AI\xa0has undergone a total rebranding exercise in 2021 in alignment with our mission to enhance the effectiveness of Talent Acquisition and People-Powered Projects with\xa0Technology\xa0and\xa0Artificial Intelligence.\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-infrastructure-engineer-data-architect-healthcare-10116257?jobId=jobstreet-sg-job-10116257§ionRank=570&token=0~985f424a-b776-4eb7-8e51-1e4116ed25af&fr=SRP%20Job%20Listing'}]
Permanent Role + AWS + VB
[{'position': 'Research Engineer I (Health App Developer/Data Analyst)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities': 'Project management in ensuring all key deliverables are met.Design, build and maintain mobile health app (iOS and/or Android platform) for the elderly and connect it with existing wearables via Bluetooth Low Energy. Data Storage feature from mobile app to wearable is required.Conduct quantitative/ big data analysis using health app/wearables data and surveys.Specific duties include but are not limited to ensuring the quality and performance of the applications / platforms, identifying and fixing application bugs, maintaining the core code, and implementing updates to the application/platform.Work with team to conduct feasibility study with end-users and refine app based on collected data/feedbacks.Work with team to write journal publications, conference papers, and reports.', 'Job Requirements': 'Bachelor’s degree in Computer Science, Software Engineering, Information Technology, Computer Engineering, Computational Social Science, Communication, or related fields, and relevant work experience.Applicants with relevant work experience in app development are preferred..Interest in research for mobile health app/wearable technology.Familiarity with iOS programming languages (such as Swift, Objective-C, C#) and/or Experience with data analysis will be a bonus.Has a keen interest in developing mobile app for the elderly community. Candidate should be comfortable with communicating with elderly.Good analytical, organizational and interpersonal skills.Good communication and writing skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-i-health-app-developer-data-analyst-10073123?jobId=jobstreet-sg-job-10073123§ionRank=572&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'SAR Algorithm Developer'}, {'company_name': 'ST Engineering Mission Software & Services Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Title': '', 'About us': '', 'Job Responsibilities:': 'Familiar with SAR interferometry, polarimetry processing and applications.Familiar with SAR commercial satellite systems and imaging products.Able to perform basic SAR image interpretation.Experience in ingesting and processing SAR products.Develop Synthetic Aperture Radar (SAR) processing algorithms to generate value-added products from various SAR imaging modes and various SAR image product levels.Develop state-of-the-art computer vision algorithms for remote sensing applications..Bridge the technology development team with business and sales team and to lead the technical discussions with business prospects..Bridge the technology development team with the geospatial analyst team and create cutting-edge technology in geospatial products..Provide regular development progress updates to company’s stakeholders.Support the technology development team in product creation and contribute to product UI/UX design.', 'Job Requirements': 'PhD / Masters / Degree in Electrical Engineering, Computer Science, Mathematics or Statistics..At least 4-7 years of relevant work experience in data science or remote sensing field.Proficient in python programming and to be familiar with libraries such as libraries such as openCV and Scikit-learn..Experience with Git, containerisation, and software development workflow..Knowledge on cloud platforms and development on cloud would be an advantage..Knowledge on satellites and satellites orbital mechanics would be an advantage..Knowledge on geospatial data processing at scale would be an advantage.Applicants should be motivated and proactive, able to work independently, and results oriented..Location: Ang Mo Kio.', 'Job Specializations': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198601030N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tST Engineering Mission Software & Services Pte Ltd, a wholly owned subsidiary of Singapore Technologies Engineering Limited, has over 25 years of experience in the design, implementation and support of mission critical Command, Control, Communications, Computers & Intelligence (C4I) systems including cyber, data centres and managed services.\n\n\n\tUsing our Common Application Platform (CAP), we have built up an extensive track record of delivering end-to-end solutions such as emergency response systems, cloud computing services and ‘Smart City’ systems, to help clients realise business value and achieve greater efficiency and effectiveness in their operations.\n\n\n\tBased in Singapore, with operations in China (including Hong Kong), Botswana and United Arab Emirates, ST Electronics (Info-Software Systems) has an excellent track record of solutions for defence and commercial sectors, and successful partnerships with our customers globally.'}, {'url': 'http://www.jobstreet.com.sg/en/job/sar-algorithm-developer-10074207?jobId=jobstreet-sg-job-10074207§ionRank=574&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Job Title
[{'position': 'Research Fellow, - (Computer Science & Engineering), - (R00008590)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Key Responsibilities:': 'Understand the research project and work context as a scientific research staff in the team.Apply scientific, technical and software engineering skills to conduct research.Develop prototypes to demonstrate successful application of the research.Facilitate technical development, testing and refinements of research project.Promote collaborative and translational research work.Documenting research plans and progress, and writing reports.', 'Job Requirements:': '\u200bPh.D. Degree in Computer Science and Engineering or related fields.Has demonstrable experience in topics at the intersection of machine learning, robust optimization, and data analytics.Programming fluency in Python, C/C++ or Java.Proficiency in developing and deploying algorithms to both academic and industrial environment.Prior background in computer vision or natural language processing is a plus.Highly motivated, independent and able to work as a team.Effective communication and report writing skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Singapore'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-engineering-r00008590-10144059?jobId=jobstreet-sg-job-10144059§ionRank=576&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Scientist in Centre for Research in Child Dev. [R00007657]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'SGD\xa03,800 - SGD\xa05,300', 'Posted on 2-Nov-22']}, {'Research Scientist in Centre for Research in Child Development (OER) [NIE]': '', 'Overview': 'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention\xa0\xa0.Candidates with appropriate qualifications and relevant research experience are encouraged to apply. Successful applicants will work with a team of researchers at CRCD. We invite applications for the position of Research Scientist to join our efforts..', 'Requirements': 'PhD in a relevant discipline (e.g. developmental psychology, developmental science,\xa0 child development, educational psychology, linguistics, early intervention, or special education).Minimum 2 years of post-PhD experience (Research Scientist).Demonstrated ability to lead a research team;.Demonstrable track record in the following areas:.High quality publications (please provide samples and information on the\xa0 quality and impact of your work based on citations and ranking of journal publications);.Planning and writing research projects that are funded through competitive peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences);.Proficiency in the design and testing of instruments is desirable;.Excellent interpersonal and communication skills (spoken and written English);.Ability to work collaboratively within a team environment..', 'Responsibilities of Research Scientists': 'Collaborate with colleagues to design and implement the centre’s research programme.Take a leading role in the development of research projects and programmes and in seeking and pursuing appropriate external funding;.Disseminate the outcomes of research in peer-reviewed publications of international standing;.Manage and conduct administrative and management tasks associated with your programme of research;.Participate in research of strategic importance to NIE;.Participate in the wider research and service activities of NIE;.', 'Closing Date': 'Review of applicants will continue until the position is filled..', 'Other Information': 'Queries regarding the position should be directed to\xa0.', 'Application': 'Interested applicants should complete and submit the following documents:.Cover letter addressing how you meet each of the requirements of this position;.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research expertise, interests, and future directions;.1 to 3 of your best publications;.Name of at least 3 referees;.Any other documents that demonstrate your qualifications.', 'Note to applicants:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-in-centre-for-research-in-child-dev.-%5Br00007657%5D-10076152?jobId=jobstreet-sg-job-10076152§ionRank=577&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Research Scientist in Centre for Research in Child Development (OER) [NIE]
[{'position': 'Marketing Analytics Lead Specialist'}, {'company_name': 'Castlery'}, {'small_section': ['Central', 'SGD\xa05,500 - SGD\xa07,000', 'Posted on 2-Nov-22']}, {'If the answer is YES, join us in our mission to open everyone’s eyes to the spaces they already have—and the life that’s yet to be lived in them.': '', 'Lead Specialist - Marketing Analytics': '', 'Build dashboard and reporting for business needs.': '', 'Work with the BI and automation teams to automate the reporting and data pipelines.': '', 'To drive and improve multi-touch attribution model and channel budget allocation.\xa0': '', 'Build models to improve marketing efficiency:\xa0': '', 'Analytics on marketing problems, to produce actionable insights for both campaigns and key marketing initiatives.': '', 'Measurement of O2O & Branding impact.': '', 'Develop the right measurements for marketing teams and initiatives.': '', 'The Perfect profile:': 'Studied mathematics, statistics, computer science, economics or other related majors.Solid skills in Python and SQL.Knowledge in Power BI, Google Data Studio and Excel Pivot table, or basic HTML/JavaScript is a plus.Deep understanding of marketing metrics.Knowledge of marketing channels, such as Google and Facebook, is a plus.You are curious about business problems and translate the business problems into data problems.Growth mindset - willingness to learn and improve. You are unhappy with business as usual, you are constantly looking at new opportunities to improve the efficiency and effectiveness of your work and how things are done..A team player willing to collaborate and support others to solve bigger problems.Experience in translating insights and strategies into creative ideas and solutions..Ability to digest complex data and explain the story behind the data.You care about the details and are willing to deep dive to understand why behind the numbers.Have capabilities in identifying and solving problems innovatively.You will be curious and willing to dive deep into the insights behind data. And use data to guide the decision and initiatives..You are comfortable gathering relevant data, making assumptions and decisions, measuring and validating assumptions..', 'Benefits': '', 'Our first promise - the ride of a lifetime': '', 'The second promise - a good place to work': 'We deeply value the employee’s growth, ensuring a good onboarding experience, building career development, clarity on the company strategy and everyone’s contribution to the bigger picture.Create a supportive, transparent and flexible work environment to enable our people to be highly productive and creative.Design and provide effective technical, managerial, culture and leadership training programs to help our people learn and grow.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Digital Marketing', 'Registration No.': '201327477H', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '11 days', 'Industry': 'Others', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts), Will be briefed during interview'}, {'Company Overview': '\n\nAbout Castlery\n\n\n\n\t\t\t\tFounded in Singapore in 2013, Castlery is a digital-first furniture lifestyle brand delivering to 54 metropolitan areas across the United States, Australia and Singapore. Our mission is to create quality and beautiful furniture pieces and empower every customer to create an inspiring space. A space in which they can thrive and be their best self.\xa0\n\n\t\t\t\tWith our international markets now contributing close to 80% of our group revenues, we are entering a phase of hypergrowth as we seek to firmly establish Castlery as the customers’ furniture lifestyle brand of choice. We are looking for creative and ambitious talents to join our team on this journey.\xa0\n\n\t\t\t\tAs a digital-first tech start-up, we are driven by curiosity and move on insightful data to steer our decisions. We lead with a growth mindset and the belief that the combination of each individual’s passions and skills carry the company upward and forward. At Castlery, it’s where all ideas are listened to, and brainstorming means that job titles get left at the door. This is where self-starters can really make their mark, thriving and evolving as they go.\n\n\t\t\t\tIf making an impact gives you a reason to roll out of bed in the mornings, come join us!\n\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/marketing-analytics-lead-specialist-10036205?jobId=jobstreet-sg-job-10036205§ionRank=578&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
If the answer is YES, join us in our mission to open everyone’s eyes to the spaces they already have—and the life that’s yet to be lived in them.
[{'position': 'Research Asst. - (Bioinformatics Support) [R00005704]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Day-to-day operation of the genome sequencing laboratory’s IT infrastructure.Providing technical support, which includes managing instrument’s raw data and subsequent post-processing, configuring and maintaining sequencing instruments, supporting the wet-lab team, and troubleshooting technical issues.Providing analytical support, which includes benchmarking new methods/protocols or bioinformatics tools, providing technical assessment on new advancements in genomics, and providing data analysis recommendations to other bioinformatics team members.', 'Job Requirements:': 'Bachelor’s degree with minimum 3 years of experience in a bioinformatics role with relevant technical, user support, or project experience.Demonstrated hands-on experience in the management and handling of next-gen sequencing instrument data (Illumina, Oxford Nanopore, and/or PacBio) and subsequent data processing.Strong understanding of genomics and bioinformatic concepts needed to support the analysis of next-gen sequencing data.Demonstrated hands-on experience in bioinformatics data analysis, e.g., sequence alignment, genome assembly, metagenomics analysis.Strong understanding of basic IT infrastructure knowledge, e.g., operating system, networking, data storage.Competence in R, Perl, Python or other scripting language appropriate for bioinformatic analyses.Experience in using high-performance computing is a plus.Experience in wet-lab molecular biology techniques is a plus.Strong project management skills.Strong analytical skills and meticulous attitude.Able to work independently or in a team with minimal supervision.Good communication, writing and presentation skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-asst.-bioinformatics-support-%5Br00005704%5D-10134863?jobId=jobstreet-sg-job-10134863§ionRank=580&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Scientist, Centre for Frontier AI Research, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Responsibilities': 'Build world-class capabilities and excellence in Resilient and Sustainable AI to be recognized by international research communities.Work with AI scientists in IHPC to develop resilient and sustainable AI algorithms and solve challenging real-world problems, and publish high-impact papers to advance science.Execute programmes to ensure timely delivery of project milestones with high-quality outcomes.', 'Job Requirements': 'PhD degree in Computer Science/Electrical & Electronics Engineering/Computer Engineering or equivalent.Research experience in one or more areas of AI, such as Machine Learning, Computer Vision, and Natural Language Processing..Strong track record of research in AI (e.g. 500+ citations from publications in related conferences like ICML, NeurIPS, ICLR, IJCAI, AAAI, KDD, ACL, EMNLP, CVPR, ICCV, or journals such as JMLR, AIJ, MLJ, IJCV, IEEE Transactions and ACM Transactions).Knowledge in one of the AI programming frameworks, e.g., PyTorch, TensorFlow, JAX;.Strong problem solving and analytical skills.Strong communication and presentation skills.Best paper or equivalent awards in the top conferences or Winner of international competitions (preferred).', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-centre-for-frontier-ai-research-ihpc-10127635?jobId=jobstreet-sg-job-10127635§ionRank=582&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Executive (Organisation Planning and Performance)'}, {'company_name': 'National Cancer Centre Singapore Pte Ltd'}, {'small_section': ['Outram', 'Posted on 2-Nov-22']}, {'About Us': '', 'About the Role': '', 'Key Responsibilities': 'Facilitate and provide secretariat support to key management meetings such as minutes taking, preparation of presentation and meeting material.Work closely with various stakeholders to compile, submit and analyse workload reports, specific data and key performance indicators.Participate in department initiatives and improvement projects, where required.', 'Job Requirements': 'Degree in any discipline with at least 2 years of relevant experience.Meticulous with good analytical, problem solving and follow-up skills.Ability to write well and multi-task.Strong interpersonal and communications skills.Committed, team player and people-oriented\xa0.Proficient in Microsoft\xa0Office.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Others, Others', 'Registration No.': '199801562Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Uniform and Non-Uniform, Others', 'Specific Location': 'Outram'}, {'Company Overview': '\n\tThe National Cancer Centre Singapore (NCCS) has evolved over the past 20 years to become one of the leading regional centres for cancer treatment and research. It has pioneered the one-stop multi-disciplinary approach to cancer treatment and is now home to oncologists, surgeons and researchers, dedicated to the care and treatment of a growing number of cancer patients.\n\tToday, NCCS see close to 65 per cent of the public sector oncology cases in Singapore. To deliver\xa0the latest cancer care and treatment, clinicians work closely with researchers who conduct robust cutting-edge clinical and translational research which has received international recognition.\xa0NCCS strives to be a global leading cancer centre, and shares its expertise and knowledge by training the next generation of medical professionals.'}, {'url': 'http://www.jobstreet.com.sg/en/job/executive-organisation-planning-and-performance-10126820?jobId=jobstreet-sg-job-10126820§ionRank=583&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
About Us
[{'position': 'Senior Assistant Manager, - Data Analytics (R00008991)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 27-Oct-22']}, {'Responsibilities': 'Establish an expert understanding of data available in the NTULearn ecosystem.Build and maintain dashboards to enhance the visibility of data trends.Translate data insights into meaningful content relevant to stakeholders.Enhance data capabilities with implementation of tools and platforms.Leverage existing analytics platforms to deliver quality and actionable insights to stakeholders.Support the ingestion of new data sources to enhance the NTULearn ecosystem.', 'Requirements': 'Minimum of 3-5 years of experience in implementing IT projects.Degree in Information Technology or related discipline..Strong working knowledge with data and analytical tools such as Qlik, Snowflake, etc.Good knowledge and programming skills in Java, APIs, Python.Familiarity with learning standards such as Caliper, LTI, OneRoster, etc will be advantageous.Data literate and able to effectively data story-tell.Able to analyse requirements and provide solutions..Keen on continuous learning and to keep abreast of evolving technologies..Able to appropriately apply technology for effective solutions..Good analytical skills and meticulous..Good communication, writing and presentation skills..Able to work independently or in a team with minimal supervision..Demonstration of exceptional work character, values and attitudes that upholds the spirit of OneNTU..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-assistant-manager-data-analytics-r00008991-10046406?jobId=jobstreet-sg-job-10046406§ionRank=584&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist (Up $8500 + 2 mths AWS, Central) Big local firm!'}, {'company_name': 'RecruitFirst Pte. Ltd'}, {'small_section': ['Central', 'SGD\xa06,000 - SGD\xa08,500', 'Posted on 17-Oct-22']}, {'Interested applicants, please send your resume to aliciasl.lim[at]recruitfirst.co or WA 82280387': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '13C6342', 'EA No.': '13C6342', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '13 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGrow your company with RecruitFirst!\n\n\n\tThe business environment today is a highly competitive one, which is ever evolving. Having the right human resource business partner with a strong network of consultants and candidates has become key to the success of industry leading businesses.\n\n\n\tRecruitFirst is the fastest growing human resource consultancy in the Asia Pacific. Our mission is Helping People Find Better Jobs, and Organisations Find Better People. We live by this mission by ensuring that the best candidates and employers are connected via the rigorous recruitment processes and extensive database that we are continuously developing.\n\n\n\tBe the first to recruit with us and start realising the value-add that we are able to provide to your organisation!\n\tEnjoy the expansive array of human resource solutions and network which RecruitFirst has to offer.\n\tTogether with our affiliates, we have operations in 8 countries and 10 cities across Asia Pacific – Singapore, Kuala Lumpur, Bangkok, Hong Kong, Shanghai, Beijing, Guangzhou, Taipei, Tokyo and Seoul. This geographical network gives us the strategic advantage of acquiring the best candidates to satisfy the human resource strategies of multi-national companies. In addition, with this large network of consultants, we are also able to provide for all your human resource needs, including, temporary staffing, contract staffing, executive search, payroll services, global placement or management consultancy.\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-up-%248500-2-mths-aws-central-big-local-firm!-10073796?jobId=jobstreet-sg-job-10073796§ionRank=585&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Interested applicants, please send your resume to aliciasl.lim[at]recruitfirst.co or WA 82280387
[{'position': 'Research Scientist, - (Electrical & Electronic Engineering) (R00002765)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Research Scientist (Electrical and Electronic Engineering/Computer Science)': 'Efficient software and hardware implementation, and benchmarking of post-quantum cryptographic primitives.Studying vulnerabilities and side-channel attacks for these designs.Preparing reports and scientific papers based on the findings.Possess PhD in the Electrical and Electronic Engineering/Computer Science.Experience in optimized software and hardware implementations with background in cryptography.Excellent teamwork and verbal, written communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-electrical-electronic-engineering-r00002765-10072445?jobId=jobstreet-sg-job-10072445§ionRank=586&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Research Scientist (Electrical and Electronic Engineering/Computer Science)
[{'position': 'VP, - Data Engineer'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Technology and Operations\xa0': '', 'Job Responsibilities': 'Responsible for building data model using FSLDM or dimensional model to support EDW(Enterprise Data Warehouse) or Data mart solution.\xa0.Responsible for Data mapping,\xa0modeling and writing functional specification to document.Should have functional knowledge in Retail, wholesale, Finance, Risk subject area.Data profiling experience using tools like Informatica or any other industry standard tools.Should have good knowledge and working experience in Database Teradata(SQL, BTEQ scripting) and Hadoop (Hive, Impala, Kudu). It will be good to have experience in working with No SQL as well as virtualized Database Environment.Good understanding in relational Database like Teradata to support and build industry standard data mart for various line of business in the bank.Should have experience in supporting\xa0BI tools\xa0integrating with Data Mart and Data Lake. Prior expertise building optimal data model for an environment of Teradata, Power BI and Qlik.Should have good knowledge and working experience in scripting using (Shell script, awk programming, quick automation to integrating any third party tools), BMC monitoring tools\xa0.Responsible for development of job schedules\xa0that integrate the upstream and downstream systems (e.g. Control-M).Responsible for unit testing, debugging, and performance testing, with key focus on data accuracy and integrity using automated testing tool\xa0.Accountable for on-time delivery of all documentation, design, build, testing, and deployment according to the work breakdown structures.Work with production support teams as required to support production activities, including production migrations, continuity testing, environment migration activities.Escalate critical technical issues and potential problems as needed to the Project Manager to address any related issues in advance of deadlines.Prior experience in developing banking application using ETL, Hadoop and Teradata is mandatory. Prior working experience in converting on perm data to cloud based solution..Flexibility to stretch and take challenges, Communication & Interpersonal skills, Attitude to learn and execute.', 'Job Requirements': 'Prior experience in developing banking application using ETL, Hadoop and Teradata is mandatory. In depth knowledge of technology stack at global banks is mandatory..Prior working experience in converting on perm data to cloud based solution..Flexibility to stretch and take challenges.Communication & Interpersonal skills.Attitude to learn and execute.', 'Technical Skills': 'Datamodeling - Should have good knowledge and working experience in Dimensional model (STAR schema) and Finance industry working experience. Knowledge of FSLDM is an added advantage.Datamapper - 1.) Should have good functional knowledge in Retail, Wholesale, Finance and Risk subject area 2.) Data profiling experience 3.) Data Mapping experience.Database - Should have good knowledge and working experience in Database Teradata(SQL, BTEQ scripting) and Hadoop (Hive, Impala, Kudu).\xa0.It will be good to have experience in working with No SQL as well as virtualized Database Environment.BI Tools - Should have experience in supporting\xa0BI tools\xa0integrating with Data Mart and Data Lake. Prior expertise building optimal data model for an environment of Teradata, Power BI and Qlik.Automation & Monitoring - Should have good knowledge and working experience in scripting using (Shell script, awk programming, quick automation to integrating any third party tools), BMC monitoring tools.DevOps - Should have good knowledge and implementation experience in using CI:CD tools (Bitbucket, Github), quick automation to integrating with any third party tools for automated deployment.', 'Architecture & Design': 'Teradata Architecture - Good understanding in relational Database like Teradata to support and build industry standard data mart for various line of business in the bank.Data Modeling - Good understanding and knowledge in Data Modeling area using industry standard data model (FSLDM) and STAR data model. Good knowledge of designing models using a data modeling tool such as ERWIN.', 'Testing': 'Automated testing - Good understanding in automated testing using industry standard testing tool.', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-data-engineer-10100721?jobId=jobstreet-sg-job-10100721§ionRank=587&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': '1st VP - Campaign Functional SME, - Retail Data Program'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Central', 'Posted on 4-Nov-22']}, {'First VP, Campaign Functional SME - Retail Data Program, Personal Financial Services': '', 'About the Department': '', 'Personal Financial Services': '', 'Job Responsibilities': 'Collaborate with transformation team to implement a new campaign manment platform.Work closely with cross-functional teams (e.g. business, marketing, campaign operation, IT) to map out process to further streamline campaign process with new platform.Analyze “as-is” and plan the “to-be” business or campaign processes.Participate in the discussions and clarifications with IT and vendor.Playback the solution designed to respective stakehers and campaign operation team to ensure comprehensive and well into campaign operation processes.Review, clarify and sign off Business Requirement Document and Functional Specification Document.Prepare and review UAT test cases, conduct UAT and live verification.Man UAT team to ensure completion of user acceptance testing within the agreed timeline.Implement marketing automation strategies and streamline processes across different business units and regions.Monitor and man issues during implementation.Facilitate / provide "Train the Trainer" on new campaign manment platform.Maintain up to date knowledge base related to platform features and processes.', 'Job Requirements': "Bachelor's , preferably in a quantitative field such as Computer Science or Data analytics.Sound understanding of campaign manment and operations.Good understanding of customer lifecycle framework.Minimum 3-5 of experience in Adobe campaign.Minimum 3-5 of experience in SQL/SAS.Good knowledge in Adobe Analytics.Preferably with experience in banking industry.Good understanding of relational databases.Strong communications skills.Resourceful team player and collaborative.Good problem solver.", 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/1st-vp-campaign-functional-sme-retail-data-program-10084176?jobId=jobstreet-sg-job-10084176§ionRank=588&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
First VP, Campaign Functional SME - Retail Data Program, Personal Financial Services
[{'position': 'Project Officer, - (R00005373) #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Project Officer (Aviation/Statistics/Data Science/Engineering Science in Statistics)': '', 'Key Responsibilities:': 'Produce a regional air traffic statistics report for ASEAN; to produce a coherent traffic simulation from submissions of flight plans from Member States, to report work in an international high-level meeting.Work on subprojects of a larger CONOPS study.Develop a plan.Conduct experiments using simulators.Analyse data.Liaise with the sponsor.Deliver project reports regarding operational feasibility assessment.', 'Job Requirements:': "Bachelor's in Aviation, Statistics, Data Science, Engineering / Science (in Statistics) field or any relevant fields.Experience in air traffic control.Working knowledge of air traffic manment, perspectives of airlines and ANSPs.Strong understanding of statistics and data analysis.Meticulous, independent and a good team player.Proficiency in English."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-r00005373-worknow-10132060?jobId=jobstreet-sg-job-10132060§ionRank=589&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Project Officer (Aviation/Statistics/Data Science/Engineering Science in Statistics)
[{'position': 'Research Scientist in Science of Learning in Education Centre, - [R00004346]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Research Scientist in Science of Learning in Education Centre (SoLEC) [NIE]': '', 'Overview': 'Cognitive, Emotional and Social Development (CESD).Learning Sciences & Innovation (LSI).Schools, Leadership and System Studies (SLSS).Teacher Professionalism and Learning (TPAL).Lifelong Learning, Cognition and Wellbeing (LLCW).', 'Position Summary': '', 'Requirements for Research Scientists': 'PhD in a relevant discipline (i.e. educational neuroscience, data science, neuropsychology, cognitive science, learning sciences, and hard sciences such as chemistry, biology, physics);.Preferably with 2 years of postdoctoral experience or equivalent;.Experience in cutting edge scientific research methodologies and addressing intractable challenges in education;.Demonstrable track record in the following areas:.Research leadership in a research group or center.High quality publications (i.e. quality and impact of academic publisher, citations and ranking of journal publications etc.).Writing of or contribution towards research proposals which are submitted for peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences);.Attainment of funding through a competitive peer-reviewed process;.Excellent interpersonal and communication skills; and.Experience working with Government stakeholders.', 'Responsibilities of Research Scientists': 'Take a leading role in the further development of SoLEC and in seeking and pursuing appropriate external funding in the area of SoLE;.Apply for and conduct quality research and work collaboratively to charge new directions for education, teaching and learning informed by scientific investigation and analyses;.Disseminate the outcomes of the research including in peer-reviewed academic publications of international standing;.Participate fully in the wider SoLEC research and service activities to OER/NIE;.Take responsibility for, manage and conduct administrative and management tasks associated with SoL.', 'Application': 'Please submit your application and include the following documents:.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research interests and achievements;.1 to 3 of your best publications;.Name of 3 referees;.Cover letter addressing how you meet the requirements of this position (optional);.Any other documents that demonstrate your qualifications.Please indicate the position code (OER RS: SoLEC) in your application.', 'Closing date': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-in-science-of-learning-in-education-centre-%5Br00004346%5D-10060430?jobId=jobstreet-sg-job-10060430§ionRank=590&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Research Scientist in Science of Learning in Education Centre (SoLEC) [NIE]
[{'position': 'Databases System Analyst (BI & Data Warehouse Databases)'}, {'company_name': 'GMP Technologies - IT'}, {'small_section': ['Central', 'SGD\xa04,000 - SGD\xa06,000', 'Posted on 2-Nov-22']}, {'Database System Analysts.': '', 'Job Responsibilities:': 'Responsible for database design & review, administration and operation, confidentiality, integrity and availability of data assets;.Handle database capacity planning, performance monitoring and tuning, backup and recovery plan to ensure availability of database services, and in compliant to standard IT Risk and Security Framework.Perform installation, patching, upgrading, troubleshooting for the database and database infrastructure.Support and perform database account management, periodic user account review, audit review, and ensure baselines/policies are adhered for all managed databases;.Generating reports through queries, and provide production database support and willing to work after office hours / weekends;.Design and develop enterprise reports and dashboards with Business Intelligent tool, that utilize the underlying data stores, data warehouse or data marts to support management and business requirement.', 'Job Requirements:': '', 'database setup, configuration and fine tuning ': '', 'MS SQL, DB2 and MySQL': '', 'High-Availability configuration, partitioning design, TDE & Column-Level encryption and implementing security standards to secure critical environments;': '', 'logical and physical data modeling concepts': '', 'Data Warehouse and Business Intelligence solutions:': '', 'ability to write complex SQL queries': '', 'T-SQL, stored procedures and database design': 'Good analytical and problem-solving skills.Good communication and presentation skills.Certification in Database Administration in MS SQL.', 'Certification in Database Administration in MS SQL': '', 'Additional Job Infomation:': 'Singaporeans and relevant preferred.', 'Singaporeans and relevant preferred': 'Perm position.', 'How to Apply?': '', '\xa0updated CV in MS Words': '', 'christopher.wong[at]gmprecruit.com': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '09C3051', 'EA No.': '11C3793', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\nGMP Technologies is a division of The GMP Group.\n\n\t\tFounded in 1991, The GMP Group is one of Asia’s leading staffing and human resource consultancies. Since its inception, the group has progressed to become a regional human capital solutions provider across all industries. Today, GMP is headquartered in Singapore with a branch office in Malaysia. The group’s extensive network and comprehensive services affirm GMP’s role as one of the most dynamic staffing professionals in the region.\n\nRECRUITMENT I TECHNOLOGIES I BANKING I INTERNATIONAL I CONSULTANCY I\n\nVoted on of Top 10 recruitment agencies by HR practitioners since 2006 (Human Resources magazine).\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/databases-system-analyst-bi-data-warehouse-databases-10126278?jobId=jobstreet-sg-job-10126278§ionRank=591&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Database System Analysts.
[{'position': 'Research Fellow, (Computer Science) - (R00008247)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Conduct research and development in Artificial Intelligence, Machine Learning and Deep Learning as applied to Computer Vision and Anomaly Detection.Generate Intellectual property in the form of Technical disclosures and patents.Publish research papers.Provide research leadership as well as mentorship to the project team.Manage research project.', 'Job Requirements:': 'PhD in Computer Science or related disciplines.At least one year of experience in machine learning and deep learning or related areas.Good knowledge of Pytorch and Tensorflow.Good spoken and written English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-r00008247-10076005?jobId=jobstreet-sg-job-10076005§ionRank=592&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'FVP/VP, Marketing Analytics Development Lead (Adobe Campaign) #WorkNow'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Job Responsibilities': '', 'lead the solution architecture aspects of Data Analytics and Marketing Automation domain': '', 'Responsibilities include:': 'Work closely with business partners to\xa0define technology solutions for business requirements/capability roadmap.Collaborate with technology peers and leaders to\xa0define the future architecture and application roadmap.Create/maintain\xa0principles, practices, and standards to get there.\xa0Influence\xa0leadership and staff to constantly move towards it.\xa0Monitor\xa0the adoption and efficacy of architectural standards and practices.Collaborate across the technology organization\xa0in ensuring execution plans are aligned with architecture and application roadmap.Drive change across the Data engineering team\xa0via personal credibility, experience. Need to demonstrate empathy, continually balancing between autocracy vs. autonomy vs. anarchy around technology choices and change.Create awareness and buy-in amongst various stakeholders about\xa0architecture, design pattern, framework and new way of working. Needs to be able to act as a mentor/executor when required.Participate in and lead\xa0cross-bank technology initiatives.Functional knowledge of Retail bank, Wholesale, Global Markets, Finance, Risk and Compliance oriented products & business processes\xa0.Familiarity with Marketing Automation and Analytics solutions and technologies\xa0like Unica Campaign, SAS Marketing Automation, Salesforce Marketing Cloud.', 'Job Requirements': '', 'Functional skillsets': 'Strong in defining end-to-end solution in real time and batch campaign management (across data sourcing, plan, design, execute, fulfil and measure).Data source integration and event sourcing.Targeting and segmentation.Campaign and offer eligibility and prioritization.Channel integration and delivery.Closed loop analysis and fulfilment initiation.Request and approval process for the new campaigns/offers.Good business domain knowledge in the Financial Services industry.Complementing marketing automation platform with AI/ML based model integration\xa0.', 'Technical skillsets': 'Adobe Campaign. This should be based on hybrid solutions comprising both on-premise and cloud components.Adobe Analytics (good to have).Unica Campaign, SAS Marketing Automation, Salesforce Marketing Cloud (good to have).Associated technologies for integration e.g. SMPP, Adobe SDK/API.Associated technologies for customization e.g. Java, Javascript, SQL, XML, data modelling.Data mart, ETL and reporting technologies (good to have).', 'Qualifications': 'Deep experience in marketing automation technologies and processes\xa0e.g. Adobe Campaign (preferred), Unica Campaign, SAS Marketing Automation, Salesforce Marketing Cloud (good to have).Good experience in\xa0defining the associated operating models\xa0in support of the Marketing automation and analytics solution.Good experience with\xa0large scale technology modernizations and platform migrations\xa0of data warehouse, data marts, reporting tools etc.Expertise in large databases involving e.g. Oracle, Teradata etc (good to have).Expertise in Data Integration tools/platform e.g. Informatica, IBM Data Stage etc (good to have).Expertise in Visualization tools/platform e.g. Qlik, Power BI etc (good to have).Expertise in Big Data Engineering tools/platform e.g. Cloudera, Horton Works, APACHE etc. Deep expertise in HDFS, HIVE, IMPALA, Kafka, SPARK, YARN is a plus (good to have).10+ years of experience of services, product development, infrastructure and security experience as an architect or similar hands-on technology leadership role.Deep knowledge of modern technology stacks, software development tools and practices, application and system performance monitoring, and the patterns and practices required to build highly available and scalable services.Detailed understanding of infrastructure, integration, virtualization, storage, networks, and security technologies.Detailed understanding of Industry data model, reporting data model and other standard data model required to support build-out of static and dynamic analytical capabilities\xa0.Has operated in a mixed portfolio of cloud-native and legacy technologies.Passion to leverage Data/Analytics and Machine learning to advance business projects.Recent experience with technology organization and culture transformations, particularly integrating effective Agile planning and development practices across large organizations.Experience designing, building, and operating high volume, client facing SaaS products.Solid financial and operational acumen. You must understand the cost of trade-offs of various technology decisions and be able to model short and long-term implications.', 'Experience or certification in the below technologies will be an added advantage:': 'Demonstrates experience in translating high level business capability requirements into executable technical solutions in the larger context of Domain Architecture focused on DATA.Broad experience of projects involving one/more of relevant Data Analytics technology areas viz BIG Data engineering, Data Warehousing, Data Integration, Data Quality, Data Modelling, Visualization, Analytics, Decision Systems, Machine Learning based model development.Prior experience in defining enterprise data roadmaps for up-scaling and/or modernization of Data architecture.Prior Experience in leading experimentation and selection of technologies by leveraging his/her expertise on technology drivers, trends, analysis of cost and complexity with organizational and operational capabilities.', 'Education': '', 'What will help you succeed in this role': 'Adopt an uncompromising attitude when it comes to quality and help raise bar of products and team members\xa0.Be a team player who communicates effectively and professionally with both internal and external customers. Evidence of your ability to influence an organization.Make good technical decisions that provide solutions to business challenges.Embrace tackling and resolving complex technical design issues.Possess strong problem solving and decision-making skills while exercising good judgment.Ability to understand the big picture – can step back and understand the context of problems before applying analytical skills to address the issues.Proven ability to communicate and develop long lasting relationships with all levels of Management in a clear, concise manner.'}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/fvp-vp-marketing-analytics-development-lead-adobe-campaign-worknow-10083930?jobId=jobstreet-sg-job-10083930§ionRank=594&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Senior Research Scientist in Science of Learning [R00007103]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Overview': 'Cognitive, Emotional and Social Learning (CESD).\xa0Lifelong Learning, Cognition and Wellbeing (LLCW).Learning Sciences & Innovation (LS&I).Schools, Leadership and System Studies (SLSS).Teacher Professionalism and Learning (TPAL).', 'Position Summary': '', 'Requirements': 'PhD in a relevant discipline (i.e. educational neuroscience, data science, neuropsychology, cognitive science, learning sciences, and hard sciences such as chemistry, biology, physics).Minimum 5 years postdoctoral experience.Experience in cutting edge scientificresearchmethodologies and addressing intractable challenges in education.Demonstrable track record in the following areas:.Research leadership in a research centre or in a large competitive, peer-reviewed research grant.High quality publications (i.e. quality and impact of academic publisher, citations and ranking of journal publications etc.).Writing of or contribution towards research proposals which are submitted for peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences).Supervision of undergraduate and/or graduate students.Attainment of funding through a competitive peer-reviewed process.Excellent interpersonal and communication skills; and.Experience engaging with diverse stakeholders including Government stakeholders, Community Organizations and the Public.', 'Responsibilities': 'Take a leading role in the further development of SoL research programmes and in seeking and pursuing appropriate external funding in the area of SoL.Apply for and conduct quality research and work collaboratively to charge new directions for education, teaching and learning informed by scientific investigation and analyses.Disseminate the outcomes of the research including in peer-reviewed academic publications of international standing.Participate fully in the wider SoL research and service activities to OER/NIE.Take responsibility for, manage and conduct administrative and management tasks associated with SoL..Mentor junior faculty and research staff.Supervise students by research and/or dissertation (i.e. supervise MA / MSc students and / or co-supervise EdD.students)..', 'Application': 'Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements.Research statement indicating your research interests and achievements.1 to 3 of your best publications.Name of 3 referees.Cover letter addressing how you meet the requirements of this position (optional).Any other documents that demonstrate your qualifications.Please indicate the position code (OER RS/SRS: SoL) in your application..', 'Closing date': '', 'Review of applicants will continue until suitable candidates are found.': '', 'Other Information': '', 'Please note that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology, Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-in-science-of-learning-%5Br00007103%5D-10072413?jobId=jobstreet-sg-job-10072413§ionRank=596&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Overview
[{'position': 'Business and Quality Assurance Analyst - (2200014O)'}, {'company_name': 'The Great Eastern Life Assurance Co Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'The Job': 'Manage and align internally on\xa0Business and Technical requirements.Maintain and ensure Data Quality of the Data Product (SGFinDex).Collaborate with Data Management & Governance team to align on Data Quality Matrix, Data Definition and Data Lineage.Coordinate with the relevant stakeholders to ensure the different level of internal testing (Unit/Functional/Regression/End-to-End/UAT) are performed.\xa0.Collaborate with relevant stakeholders to prepare test data and perform User Acceptance Test.Defect Management - coordinate internally and externally for defect fixes.Maintain and build documents and artifacts.Participate in testing WS in case of addition of new field / participants.Data expert and POC for new use cases implementation project.Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..Degree in Computer Engineering, Computer Science, Mathematics, Software Engineering, equivalent fields or proven experience in data engineering.Stakeholder Management - Conversant in Business terms and ability to resolve and explain data product issues with Business users and other concerned stakeholders.A minimum 3 years of experience in Data Engineering and Data Analytics field. A data practitioner with proven experience in quality assurance and formulate testing strategy/approach.Excellent interpersonal and communication skills, with ability to manage different levels of stakeholders across the organization and navigate through conflicts and differences competently and with ease;.Detail oriented and analytical, with good problem solving, organizational skills, and program management knowledge and experience;.Process oriented, and able to translate complex problems into logical and repeatable processes and diligently document the proposed technical solution.High level of integrity, takes accountability of work and good attitude over teamwork..Takes initiative to improve current state of things and adaptable to embrace new changes..', 'About Great Eastern': '', 'To all recruitment agencies:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '190800011G', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Insurance'}, {'Company Overview': '\n\tFounded in 1908, Great Eastern is a market leader and a well-established trusted brand in Singapore and Malaysia. With S$82.5 billion in assets and over 4 million policyholders, the Group also operates in Indonesia and Brunei and has a presence in China as well as a representative office in Myanmar.\n\n\tThe Great Eastern Life Assurance Company Limited and Great Eastern General Limited have been assigned the financial strength and counterparty credit ratings of "AA-" by Standard and Poor\'s since 2010, one of the highest among Asian life insurance companies.\n\n\tWe are a LIFE company and our purpose is to empower generations to live healthier and better so that they can live life to the fullest. Be it celebrating life’s simple moments or commemorating life’s major milestones, every day, in many ways, we inspire those around us to live great and celebrate life.\n\n\tPlease note that our career opportunities are only posted on our Career Website (http://grp.gelife.co/findacareer) and on our authorised job platforms which are specifically LinkedIn, JobStreet and eFinancialCareers. We do not initiate any unsolicited calls and all official emails from Great Eastern will be sent from email addresses ending with “@greateasternlife.com”. Should you receive any communications outside from these channels listed, please do not provide any personal information and do reach out to us at [email\xa0protected] or at 6248 2990 for us to assist you and confirm the legitimacy of the content.'}, {'url': 'http://www.jobstreet.com.sg/en/job/business-and-quality-assurance-analyst-2200014o-10103443?jobId=jobstreet-sg-job-10103443§ionRank=597&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
The Job
[{'position': 'Asst Manager, Digital Business Insights'}, {'company_name': 'Mediacorp Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Description': '', 'Responsibilities': 'Acquire data\xa0from\xa0several data sources\xa0and\xa0maintain databases.Develop\xa0and\xa0implement data analysis, data collection\xa0and\xa0other strategies that optimise statistical efficiency\xa0and\xa0quality.Identify, analyse,\xa0and\xa0interpret trends\xa0or\xa0patterns in complex data sets.Use graphs, infographics\xa0and\xa0other methods to visualise data.Create presentations\xa0and\xa0reports\xa0based\xa0on findings.Work\xa0closely with the business stakeholders across several business unit, commercial teams\xa0and\xa0finance to understand the data and generate useful information that helps management make decisions..Immerse in Digital Ad Operation (including programmatic) to keep up with the very dynamic digital ad ecosystem..', 'Requirements': "Bachelor's\xa0degree\xa0or\xa0equivalent in the relevant Information Management/ Computer Science/Statistic.Minimum 2\xa0year\xa0of relevant experience.General understanding of data modelling techniques and able to handle large datasets.Proficient in using Excel, PowerPivot, PowerBI\xa0and\xa0Analysis Services..Knowledge of programming\xa0languages\xa0like Python will be value added.Problem-solving skills.Accuracy\xa0and\xa0attention to detail.Experience\xa0and\xa0knowledge on digital advertising is a plus (e.g. ad server, programmatic, web analytics).Good\xa0presentation skill is a plus.", 'Thank you for your interest\xa0and\xa0application to this role. Please note that only short-listed\xa0candidates\xa0will be contacted.': []}, {'Career Level': 'Manager', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '199201312E', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Entertainment / Media', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\nMediacorp is Singapore’s leading media company with the most complete range of platforms, spanning television, radio, newspapers, magazines, movies, digital and out-of-home media.\n\t\t\xa0\n\n\t\tIt pioneered the development of Singapore’s broadcasting industry, with the broadcast of Radio in 1936 and Television in 1963.\n\n\t\tToday, Mediacorp has over 50 products and brands in four languages (English, Mandarin, Malay and Tamil), reaching out to all adults in Singapore every week.\n\n\t\tInitiatives in the new digital space include Internet TV-on-demand, High Definition TV broadcast and Over-the-Top (OTT) interactive services.\n\t\n\tBeyond Singapore, Mediacorp is an active regional player through co-productions in TV dramas and movies, magazines publishing, as well as Channel NewsAsia International, one of the first Asian-owned English news channels.\n\t\n\t\n\t\tOur financial and strategic relationship in the region includes International Media Corporation in Vietnam, which was set up to develop and produce television entertainment and economic news content. Mediacorp also has a stake in Singapore-based retail firm Reebonz, one of the region's fastest growing luxury online retailers and a majority stake in Cubinet Interactive, a Malaysian digital games publisher.\n\t\n\tWinner of numerous international awards and accolades including Asian Television Awards' Terrestrial Broadcaster of the Year, Mediacorp’s mission is to engage, entertain and enrich audiences by harnessing the power of creativity.\n\t\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/asst-manager-digital-business-insights-10130771?jobId=jobstreet-sg-job-10130771§ionRank=598&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Project Officer, - [Machine Learning] - [R00008199] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Key Responsibilities:': 'Research on federated learning for industry 4.0.Implement deep learning algorithms.Collaborate with other team members for more efficient outcome delivery.Perform administrative works assigned by the PI like documentation, etc.', 'Job Requirements:': 'Bachelor or above in computer science/engineering or electrical/electronic engineering..Good programming ability with python.Experience with deep learning algorithms and frameworks, like TensorFlow and Pytorch.Ability to read and write research papers and technical reports.Fluent in English (written and spoken).'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-%5Bmachine-learning%5D-%5Br00008199%5D-jobsthatmatter-10130605?jobId=jobstreet-sg-job-10130605§ionRank=600&token=0~b57db0c9-488d-4c24-b144-e0d460c816d1&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow, - (Signal Processing and Machine Learning) (R00003631)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Responsibilities': 'Develop signal processing and machine learning algorithms and methods.Perform software/hardware implementation and empirical studies.Prepare reports and presentations.Conduct project presentations and seminars.Help to supervise graduate students and contribute to proposal writing.Assist the PI in various research admin tasks.', 'Job Requirements': 'Ph.D. in Electrical Engineering, Computer Science, Statistics or other related fields.Solid Mathematical skills.Background in graph signal processing, probability theory and statistical signal processing.Experience in implementing algorithms for machine learning and data analytics.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-signal-processing-and-machine-learning-r00003631-10127588?jobId=jobstreet-sg-job-10127588§ionRank=602&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow (Computational Social Science) - (R00008453)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Responsibilities': 'Digital data collection (i.e., scraping).Conduct computational modeling to analyze large-scale datasets (including social media data).Project planning, research design and collection.Management of large-scale datasets.Prepare manuscripts for journal publication.', 'Job Requirements': 'Ph.D. in empirical social science (e.g., Psychology, Economics) or data science (e.g., Computer Science, Machine Learning) with research interests in computational social science.Experience with programming, text mining, social computing, machine learning, text analysis and computational modeling.Prior experience in working with social media data will be an advantage but is not required.Strong statistical skills.Experience in preparing academic reports and presentations.Strong interpersonal, written and verbal communication skills.Excellent organizational skills and able to work within given deadlines.Self-directed learner who effectively picks up relevant skills as needed.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computational-social-science-r00008453-10128366?jobId=jobstreet-sg-job-10128366§ionRank=603&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Engineer, - (Machine Learning/Computer Vision), - [R00005729]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Conduct research on deep learning and visual scene understanding.Develop novel algorithms for visual recognition and scene understanding.Develop computer vision systems.Write technical reports and research papers.', 'Job Requirements:': 'Master’s degree in Computer Science, Computer Engineering or related subjects.Research experience in visual recognition, scene understanding and deep learning.Excellent computer programing skills for machine learning and computer vision systems.Familiar with deep learning frameworks such as PyTorch.Strong responsibility for research/work.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-computer-vision-%5Br00005729%5D-10076113?jobId=jobstreet-sg-job-10076113§ionRank=604&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Mgr., Department of Surgery (Biomedical Informatics)/ (2-year contract) #WorkNow'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Description': '', 'Duties & Responsibilities': 'Lead and project manage research grant activities, KPIs and spending for all research projects in accordance with timeline stipulated.Ensure allocated budget is utilized and within spend with timeline adhered to.Lead and project manage the research grant reports, approval processes, payment and KPIs and oversee the administration and accounting of research funds.Ensure timeline and approvals for research reporting is adhered to for research projects.Support department in all financial and budgetary requirements.Manage and prepare research reports for KPI outcomes and deliverables.Prepare and draft research reports for accounting and reporting.Ensure timeline and approvals for research reporting is adhered to for research projects.Lead and administer hiring of research staff and visiting fellows for research KPIs.Ensure relevant visiting profs and staff are hired and engaged for the right scope of research work\xa0.Oversee staff in research, fund management, accounting, procurement, and financial processes.Streamline research and payment processes for the department with relevant departments.Support and guide department in research application and payment or utilization of grant amount.', 'Qualifications': "Bachelor's Degree Holder.Possess at least 8 years of relevant experience in research grant administration, finance operations, preferably in a shared services healthcare environment.Possess strong analytical and problem-solving skills.Outstanding written and oral communication skills, able to converse effectively cross-discipline and cross-functions."}, {'Career Level': 'Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '8 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/mgr.-department-of-surgery-biomedical-informatics-2-year-contract-worknow-10106663?jobId=jobstreet-sg-job-10106663§ionRank=606&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Global Container Procurement, Allocation Control / Data Analyst (ID: 561907)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd'}, {'small_section': ['Jurong East', 'SGD\xa03,500 - SGD\xa04,900', 'Posted on 30-Oct-22']}, {'Job Description:': 'Monitor, coordinate, and manage all activities related to Allocation (agreed TEU quantity with Carrier) Management for the trade lane of responsibility related Group Companies as well as Global Carrier Policy..Monitor carriers as well as origin / destination booking performance against agreed allocation and take corrective measurements..Monitor the transship status to ensure proper connection to/from Asia-EMEA and Americas..Secure adherence to corporate allocation management process..Create visibility on available and used allocation as well as regular cargo flows..Ensure adherence to carrier ranking/ customer priority rules to ensure regular and strategic business is protected thru periods of capacity shortage..Responsible for the correct routing and adherence with the given routing instructions..Take corrective actions in case of non-adherence to given routing instructions..Participate actively in carrier allocation and space negotiation in line with the company’s policy..Maintain and build strong relationships with our partner carriers on day-to day activities.\xa0.To create review + refine carrier reports..Analyze Company Group shipping data for determination for strategy to supplier(s)..', 'Requirement:': "Bachelor's Degree/ Diploma in similar study..Ability to review complex information, perform comparative analysis, and make recommendations based on findings..Strong problem-solving and Risk analysis skillset analyzing Company internal system data as well as the forecast system background data..Excellent analytical skillset and communication skills..Preferably with shipping / logistics job experience..Prefer either Container Inventory control, Operation / Trade space management job experience.."}, {'Career Level': 'Junior Executive', 'Qualification': "Higher Secondary/Pre-U/'A' Level, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200701282M', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOL, formerly known as Intelligence, is one of the largest and fastest growing HR service providers in the Asia Pacific regions. With presence in 10 key APAC markets, PERSOL leverages on its strong database of Japanese and Japanese-speaking candidates to provide tailored workforce solutions primarily to Japanese companies in this region. The solutions include permanent and contract staffing, recruitment process outsourcing and payroll outsourcing.\n\n\t\tThe PERSOL brand in Asia Pacific operates under the PERSOLKELLY company, a joint venture between PERSOL Holdings and Kelly Services, forming one of the largest recruitment companies in APAC with its headquarters in Singapore.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolsg.com for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/global-container-procurement-allocation-control-data-analyst-id%3A-561907-10117096?jobId=jobstreet-sg-job-10117096§ionRank=607&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Fellow, - (Artificial Intelligence) - R00008257 #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Responsibilities:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Lead a team of junior researchers, e.g., PhD students and Research Assistant, to help with the vision and data analytics tasks.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly..Prepare and publish research papers on top-tier conferences and journals.Help prepare the proposal and progress report.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': '', 'Coding Skills:': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-r00008257-jobsthatmatter-10076136?jobId=jobstreet-sg-job-10076136§ionRank=609&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Chief Scientific Officer (EDDC)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities:': 'Lead the Therapeutics Discovery Unit of a multi-modality, commercial-driven national drug discovery and development institute dedicated to the development of innovative and novel drug entities;.Manage scientific teams across chemistry, screening, in vitro and in vivo pharmacology, and translational science in order to develop and execute strategies to support drug discovery programs;.Liaise with other members of the executive team to ensure EDDC business objectives are met;.Provide strategic leadership towards the portfolio;.Ensure that project teams are aligned with the overall EDDC goals;.Serve as the scientific representative of the organisation, representing it to internal and external stakeholders..Engage with potential collaborators from both industry and academia to evaluate and facilitate the entry of projects into EDDC’s portfolio..', 'Requirements:': 'Ph.D in Biology/Chemistry or related discipline, or MD/PhD;.The Chief Scientific Officer will most likely have had experience leading a mid/large size biology or drug discovery group in a biotechnology or pharmaceutical company;.Experience in strategic planning, project leadership, laboratory and budget management;.Demonstrated contributions to R&D efforts that have led to the development of clinical candidates;.Expertise in biology, biochemistry, and pharmacology and broad understanding of the physiological principles of health and disease;.Solid grasp of chemistry, mechanisms of drug metabolism and toxicology, drug delivery methods, pharmacokinetics and pharmacodynamic sciences that support in vivo evaluation of drug candidates;.Proven ability to champion and advance innovative concepts;.Experience developing people and mentoring project leaders.Effective communication skills, both verbal and written;.Ability to manage complexity and ambiguity in a highly matrixed work environment..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/chief-scientific-officer-eddc-10123469?jobId=jobstreet-sg-job-10123469§ionRank=610&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Assistant Professor, (School of Computer Science and Engineering) (R00010688)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Responsibilities': 'Information Systems and Analytics.Computer Security.Systems (including Computer Architecture, High-Performance Computing, and Real-time Systems).Algorithms and Theory.Programming Languages and Software Engineering.Machine Learning.Graphics and Interactive Computing (including Human-Computer Interaction and Visualization).Conduct high-quality innovative research in terms of publishing top-tier papers, securing competitive research grants, supervising research personnel..Conduct competent undergraduate and graduate level teaching, including academic supervision of undergraduate and graduate students and projects..Undertake responsibly assigned administrative services in the school and university..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-professor-school-of-computer-science-and-engineering-r00010688-10135924?jobId=jobstreet-sg-job-10135924§ionRank=611&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Analyst | Up to $8,000'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Singapore', 'SGD\xa07,000 - SGD\xa08,000', 'Posted on 25-Oct-22']}, {'Job responsibilities': "Extract and clean the data from various data sources to generate daily, weekly and monthly reports.Set up the automation of reports from data extracted and stored by AWS.Provide data analysis and insights to identify and recommend areas of improvement.Fulfil ad-hoc data request from client and management.Have some experience in ETL processes and mapping different sources of data with key identifiers.Writing SQL queries to retrieve information quickly.Management and Identification of key data points, trends that can be used in tandem with operations to increase KPI's.", 'Knowledge/Skills Required': 'Experience in contact centre/service industry including data/trend prediction & analysis, self-help migration.Experience in building reports using Excel, Tableau, SQL, Power BI, Python, or other business intelligence and data analytics tools Strong communication and presentation skills.Proactive and able to work independently with minimum supervision.Excellent time management with strong critical thinking and ability to handle pressure.', 'click the "APPLY NOW" button': []}, {'Career Level': 'Non-Executive', 'Qualification': 'Not Specified', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-%7C-up-to-%248-000-10099131?jobId=jobstreet-sg-job-10099131§ionRank=615&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Job responsibilities
[{'position': 'Senior Data Analyst (Power BI)'}, {'company_name': 'Comfort Transportation Pte Ltd & CityCab Pte Ltd'}, {'small_section': ['North-East', 'Posted on 28-Oct-22']}, {'These will keep you busy while enjoying your time with us:': 'Manage data on AWS/Azure platform.Write efficient SQL query to extract and aggregate data from cloud data lake / data warehouse.Write Python script to extract open source data for analysis.Perform Data analytics and Data visualization on large data set using Tableau/Power BI.Create dashboard for monitoring and alert user of anomalous event.', 'If the following describe you, then you could be the one!': 'Degree in Data Science, Computer Science/ Engineering or equivalent.Minimum 5 years of relevant work experience.Experience in managing data in AWS/Azure platform.Experience in writing SQL query to aggregate large data set.Good in Data Visualization using Tableau/Power BI.Experience in writing programming languages such as Python so as to create micro-service and handle large data.Good knowledge in statistics.Good problem-solving and data investigation skills.Able to handle a fast-paced environment.Team player with good interpersonal and communication skills.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199303821R', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '28 days', 'Industry': 'Transportation / Logistics', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "\n\n\t\tFollowing the merger of two successful listed transport companies – Comfort Group and Delgro Corporation in 2003, Comfort Transportation and CityCab became members of the ComfortDelGro Group.\n\n\t\tComfortDelGro Taxi, as it's known today, is a leading taxi company in Singapore. With about a 10,000-strong environmentally friendly taxi fleet, we operate point-to-point taxi services 24/7.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-analyst-power-bi-10061812?jobId=jobstreet-sg-job-10061812§ionRank=616&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
These will keep you busy while enjoying your time with us:
[{'position': 'Senior Consultant (BI & Data Management)'}, {'company_name': 'NTT Data Business Solutions Singapore Pte Ltd'}, {'small_section': ['Bishan', 'Posted on 26-Oct-22']}, {'Responsibilities': '', 'Requirements': 'Diploma/Degree in Computer Science, Information Technology or equivalent.Have 3 - 7 years’ experience in Business Intelligence/Data Warehouse/Analytics Projects involving in requirements gathering designing, development, deployment, conducting knowledge transfer and post deployment support.Have 3 - 7 years’ experience with ETL, Business Intelligence and Visualization Tools, such as:.Have experience with Data Modelling using dimensional modelling techniques (e.g. star and snow flake schemas) and designing the metadata layer for self-service analytics.Have experience actively leading and managing a team of 3 to 5 members.Independent with ability to work effectively in a team and who takes initiative and engages their colleagues.Excellent communication and interpersonal skills with ability to communicate with clarity and confidence with colleagues and customers.Likes technology, taking initiative to learn more and share knowledge with juniors and within the team.Proven abilities to take initiative, innovative and the ability to develop creative solutions for challenging client needs.Knowledge in any of following tools or technologies are not mandatory but will be an added advantage:.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200311437R', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '14 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts), Mobile Allowance'}, {'Company Overview': 'NTT DATA Business Solutions is a business unit of\xa0NTT DATA Corporation\xa0— a top 10 global IT services company.\xa0NTT DATA was established in 1967 as Data Communication Headquarter of Nippon Telegraph and Telephone Public Corporation.Today with business operations in more than 50 countries, NTT DATA Business Solutions offers a powerful, unified combination of businesses delivering full-service solutions globally, providing premier professional services from consulting, system development to business IT outsourcing. At NTT DATA Business Solutions, we design, implement, manage and continuously enhance solutions to make them work for companies – and for their people.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-consultant-bi-data-management-10052223?jobId=jobstreet-sg-job-10052223§ionRank=617&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow - (Bioarchaeology) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Assist or lead in the coordination between researchers and student assistants in the research on bioarchaeological studies on East/Southeast Asian materials.Actively involved in the compilations and in-depth analysis on relevant historical and archaeology materials.Provide in-depth research work that focuses on the bioarchaeological studies on East/Southeast Asian materials.Provide expertise and advices with relevant from bioarchaeological and forensic science knowledge into the current on-going project when meeting with the research team.Able to engage in the participating of highly academic recognised journal publications annually.Updates of Research Progress and Research Records expected every six months.Monthly updates on current research status with the Principal Investigator.Involve in strong participation of academic discussions and conferences locally and internationally.', 'Job Requirements': 'Ph.D from biological anthropology and bioarcheology field.Experiences or knowledge in forensic sciences studies preferred.Prior experiences on working on practical archeology outfield data collection.Previous experiences in working with professional archeological research groups have an advantage.We regret to inform that only shortlisted candidates will be notified..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-bioarchaeology-urgent-10135617?jobId=jobstreet-sg-job-10135617§ionRank=619&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Engineer, Quantitative Strategy #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'How do we work:\xa0': '', '\u202fOutcome Driven': '', 'Start Small and Move Fast': '', 'Ownership': '', 'Continuous Learning': '', 'We are in this Together': '', 'Job Overview:': '', 'What you will be working on:': "Translate data requirements from business users and data scientists into technical data modelling specifications..Interview business users and system owners to elicit information relating to their data infrastructure, data assets, data policies, and use cases..Collaborate with partner agency’s IT teams on the following tasks:.Propose and build ingestion pipelines to collect, clean, harmonise, merge, and consolidate data sources, whether on-prem or in cloud;.Integrate and collate data sources with data systems;.Day-to-day monitoring of databases and ETL systems, e.g., database capacity planning and maintenance, monitoring, and performance tuning; diagnose issues and deploy measures to prevent recurrence; ensure maximum database uptime;.Construct, test, and update useful and reusable data models, with reference to consolidated business insights obtained from users, to serve the data science team and partner agency's needs;.Propose and implement appropriate cloud data infrastructure in support of the end-to-end analytics deployment lifecycle, taking into account networking between cloud data infrastructure and any on-prem data centres;.Design and build API gateways to expose data to systems via secure means..Research and develop new technologies and approaches for building highly available data persistence systems..Advice and support your team on data engineering matters..Own and participate in AWS data cloud migration projects (if applicable)..", 'What we are looking for:': 'Experience in automation development, batch, shell, python..Familiarity with regular expressions and scripting languages such as bash, korn, awk..Familiarity with building and using CI/CD pipelines for platform development..Familiarity with DevOps tools such as Docker, Git, Terraform..Familiarity with LDAP, OAuth, API gateways..', 'Preferred requirements:': "Knowledge of IT infrastructure.Experience with AWS RDS / Spark / other AWS Data Services.Experience with installation, management, upgrades, backup and restore MSSQL DB.Working knowledge of SSIS or comparable ETL tools.Familiarity with government systems and government's policies relating to data governance, data management, data infrastructure, and data security."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-quantitative-strategy-jobsthatmatter-10052650?jobId=jobstreet-sg-job-10052650§ionRank=620&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
How do we work:
[{'position': 'Research Fellow, (Machine Learning and Human Machine Interaction) - [R00008643]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on im/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-machine-interaction-%5Br00008643%5D-10071650?jobId=jobstreet-sg-job-10071650§ionRank=621&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow, - (Computer Science/Eng./Mathematics) - [R00008659]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Conduct research on 3D part design and analysis using deep learning techniques in HP-NTU Digital Manufacturing Corp Lab.Explore and develop new computational models and algorithms for 3D modeling, shape analysis, simulation and 3D printing.Implement and develop software prototypes to demonstrate the proposed algorithms and models.Write technical reports, research papers, technological disclosures, etc.', 'Job Requirements:': 'PhD in Computer Science, Engineering, Mathematics or related disciplines..Familiar with computer graphics, computer vision and deep learning.Having good research experience in 3D reconstruction, geometric modeling and 3D shape analysis.Proficiency in programming with C/C++, QT, Python.Having experience of publishing research papers in reputed journals or conferences.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-eng.-mathematics-%5Br00008659%5D-10075957?jobId=jobstreet-sg-job-10075957§ionRank=623&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior/ Research Engineer'}, {'company_name': 'Singapore-MIT Alliance for Research and Technology Centre'}, {'small_section': ['Clementi', 'SGD\xa03,800 - SGD\xa06,000', 'Posted on 3-Nov-22']}, {'Project Overview': '', 'Job Description': 'Implement data analytical projects involving image processing for immune cells or stem cells..Manage the image and spectroscopy database with proper records for logging and metadata of experiments..Develop machine learning models in correlation to established CQAs such as cell viability, potency and metabolism.Deployment of machine learning models for software user-interface, automation and bioreactor PAT integration..Assist in routine maintenance of laboratory equipments, consumables and SOPs where needed..', 'Job Requirements': 'Bachelors degree in Computer Science, Applied Mathematics, Electrical Engineering, Physics or other related disciplines are encouraged to apply..Good data analytical skills and python coding is considered a plus. Prior background in coding language is required..Proficient in python coding and data preparation with basic experience in deploying machine learning models (e,g, DNN, CNN, SVM)..Applicants that have just completed an undergraduate degree and have an interest in pursuing postgraduate and/or doctoral studies later are also strongly encouraged to apply..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200711996H', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Science & Technology', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'SMART is a major research enterprise established by the Massachusetts Institute of Technology (MIT) in partnership with the National Research Foundation of Singapore (NRF). SMART serves as an intellectual hub for international research collaborations, not only between MIT and Singapore, but also involving researchers from the region and beyond. At SMART, we identify and carry out research on critical problems of societal importance. SMART is a magnet for attracting and anchoring global research talent, while simultaneously instilling and promoting a culture of translational research and entrepreneurship in Singapore. Five interdisciplinary research groups (IRGs) are currently in operation: Antimicrobial Resistance (AMR), Critical Analytics for Manufacturing Personalized-Medicine (CAMP), Disruptive & Sustainable Technologies for Agricultural Precision (DiSTAP), Future Urban Mobility (FM), and Low Energy Electronics Systems (LEES). In addition, SMART also operates an Innovation Centre.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-engineer-10041356?jobId=jobstreet-sg-job-10041356§ionRank=624&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Project Overview
[{'position': 'Scientist (Nanofabrication), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Essential duties and responsibilities for this position include:': '', '\xa0The detailed job requirements:': 'PhD degree in physics/optics, materials science, and electrical and electronic engineering;.Strong publication track record.Strong foundation knowledge in optics.Strong capability with optical alignment and optical characterization is an essential requirement..Self-motivated and passionate on research work.Possess good critical thinking and problem-solving skills..Good team player.Excellent oral and written communication skills.Prior experience with fabrication or manufacturing of optical elements or devices will be an advantage..Experience in FDTD or COMSOL for optics simulation will be an advantage..No minimum requires of working experience.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-nanofabrication-imre-10127085?jobId=jobstreet-sg-job-10127085§ionRank=625&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Essential duties and responsibilities for this position include:
[{'position': 'Research Scientist in Centre for Research in Child Dev. / (R00007657)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'SGD\xa03,800 - SGD\xa05,300', 'Posted on 1-Nov-22']}, {'Research Scientist in Centre for Research in Child Development (OER) [NIE]': '', 'Overview': 'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention.Candidates with appropriate qualifications and relevant research experience are encouraged to apply. Successful applicants will work with a team of researchers at CRCD. We invite applications for the position of Research Scientist to join our efforts..', 'Requirements': 'PhD in a relevant discipline (e.g. developmental psychology, developmental science,\xa0 child development, educational psychology, linguistics, early intervention, or special education).Minimum 2 years of post-PhD experience (Research Scientist).Demonstrated ability to lead a research team;.Demonstrable track record in the following areas:.High quality publications (please provide samples and information on the\xa0 quality and impact of your work based on citations and ranking of journal publications);.Planning and writing research projects that are funded through competitive peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences);.Proficiency in the design and testing of instruments is desirable;.Excellent interpersonal and communication skills (spoken and written English);.Ability to work collaboratively within a team environment..', 'Responsibilities of Research Scientists': 'Collaborate with colleagues to design and implement the centre’s research programme.Take a leading role in the development of research projects and programmes and in seeking and pursuing appropriate external funding;.Disseminate the outcomes of research in peer-reviewed publications of international standing;.Manage and conduct administrative and management tasks associated with your programme of research;.Participate in research of strategic importance to NIE;.Participate in the wider research and service activities of NIE;.', 'Closing Date': 'Review of applicants will continue until the position is filled..', 'Other Information': 'Queries regarding the position should be directed to\xa0.', 'Application': 'Interested applicants should complete and submit the following documents:.Cover letter addressing how you meet each of the requirements of this position;.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research expertise, interests, and future directions;.1 to 3 of your best publications;.Name of at least 3 referees;.Any other documents that demonstrate your qualifications.', 'Note to applicants:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-in-centre-for-research-in-child-dev.-r00007657-10072585?jobId=jobstreet-sg-job-10072585§ionRank=626&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Research Scientist in Centre for Research in Child Development (OER) [NIE]
[{'position': 'Senior Assistant Manager, - Data Analytics - (R00008991)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Responsibilities': 'Establish an expert understanding of data available in the NTULearn ecosystem.Build and maintain dashboards to enhance the visibility of data trends.Translate data insights into meaningful content relevant to stakeholders.Enhance data capabilities with implementation of tools and platforms.Leverage existing analytics platforms to deliver quality and actionable insights to stakeholders.Support the ingestion of new data sources to enhance the NTULearn ecosystem.', 'Requirements': 'Minimum of 3-5 years of experience in implementing IT projects.Degree in Information Technology or related discipline..Strong working knowledge with data and analytical tools such as Qlik, Snowflake, etc.Good knowledge and programming skills in Java, APIs, Python.Familiarity with learning standards such as Caliper, LTI, OneRoster, etc will be advantageous.Data literate and able to effectively data story-tell.Able to analyse requirements and provide solutions..Keen on continuous learning and to keep abreast of evolving technologies..Able to appropriately apply technology for effective solutions..Good analytical skills and meticulous..Good communication, writing and presentation skills..Able to work independently or in a team with minimal supervision..Demonstration of exceptional work character, values and attitudes that upholds the spirit of OneNTU..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-assistant-manager-data-analytics-r00008991-10054425?jobId=jobstreet-sg-job-10054425§ionRank=627&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow, - (Artificial Intelligence) (R00008257)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Lead a team of junior researchers, e.g., PhD students and Research Assistant, to help with the vision and data analytics tasks.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly..Prepare and publish research papers on top-tier conferences and journals.Help prepare the proposal and progress report.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': '', 'Coding Skills:': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-r00008257-10140065?jobId=jobstreet-sg-job-10140065§ionRank=628&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Senior / Component Analyst'}, {'company_name': 'Future Electronics Inc (Distribution) Pte Ltd'}, {'small_section': ['Changi', 'Posted on 27-Oct-22']}, {'JOB PURPOSE:': '', 'PRINCIPAL ACCOUNTABILITIES:': '', 'JOB CONTENT:': '', 'RECOMMENDED CREDENTIALS:': '', 'EXPERIENCES': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': '199507398C', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '11 days', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts), Hospitalisation Insurance'}, {'Company Overview': 'Founded in 1968, Future Electronics is a worldwide leader in electronic components distribution, and is recognized as one of the most respected and innovative companies in the industry today. Headquartered in Montreal and operating in 169 locations in 44 countries around the world, Future Electronics has earned an impressive reputation for providing outstanding service and developing efficient, comprehensive global supply chain solutions.The company’s success is largely built upon its commitment to maintain close business partnerships with suppliers and customers, coupled with the strength of its commercial and technical competencies through all stages of the design-production cycle.Future Electronics is globally integrated, supported by one IT infrastructure which provides real time inventory availability and access, while enabling full integration of operations, sales and marketing worldwide.Future Electronics boasts the most knowledgeable sales team and provides the most advanced engineering/design capabilities and technical solutions, award-winning customer service, best-in-class global trade compliance program, and the largest available-to-sell inventory in the world.Offering the industry’s highest level of overall service, including customer-specific programs and processes, and worldwide e-commerce support, the company’s mission is always to Delight the Customer®'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-component-analyst-10058702?jobId=jobstreet-sg-job-10058702§ionRank=629&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
JOB PURPOSE:
[{'position': 'Research Fellow (Computer Science) - (R00010860)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Key Responsibilities:\xa0': 'Preprocess real brain imaging data for further analytical tasks;.Perform literature review and background study on graph analytics for brain network analysis;.Design novel and effective Data Mining & Machine Learning techniques (e.g., GNN-based models) for brain network analysis, develop/implement prototypes of the solutions, and validate their effectiveness empirically;.Publish the research work in top-tier research venues..', 'Job Requirements:\xa0': 'Possess PhD degree in Computer Science, or a related discipline with a focus on Machine Learning, Data Mining, or Statistics..Experiences in designing and developing graph analytics and/or brain network analysis technologies, in particular in GNN models..Good programming skills in e.g., Python, Matlab, C++, etc..Good interpersonal skills..Excellent teamwork awareness..Good communication and writing in English..Strong research experience will be a plus..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-r00010860-10071114?jobId=jobstreet-sg-job-10071114§ionRank=630&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Scientist (Quantum Levitation and Sensing) (SRI), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'JOB DESCRIPTION': 'Modeling the dynamics of levitated objects in optical and electromagnetic fields.Microfabrication of the high quality mirrors, silicon pocket, and superconductor.Operation of vacuum and cryogenic equipment.Analysis of experimental results acquired by photodetectors, sensors and SQUIDs\xa0.Collaboration with national and international experts.Supervision of research students.', 'REQUIREMENTS': 'Ph.D. degree in physics, applied physics, precise instrumentation, or other relevant fields..The candidates must be highly motivated in multidisciplinary research.Experienced in superconductivity or in precision optical metrology is preferred.Programming skills (e.g., Python, MATLAB).Ability to work as a team and communicate effectively.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-quantum-levitation-and-sensing-sri-imre-10126930?jobId=jobstreet-sg-job-10126930§ionRank=632&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
JOB DESCRIPTION
[{'position': 'Research Asst., - [Information & Computer Science/Mathematics] - (R00005020)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'School of Computer Science and Engineering (SCSE) invites applications for the position of Research Assistant.': '', 'Key Responsibilities:': 'Conduct research on security analysis of smart contract and testing vulnerabilities in well-known open-source blockchain projects.Develop automatic vulnerability detection tools for blockchain.', 'Job Requirements:': 'Bachelor’s in Information Computer Science, Mathematics, Software Engineering or related discipline.Expertise in software engineering, software programming, computer security and testing.Research experience in software testing, software analysis and related areas.Excellent communication and writing skills.Able to conduct research and write reports/articles independently and within teams.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-asst.-%5Binformation-computer-science-mathematics%5D-r00005020-10135184?jobId=jobstreet-sg-job-10135184§ionRank=633&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
School of Computer Science and Engineering (SCSE) invites applications for the position of Research Assistant.
[{'position': 'Assistant Manager (Forecasting)'}, {'company_name': 'Ambition Group Singapore Pte. Ltd. (SG)'}, {'small_section': ['Singapore', 'SGD\xa080,000 - SGD\xa088,000', 'Posted on 1-Nov-22']}, {'Assistant Manager (Forecasting)': '', 'Your responsibilities will include:': 'Identify areas to optimize and regularly update models to enhance the quality of outputs.Conduct continuous data cleaning activities and use statistical tools and machine learning algorithms to ensure the forecast models are optimized.Perform demand related analysis and forecasting and report meaningful insights using dashboards.Automate key reports to support and optimize the SIOP process.Provide input for ways to improving work processes and handle special projects as needed.', 'Key Requirements': "Bachelor's degree or higher in Business Analytics, Computing, Statistics or related fields.2 years or more of experience in Business Analytics ideally in demand planning area within the FMCG industry.Highly interested in working with data and preparing and maintaining high quality models for generating forecasts.Comfortable multitasking and working with large datasets, statistical tools, machine learning algorithms and visualization tools.Proficiency in PowerBI/Tableau, SQL, R, Python or SAS is highly desirable."}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Services, Logistics/Supply Chain', 'Registration No.': '10C5117', 'EA No.': '10C5117', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tAmbition is a leading global boutique recruitment business listed on the Australian Securities Exchange. With coverage across Hong Kong, Singapore, Kuala Lumpur, Sydney, Melbourne, Brisbane, and London, we specialise within the areas of Banking & Financial Services, Finance & Accounting, Sales & Marketing, Supply Chain & Procurement, Technology and Digital.'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-manager-forecasting-10123558?jobId=jobstreet-sg-job-10123558§ionRank=634&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Assistant Manager (Forecasting)
[{'position': 'Research Associate (Computer Science) - [R00001908]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities:': 'Literature review of data stream analysis and techniques.Algorithmic development of weakly supervised learning for data streams.Algorithmic development of robust learning for noisy data streams.Analysis of interpretability for data stream model.Development of software pack and visualization tool.', 'Requirements:': 'Master in computer science and related fields from reputable universities.Good programming skills in Python, Java or Matlab.Good oral and written communication skills.Research background in machine learning, data mining with publication evidence\xa0\xa0\xa0\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-%5Br00001908%5D-10072907?jobId=jobstreet-sg-job-10072907§ionRank=635&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Sr. Principal Research Scientist Information Technology, - [R00007762]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Requirements:\xa0': "\u200bA PhD in IT, Computer Engineering, or any other relevant field.12 of experience after PhD , preferably in cybersecurity research or IoT system architecture, including at least 5 of project manment experience. Applicants with a master's and a minimum of 16 working experience will be considered.A proven track record of international publications in relevant fields.Familiar with IoT, virtualization and distributed systems.Experience in international research collaboration, security information and event manment (SIEM), malware analysis, machine learning, cyber systems (CPS), or security architectures/frameworks is a plus.Proficient in technical reporting/presentations, have good verbal communication skills and be ability to work independently and in a team to realize the proposed works."}, {'Career Level': 'Manager', 'Qualification': 'Professional Certificate/NiTEC', 'Years of Experience': '12 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-principal-research-scientist-information-technology-%5Br00007762%5D-10076153?jobId=jobstreet-sg-job-10076153§ionRank=636&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Job Requirements:
[{'position': 'AI Engineer (NLP) - AI Singapore'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/ai-engineer-nlp-ai-singapore-10055291?jobId=jobstreet-sg-job-10055291§ionRank=637&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
[{'position': 'Research Engineer/Fellow - (Development of Artificial Intelligence algorithm for air condition #Immediatening) AM'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Participate in and manage the research project with Principal Investigator (PI), Co-PI and the research team members to ensure all project deliverables are met..Undertake these responsibilities in the project:.Assists in co-supervision of final year projects (FYP) or capstone projects for students under the Project PI..Meet the deliverables by carrying out the algorithm development, simulations and experimental studies planned for under the scope of work of the projects within the timeframe to meet the deliverables..Assists the PI in drafting reports, conference proceedings, and journal articles based on the outcome of the projects..Prepares and shares fortnightly reports of results from the computations with the program director and PI..Carry out Risk Assessment, and ensure compliance with Work, Safety and Health Regulations..Coordinate procurement and liaison with vendors/suppliers..Work independently, as well as within a team, to ensure proper operation and maintenance of equipment..', 'Job Requirements:': 'Master or PhD (preferred) in Mechanical Engineering, Building Science, Data Science or related disciplines..Strong knowledge and experience in air conditioning systems and chiller plants are highly advantageous..Hands-on experience in experimental studies.Familiarity with AI applications on industrial related projects using high-performance computing clusters would also be advantageous.Strong foundation in thermal systems.Strong prior experience in AI – particularly in algorithms related to energy savings application of the built environments.Strong skills in building energy modelling using Equest and Python..Proficient in handling large data sets and the ability to analyze and interpret results using Tableau and Python.Able to work independently with strong data analytical skills, communication and interpersonal skills..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-fellow-development-of-artificial-intelligence-algorithm-for-air-condition-immediatening-am-10104732?jobId=jobstreet-sg-job-10104732§ionRank=639&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Analyst, Business Information Support'}, {'company_name': 'Maybank'}, {'small_section': ['Central', 'Posted on 28-Oct-22']}, {'Responsibilities': 'Create dashboards for Business and Management and automate reports where relevant.Design, develop and maintain data mart as a single source data for information and analysis.Able to mine insights from structured and unstructured data.Support and enhance broad range of analytics projects related to customer profitability, segmentation, campaign optimization, etc.Manage day-to-day ad hoc business requests for information and analysis.Responsible for Bank’s performance reporting.Provide insightful, accurate and comprehensive business performance analysis.Highlight performance variance and provide comparison against budget expectation and other business cycles.Perform reconciliation to ensure financial data accuracy.', 'Requirements': 'Degree or equivalent professional qualifications in Accounting, Finance, or similar fields.At least 1 year relevant experience in management reporting and analysis in the finance and banking industry preferred.Experience in dealing with large (structure and unstructured) data-sets.Experience in programming skill using analytic tools such as Base SAS.Logical & meticulous, detailed and hands on with good analytical skills.Team player with good interpersonal, communication and problem solving skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': 'S60FC1376L', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "Maybank is a Qualifying Full Bank (QFB) in Singapore. For the convenience of our customers, all Maybank's 22 Branches and more than 35 ATMs are strategically located in both the business districts and suburban estates. Maybank is also part of atm5 - Singapore's only shared ATM network combining the reach of more than 130 locations of the six QFBs.\nMaybank is committed to bringing seamless banking and a wider spectrum of value-added financial services to our valued customers. By harnessing the latest technological advances to increase our network's effectiveness, our customers are able to conduct their banking transactions at any time and anywhere in the world, via the traditional as well as electronic channels.\nMaybank remains strongly committed to the Singapore operations, and our 32-storey headquarters, Maybank Tower, is the physical manifestation of this. As a QFB, Maybank Singapore will explore strategic alliances with the other QFBs for mutual benefit, and for the benefit of our customers who can expect to see a Bank that is closer to them - a Bank that understands their unique requirements."}, {'url': 'http://www.jobstreet.com.sg/en/job/analyst-business-information-support-10059711?jobId=jobstreet-sg-job-10059711§ionRank=640&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist | Forecasting Model'}, {'company_name': 'Achieve Career Consultant Pte Ltd'}, {'small_section': ['Central', 'SGD\xa08,000 - SGD\xa013,000', 'Posted on 14-Oct-22']}, {'·\xa0\xa0\xa0\xa0\xa0MNC': '', '·\xa0\xa0\xa0\xa0\xa0Central': '', '·\xa0\xa0\xa0\xa0\xa05-day week': '', 'Up to $13k': '', 'Our client,\xa0': '', ',': '', '\xa0Data Scientist.': '', 'RESPONSIBILITIES:': 'Develop python-coded supply-demand forecasting models.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Able to use machine learning to build price forecast models.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Convert excel-based forecasting models to python-based models.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Maintain and enhance existing models with changing market dynamics.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.Collaborate with data engineers to ensure the data feed for forecast models is collected and processed properly\xa0\xa0\xa0\xa0\xa0..Document methodologies, algorithms and processes to present to stakeholders regularly.\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0.', 'REQUIREMENTS:': 'PHD in computer science/computer engineering, math, statistics, or similar subjects is preferred..Extensive data modeling and data architecture skills..Proficient in Python, R, or Java..Energy sector knowledge or data research experience is a plus..', 'OTHER INFORMATION:': 'Location: Central (Promenade).Working days:\xa0Monday to Friday (office hour).Salary: Up to $13,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..', 'HOW TO APPLY:': '', 'Janelle Kow Jing Qi': '', 'Janelle at 6590 9964\xa0': '', 'YOUR SUCCESS IS OUR ACHIEVEMENT!': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199801996Z', 'EA No.': '05C3451', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "We're Here to Help People ACHIEVE Success!ACHIEVE is a multi-award-winning ISO 9001 recruiter that has placed more than 40,000 people in positions across industries. Established since 1990, with headquarters in Singapore and an office in Malaysia,\xa0our consultants are specialists in specific areas of specialization, and have the expertise to match candidates with the right permanent positions and contract jobs. In our 30 over years as a recruiter, we are widely recognised by jobseekers, MNCs and SMEs across the Asia Pacific region. A homegrown trusted brand, we are regularly featured in the media and have been honoured with multiple awards by the business community.\xa0In 1H 2022, we were accorded the rare honour of being conferred both the Human Capital Partnership Programme for Employment Agencies (HCP) by the Ministry of Manpower (MOM) and the Singapore Prestige Brand Award (SPBA) by the Association of Small and Medium Size Enterprises (ASME), in recognition of our business transformation efforts and push to build a Singapore core in the workforce!"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-%7C-forecasting-model-10068001?jobId=jobstreet-sg-job-10068001§ionRank=641&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
· MNC
[{'position': 'Research Associate - (Visual Analytics) (R00007721)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities': 'The Research Associate will conduct research on Computer Vision, Image Processing, and Multimedia Forensics for security and surveillance applications. The roles of this position include:.Research into Visual Search and Video Analytics related work, including object detection, person re-identification (reID) & tracking, and search & retrieval..Creation of large-scale datasets for research and algorithm evaluation.Be part of a research team in the execution of funded research projects.Assist in drafting of proposals for research grants in the above areas.', 'Job Requirements': 'Masters degree in Engineering, Computer Science, Data Science & Analytics, Mathematics, or related field.Research experience in Computer Vision, Pattern Recognition, Deep Learning, and working with large-scale datasets.Experience with object detection & segmentation, person re-identification, and domain adaptation & generalisation is essential.Experience with scripting with game engines (eg. Grand Theft Auto, Unity) and the creation of synthetic datasets would be highly advantageous..Proficiency in software such as PyTorch, TensorFlow, OpenCV, and programming languages such as C/C++ and Python, as well as Linux (eg. Ubuntu) is essential..Knowledge of GPU computing, CUDA programming, optimization (eg. with TensorRT), and industry experience in engineering software development would be an advantage..Good inter-personal skills, with the ability to work with people from varied backgrounds.Proficient in English.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-visual-analytics-r00007721-10072579?jobId=jobstreet-sg-job-10072579§ionRank=642&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Technologist / Research Officer (Data Management)'}, {'company_name': 'Singapore General Hospital'}, {'small_section': ['Outram', 'Posted on 2-Nov-22']}, {'Job Requirements:': 'Diploma/Degree in library science, computer science, bioinformatics, statistics, computer engineering or related field or equivalent experience working in data management, biostatistics, clinical informatics or data analysis. Additional diploma/degree or experience in biomedical Science, Life Science or related fields is a plus..Minimum\xa02 years experience in data management or analysis ideally including experience in master, metadata and reference data management.Ability to decipher and organize large amounts of data especially experience working with large data sets from the biomedical industry for example (clinical data, pathology, gene expression, genomics, etc.), basic scripting experience (SQL, R, Python) recommended.An analytical mindset with superb communication and problem-solving skills, ability to complex problems clearly and in nontechnical terms.Keen to develop in a new research enterprise and be embedded within a multi-disciplinary team of clinicians and scientists.Effective organizational skills (planning, time management etc.), meticulous and able to work independently and in a team, An understanding of Agile working practices and sprint based methodology is a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '198703907Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '16 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Leave benefits, 42 hours'}, {'Company Overview': "\nSingapore General Hospital is Singapore's largest flagship tertiary hospital with an 10,000-strong multi-generation diversified workforce and a rich 190 years history. Every year, the SGH Campus caters to over 1 million patients, providing advanced medical care under its 36 clinical specialties.\nAs an academic hospital, SGH plays a key role in nurturing doctors, nurses and allied health professionals and is committed to innovative translational and clinical research to provide the best care and outcomes to patients.\nWe offer a challenging, family-friendly and conducive work environment with enormous scope and opportunities to meet your career aspirations, advancement and personal development.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/research-technologist-research-officer-data-management-10126085?jobId=jobstreet-sg-job-10126085§ionRank=643&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Job Requirements:
[{'position': 'Junior Data Analyst (MNC/UP to $3K/ 3 - 6 months) no exp ok!'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'SGD\xa02,800 - SGD\xa03,000', 'Posted on 29-Oct-22']}, {'The Opportunity': 'Opportunity to work in a renowned MNC in the Fashion industry.Location: Central (Hybrid work arrangements).Working hours: Mon - Fri.Salary: Up to $3000.3 - 6 months contract available.', 'The Talent': 'Minimum Diploma in IT or equivalent.Understanding on Business Intelligence systems such as Tableau, Power BI or Advanced Excel.Good analytical, mathematical and creative problem-solving skills.Ability to work independently.Fresh graduates with no experience but with relevant IT Knowledge are welcomed to apply.', 'Job Description': 'Support the business through data analysis and insight generation.Filter and clean data by reviewing reports.Managing Daily Sales Reporting and enhancing the data.Presenting analysed data to management.Other ad-hoc duties as assigned.', 'Next Step': []}, {'Career Level': 'Entry Level', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Job Type': 'Contract', 'Job Specializations': 'Accounting/Finance, General/Cost Accounting', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/junior-data-analyst-mnc-up-to-%243k-3-6-months-no-exp-ok!-10066082?jobId=jobstreet-sg-job-10066082§ionRank=645&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
The Opportunity
[{'position': 'Purification Scientist - Bioprocess Design Center - 219318BR'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities:': 'Builds\xa0Singapore\xa0BDC downstream process (DSP) capabilities to develop\xa0and\xa0scale-up for biologics\xa0and\xa0vaccines workflows..Technical project lead\xa0and/or\xa0expert to craft\xa0and\xa0implement DSP experimental plans. Advises\xa0or\xa0performs data analysis\xa0and\xa0technical report generation..Generates impactful purification application data\xa0based\xa0on Thermo Fisher products..Evaluates innovative methods\xa0and\xa0technologies, maintains accurate lab records to support IP protection in accordance with relevant Thermo Fisher required standards..Develops materials for both internal\xa0and\xa0external presentations such as project update meetings, customer visits, scientific conferences..Develops\xa0Work\xa0Instructions\xa0and\xa0maintains/calibrates critical DSP lab equipment. Aligns with all company safety, training,\xa0and\xa0quality standards (e.g., ISO compliance, GLP requirements)..Prepares bills of materials for the\xa0service\xa0projects\xa0and\xa0ensure appropriate logistical\xa0and\xa0shipping support..Supports prioritized pre-sales (customer visits, seminars, conferences, etc.)\xa0and\xa0post-sales (troubleshooting) activities, partnering Technical Sales Specialists\xa0and\xa0Marketing as the technical guide on downstream workflow solutions..Supports BDC Purification training courses as content developer\xa0and\xa0trainer..Provides admin\xa0and\xa0logistics support for BDC projects\xa0and\xa0customer visits..Collaborates with colleagues\xa0from\xa0other BDCs\xa0and\xa0R&D sites to build effective shared technical resources..', 'Qualifications / Experience:': 'Master’s\xa0degree\xa0in Life Sciences (Biochemistry, Biotechnology, Engineering, Virology)..5+\xa0years’ hands-on experience in industrial downstream R&D, process development, MSAT..Experience in statistical experimental design (DOE) is preferred.Experience in packing pilot-manufacturing scale chromatography columns is preferred..', 'Additional Desirable Skillsets/Experience': 'Program/project management experience.Validated fast learner on\xa0new\xa0technology / knowledge / process..Excellent verbal\xa0and\xa0written scientific communication skills..Excellent organizational skills, including the ability to efficiently evaluate\xa0and\xa0prioritize multiple projects\xa0and\xa0tasks..', 'Working\xa0Conditions:': 'Work\xa0in a GLP laboratory\xa0environment, handle approved chemicals and materials safely..'}, {'Career Level': 'Senior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/purification-scientist-bioprocess-design-center-219318br-10053361?jobId=jobstreet-sg-job-10053361§ionRank=646&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Fellow, (Geometry, Probability, & Deep Learning) R00009872'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Responsibilities': 'Obtaining mathematical results in the area of Geometry, Probability, and Deep Learning.Designing, implementing, and testing algorithms.Engaging in scientific exchange with collaboration partners of the project.Guiding junior researchers in the team.Preparing reports, scientific papers, and presentations.Helping with academic self-administration.', 'Job Requirements': 'PhD in Mathematics or related areas.Experience in geometry, probability and/or deep learning. Some more specific research areas of particular interest are infinite-dimensional Riemannian or metric geometry, infinite-dimensional probability or stochastic analysis, statistical learning theory, coding theory, inverse problems, and harmonic analysis. Moreover, some applications of particular interest are mathematical finance and biomedical image or shape analysis.Good publication record.Good communication skills.'}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics, Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-geometry-probability-deep-learning-r00009872-10127707?jobId=jobstreet-sg-job-10127707§ionRank=647&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate, - (Computer Science/Signal Processing) - (R00005575)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:\xa0': 'Development of algorithms for malware and vulnerability analysis for mobile applications.Implement customized analysis tools for detection and defense of mobile security attacks.Write research papers of high quality based on research results.Build deployable systems based on the research results.', 'Job Requirement:': 'Master’s degree in Computer Science, Signal Processing or related areas.Expertise in software engineering, software programming, computer security and testing.Research experience in software testing, mobile testing, and related areas.Excellent background in software engineering with Advanced Programming Skills (Python, C/C++, Java).Good communication skills.Ability to conduct research and work independently and within teams.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-signal-processing-r00005575-10135203?jobId=jobstreet-sg-job-10135203§ionRank=650&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Associate, (Visual Analytics) - (R00009667)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Description:': 'Research into Visual Search and Video Analytics related work, including object detection, person re-identification (reID) & tracking, and search & retrieval.Creation of large-scale datasets for research and algorithm evaluation.Be part of a research team in the execution of funded research projects.Assist in drafting of proposals for research grants in the above areas.', 'Job Requirements:': 'Masters degree in Signal Processing, Engineering, Computer Science, or related field.Research experience in Computer Vision, Pattern Recognition, Deep Learning, and working with large-scale datasets.Experience with object detection & segmentation, person re-identification, and domain adaptation & generalisation is essential.Experience with scripting with game engines (eg. Grand Theft Auto, Unity) and the creation of synthetic datasets would be highly advantageous.Proficiency in software such as PyTorch, TensorFlow, OpenCV, and programming languages such as C/C++ and Python, as well as Linux (eg. Ubuntu) is essential.Knowledge of GPU computing, CUDA programming, optimization (eg. with TensorRT), and industry experience in engineering software development would be an advantage.Good inter-personal skills, with the ability to work with people from varied backgrounds.Proficient in English.\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-visual-analytics-r00009667-10071491?jobId=jobstreet-sg-job-10071491§ionRank=651&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Principal Research Scientist (Communications & Networks), I2R'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {}, {'Career Level': 'Manager', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-research-scientist-communications-networks-i2r-10079234?jobId=jobstreet-sg-job-10079234§ionRank=652&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
[{'position': 'Research Fellow, - [LKC Medicine] - R00010529'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Lee Kong Chian School of Medicine invites applications for:': '', 'Research Fellow in the laboratory of Associate Professor Eric Yap': '', 'Job Responsibilities:': 'Design and conduct wet lab and dry lab experiments independently.Perform data analysis and interpretation for publication.Mentor and supervise students and junior lab members.Contribute to lab procurement and lab safety management.Perform and manage international-level wet lab and in silico research in environmental molecular microbiology.', 'Skills & qualifications:': 'PhD in microbiology, molecular biology or related fields.Experience in microbiology and molecular biology methods, such as culture isolation, antibiotics susceptibility testing, DNA extraction, PCR and library preparation.Experience in bacterial whole genome sequencing and genome assembly.Experience handling large datasets for bioinformatic analysis.1 year experience in handling Biological Safety Level 2+ (BSL2+).Ability to handle microbes competently and safely up to Biological Safety Level 2+ (BSL2+).Good aseptic technique.Strong interpersonal skills for collaborative working, to be self-motivated, well-organized and focused.Excellent communication and interpersonal skills.Possess a sense of initiative and proactiveness.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-%5Blkc-medicine%5D-r00010529-10139900?jobId=jobstreet-sg-job-10139900§ionRank=653&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Lee Kong Chian School of Medicine invites applications for:
[{'position': 'Medical Laboratory Scientist (Diagnostic Bacteriology)'}, {'company_name': 'Singapore General Hospital'}, {'small_section': ['Outram', 'SGD\xa04,000 - SGD\xa05,500', 'Posted on 31-Oct-22']}, {}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biomedical', 'Registration No.': '198703907Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '16 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Leave benefits, 42 hours'}, {'Company Overview': "\nSingapore General Hospital is Singapore's largest flagship tertiary hospital with an 10,000-strong multi-generation diversified workforce and a rich 190 years history. Every year, the SGH Campus caters to over 1 million patients, providing advanced medical care under its 36 clinical specialties.\nAs an academic hospital, SGH plays a key role in nurturing doctors, nurses and allied health professionals and is committed to innovative translational and clinical research to provide the best care and outcomes to patients.\nWe offer a challenging, family-friendly and conducive work environment with enormous scope and opportunities to meet your career aspirations, advancement and personal development.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/medical-laboratory-scientist-diagnostic-bacteriology-10119259?jobId=jobstreet-sg-job-10119259§ionRank=655&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
[{'position': 'Research Associate / Research Fellow (Reproductive Medicine, 1yr contract)'}, {'company_name': "KK Women's & Children's Hospital"}, {'small_section': ['Central - Others', 'Posted on 3-Nov-22']}, {'Job Description': '', 'Job Requirements': []}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biomedical', 'Registration No.': '52839081C', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '24 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Leave, 42hours', 'Specific Location': 'Little India'}, {'Company Overview': 'KK Women’s and Children’s Hospital has evolved over the decades, since its founding in 1858, into a regional leader in Obstetrics, Gynaecology, Paediatrics and Neonatology. Today, the 830-bed hospital is a referral centre providing tertiary services to handle high-risk conditions in women and children. More than 400 specialists adopt a multi-disciplinary and holistic approach to treatment, and harness the latest innovations and technology for the best medical care possible.\n\nAs an academic healthcare institution, KKH believes that world-class clinical training and research are imperative in raising the standard of care. Hence, the Hospital has adopted a culture of innovation as it strives for world-class clinical leadership.\n\nAs we continually raise the bar on clinical excellence, we are sensitive to our patients’ needs for a pleasant hospital experience – one where they receive seamless service and enjoy the warmth of compassionate care in a healing environment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-research-fellow-reproductive-medicine-1yr-contract-10130009?jobId=jobstreet-sg-job-10130009§ionRank=657&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Senior Scientist (Molecular Biology) [182447BR]'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'How Will You Make an Impact?': '', 'The Senior Scientist (Molecular Biology)': '', 'What will you do?': "Represents verification and validation function on a project level for molecular biology assay development, software integration and/or instrument integration or development..Leads test method development and validation.Exercises independent judgment within defined procedures and practices to determine appropriate action..Problem solving using knowledge of technical product details, design control and basic regulatory issues..Designs and conducts experiments independently and writes procedures, protocols and reports.Recommends and executes changes to processes, procedures or products internally to the department..Possesses strong computer skills and can manage and analyze data sets..May lead training and guidance of junior scientists; may review and approve junior scientist's work.Adheres to internal policies and procedures, as well as external quality standards..", 'How will you get here?': '', 'I. Education': "Required - Master's degree in Chemistry, Biochemistry, Molecular Biology or similar (at upper second-class level) with 4 years of experience..Preferred - Ph.D. in Chemistry, Biochemistry, Molecular Biology or similar.", 'II. Experience': 'Experience as technical or project leader.Extensive hands on experience with molecular biology methods..Experience with sample preparation, nucleic acid extraction methods..Experience with qPCR, CE and/or NGS molecular biology methods..Experience with statistics packages, e.g. JMP, Minitab..', 'III. Knowledge, Skills, Abilities': 'Experimental design and analysis skills.Familiar with good laboratory and documentation practices..Strong laboratory knowledge of assays development best practices.Familiar with Excel and Statistical Data Analysis tools.Knowledge of IVD process for MDx.Excellent verbal and written communication skills.Excellent organizational skills, including the ability to efficiently evaluate and manage multiple project tasks.Experience working in regulated environment (e.g., ISO 13485) is an advantage..'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-scientist-molecular-biology-%5B182447br%5D-10053418?jobId=jobstreet-sg-job-10053418§ionRank=658&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
How Will You Make an Impact?
[{'position': 'Research Assistant (Information & Computer Science/Mathematics) - R00005020'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'School of Computer Science and Engineering (SCSE) invites applications for the position of Research Assistant.': '', 'Key Responsibilities:': 'Conduct research on security analysis of smart contract and testing vulnerabilities in well-known open-source blockchain projects.Develop automatic vulnerability detection tools for blockchain.', 'Job Requirements:': 'Bachelor’s Degree in Information Computer Science, Mathematics, Software Engineering or related discipline.Expertise in software engineering, software programming, computer security and testing.Research experience in software testing, software analysis and related areas.Excellent communication and writing skills.Able to conduct research and write reports/articles independently and within teams.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-information-computer-science-mathematics-r00005020-10138957?jobId=jobstreet-sg-job-10138957§ionRank=659&token=0~d319d031-11a4-4e17-9074-dbea8dc47a3a&fr=SRP%20Job%20Listing'}]
School of Computer Science and Engineering (SCSE) invites applications for the position of Research Assistant.
[{'position': 'Associate/ Data Engineer, Government Infrastructure Group #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Government Infrastructure Group (GIG)': '', 'How we work': '', 'Job Overview': '', 'What you will be working on:': 'Build and implement framework to resolve data problems at scale.Mange the continuous testing and development of data pipeline, new data sources and analytic dashboards..Execute projects with Agile methodologies.Collaborate with product managers, software engineers and data analysts to build scalable and data-driven platforms and tools.', 'What we are looking for:': 'Bachelor’s Degree in Computer Science or have equivalent professional experience.Have at least 2 years’ experience in python and SQL.Passion for problem-solving, improving and/or implementing processes.Experience implementing batch and streaming data pipelines..Experience in handling Warehouse operation data.Knowledge of both SQL and NoSQL databases, including performance tuning and troubleshooting..Familiar with DevOps tools such as Git, Docker, Terraform.High analytical ability - critical and logical thinking and optimization..Ability to deliver on timelines and move quickly with multi-functional teams to execute on decisions while maintaining attention to details.Team player with strong analytical thinking and problem-solving skills..Experience in the public sector is an advantage.Knowledge in SCRUM or DevOps..Knowledge of ITIL processes and procedures..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/associate-data-engineer-government-infrastructure-group-jobsthatmatter-10052819?jobId=jobstreet-sg-job-10052819§ionRank=662&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Government Infrastructure Group (GIG)
[{'position': 'Research Fellow (Molecular Biology, Biochemistry) (R00007043)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Responsibilities': 'Conduct molecular biology and protein biochemistry-related research in area of bacterial cell wall synthesis and recycling..Supervise and mentor PhD and undergraduate students in various projects..Propose and direct research projects and assist with grant writing..', 'Job Requirements': 'Minimum Qualifications: PhD in microbiology, biochemistry, or related field.Must possess strong expertise in molecular cloning, recombinant protein expression and purification, IP and co-IP, qPCR etc techniques..Must be able to design and perform novel assays to evaluate enzymatic activity..Must be highly self-motivated and be able to produce results and strive for research excellence..Must have first-author publications in top peer-reviewed journals..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-molecular-biology-biochemistry-r00007043-10070646?jobId=jobstreet-sg-job-10070646§ionRank=663&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Program Executive, AI & Digital Innovation'}, {'company_name': 'Singapore Eye Research Institute (SERI)'}, {'small_section': ['Outram', 'SGD\xa03,000 - SGD\xa04,800', 'Posted on 3-Nov-22']}, {'We are seeking for a highly qualified and motivated individual to take on a significant role in the ': '', 'AI and Digital Innovation': '', ' Research Group at SERI.': '', 'Job Description': "Coordinate meetings and liaise with different AI interest groups and various teams from SERI and SingHealth.Support in the organisation of AI journal clubs, seminars and initiatives; Organise events for both SERI and SingHealth AI Office and assist in co-ordination with external parties for co-organized or invited events..Assist with administrative matters, including update of listings, preparation of documents and submissions to internal and external organisations.Manage content and project/event updates on the online portal.Collaborate with group communication to publicize AI projects, papers and achievements.Manage department's procurement, admin matters and HOD’s calendar.Other ad-hoc duties when required.", 'Job Requirements': "Bachelor's degree in Engineering/ IT/ Bio-science/ Finance/ Economics or related field..Possess at least 3 years’ relevant experience in the area of academia or industry experience in healthcare, medical, or digital technology environment..Prior experience in dealing with industrial partners, collaborators; and understanding and experience in healthcare/ research sector or project management in technology and healthcare domains would be an added advantage.Familiarity with social media platforms such as LinkedIn, Facebook, Instagram, Telegram, Twitter.Excellent communication skills and strong interpersonal and presentation skills.Creative, strong analytical and problem solving skills and ability to structure creative deal structures and develop conceptual solutions.Able to work independently, Team player and team oriented..Proficient in Microsoft Office application."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Admin/Human Resources, Clerical/Administrative Support', 'Registration No.': '199704888Z', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '28 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\nSingapore National Eye Centre (SNEC) was incorporated on 3 March 1989 and commenced operation in October 1990. It is the designated national centre for ophthalmology within Singapore’s public sector healthcare network, with a faculty of close to 80 ophthalmologists and more than 800 staff.\xa0SNEC spearheads and coordinates the provision of specialised ophthalmological services with emphasis on quality education and research.\xa0\nSNEC manages more than 330,000 patient visits and performs over 35,000 surgeries and laser procedures annually.\xa0 The centre offers a full spectrum of subspecialties addressing every part of the eye – Cataract, Corneal & External Eye Disease, General Cataract & Comprehensive Ophthalmology, Glaucoma, Neuro-ophthalmology, Ocular Inflammation & Immunology, Oculoplastic, Paediatric Ophthalmology and Adult Strabismus, Refractive Surgery, Surgical and Medical Retina.\nSingapore Eye Research Institute (SERI) was established in 1997 as Singapore’s national research institute for ophthalmic and vision research. It is the research arm of SNEC, and affiliated to the National University of Singapore (NUS) and the Duke-NUS Medical School, as part of the SingHealth-Duke-NUS Academic Medical Centre.\nOver the years, SERI has invested considerable resources into its research infrastructure and in the training of the next generation of clinician-scientists, clinician-researchers and scientists. In two decades, SERI has grown from a founding team of 5 to over 200 researchers, doctors and support staff, and is the largest eye research institute in the Asia-Pacific region.\nA global leader in eye research, SERI ranks ahead of its counterparts in the US, UK and Japan in terms of ophthalmology publications per capita. Tapping on its close affiliation to SNEC, SERI is in the unique position to translate basic research into cutting edge clinical care by enabling the development of new treatments for a variety of eye diseases.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/program-executive-ai-digital-innovation-10129184?jobId=jobstreet-sg-job-10129184§ionRank=665&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
We are seeking for a highly qualified and motivated individual to take on a significant role in the
[{'position': 'Post Doctoral Fellow, Laboratory of Synthetic Biology and Genome Editing Therapeutics, GIS'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Description': '', 'Job Requirements': 'Ph.D. in Biological Sciences, Engineering, or related disciplines.Excellent expertise with molecular biology, nanopore sequencing, programming, micro/nanofludics, and/or robotics is a pre-requisite.Demonstrated independence and creativity.Ability to generate intellectual property is highly desirable.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/post-doctoral-fellow-laboratory-of-synthetic-biology-and-genome-editing-therapeutics-gis-10128050?jobId=jobstreet-sg-job-10128050§ionRank=666&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'URGENT / Data Engineer (MongoDB / Java / Python / UAT)'}, {'company_name': 'TRUST RECRUIT PTE. LTD.'}, {'small_section': ['Singapore', 'SGD\xa04,500 - SGD\xa06,500', 'Posted on 22-Oct-22']}, {'Responsibilities:': "Responsible for enabling the smooth utilization of advanced technology to build highly effective data channels to improve our clients' operational efficiency..Use of enterprise data to enable utilization of advanced optimization techniques for addressing dynamic resource allocation problems across a number of industries..Build a suite of solutions that makes for a sustainable technology framework with tangible positive impacts on the environment..", 'Requirements:': 'M.Sc. or B.Sc. in Computer Science, Engineering or a related topic.5-7 years of relevant industry experience is highly desirable.Ability to extract data from different data sources, both in structured and semi-structured formats (do not exclude the possibility of having to deal with unstructured data in this role!).Strong understanding of multiple Open Source tools and frameworks for data management.Industry experience of any combination of Java, Python, C#, C or C++.Comfortable with SQL and NoSQL paradigms.Strong SQL scripting skills.Familiarity with NoSQL (Mongo DB, Hadoop, Cassandra, etc.) and Graph Databases.Strong prior exposure to Data Warehousing tools and techniques.Understanding of core Data Analysis and Data Preparation techniques.A basic understanding of Machine Learning techniques and requirements is expected.Experience of code automation tools and separation of DEV/UAT/PROD environments.Strong understanding of cloud architecture and existing experience of any major cloud platform and/or hybrid solutions.Comfortable working in an agile environment with continuous development and deployment.Working knowledge of Master Data Management.', 'HOW TO APPLY:': '', 'MS WORD': '', 'ref19(at)trustrecruit.com.sg': '', '“Apply Now” ': '', 'Important Note: ': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201935022Z', 'EA No.': '19C9950', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '5 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tTrust Recruit is Singapore’s leading relationship-based human resource and recruitment firm. With more than 20 years of collective consulting experience, we provide personalized workforce solutions for our corporate clients, ranging from multinational corporations to the public sector, as well as small and medium enterprises.\n\n\n\tAt Trust Recruit, integrity and reliability permeates every level of our recruitment process. TRUST is our currency of interactions; be it with our valued clients, talented job-seekers or our own employees. Through our premium staffing services, we are committed to connecting and developing quality relationships between candidates and companies.'}, {'url': 'http://www.jobstreet.com.sg/en/job/urgent-data-engineer-mongodb-java-python-uat-10094597?jobId=jobstreet-sg-job-10094597§ionRank=667&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Scientist -#WorkNow'}, {'company_name': 'Achieve Career Consultant Pte Ltd'}, {'small_section': ['Downtown Core', 'SGD\xa06,000 - SGD\xa07,000', 'Posted on 14-Oct-22']}, {'·\xa0\xa0\xa0\xa0\xa0MNC': '', '·\xa0\xa0\xa0\xa0\xa0Central': '', '·\xa0\xa0\xa0\xa0\xa05-day week': '', 'Up to $7k': '', 'Our client,\xa0': '', ',': '', 'Data Scientist.': '', 'RESPONSIBILITIES:': "Create code that calculates inventory, for inventory management, demand and return forecast calculation.Connect to GCP (Google Cloud Platform) and perform all calculation on the cloud.Analyze the system demand and return forecast results with which adjust the system forecast parameters identifying the issues.\xa0.Enhance and develop system forecast logic algorithm understanding the system forecast logic and management process\xa0\xa0\xa0.Respond to the forecast system user's inquiry as to the system forecast value background..", 'REQUIREMENTS:': 'Proficiency in SQL/Python/VBA. Google Cloud Certification..Efficient coding in Python/SQL.Prefer Minimum 2 years experience in the industry.', 'OTHER INFORMATION:': 'Location: Central (Downtown).Working days:\xa0Monday to Friday (office hour).Salary: Up to $7,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..', 'HOW TO APPLY:': '', 'Janelle Kow Jing Qi': '', 'Janelle at 6590 9964\xa0': '', 'YOUR SUCCESS IS OUR ACHIEVEMENT!': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199801996Z', 'EA No.': '05C3451', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "We're Here to Help People ACHIEVE Success!ACHIEVE is a multi-award-winning ISO 9001 recruiter that has placed more than 40,000 people in positions across industries. Established since 1990, with headquarters in Singapore and an office in Malaysia,\xa0our consultants are specialists in specific areas of specialization, and have the expertise to match candidates with the right permanent positions and contract jobs. In our 30 over years as a recruiter, we are widely recognised by jobseekers, MNCs and SMEs across the Asia Pacific region. A homegrown trusted brand, we are regularly featured in the media and have been honoured with multiple awards by the business community.\xa0In 1H 2022, we were accorded the rare honour of being conferred both the Human Capital Partnership Programme for Employment Agencies (HCP) by the Ministry of Manpower (MOM) and the Singapore Prestige Brand Award (SPBA) by the Association of Small and Medium Size Enterprises (ASME), in recognition of our business transformation efforts and push to build a Singapore core in the workforce!"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-worknow-10066786?jobId=jobstreet-sg-job-10066786§ionRank=669&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
· MNC
[{'position': 'Research Fellow (Wound Care Innovation for the Tropics), A*SRL'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'This potential candidate should fulfil the following requirements:': 'Ph.D. level scientist with relevant background and experience (e.g. Materials Science & Engineering, Biomedical Engineering, Chemical Engineering) or applicant with M.Eng with relevant experience can be considered (position title will be (Senior) Research Officer)..Experience in scaffold fabrication techniques such as electrospinning, 3D bioprinting, microgel fabrication, and nanoparticle formation.Strong ability to communicate effectively orally and in written form.Able to perform self-directed work.Motivated individual passionate in developing a product that could potentially be translated for patients use.Experience with material modification is a bonus.', 'Some key responsibilities of this candidate include but are not limited to:': 'Design and characterise novel tissue engineering scaffolds that are biodegradable and biocompatible for soft tissue engineering.Incorporate proteins, characterise protein release kinetics and study bioactivity of released proteins from the designed scaffolds.Characterise physical scaffold properties (e.g. SEM imaging and degradation rate of material).Interpret experimental results from journal papers in areas that are related to the research interest.Work in a collaborative inter-institute environment.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-wound-care-innovation-for-the-tropics-a*srl-10123769?jobId=jobstreet-sg-job-10123769§ionRank=670&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
This potential candidate should fulfil the following requirements:
[{'position': 'Research Scientist, - (Microfabrication) [R00007961] #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Responsibilities': 'Develop manufacturing processes for micro-/nano- fabrication of materials.Characterize the structure and properties of the materials.Develop Processing-Structure-Properties relationships.', 'Job Requirements': 'Ph.D. in Mechanical Engineering, Materials Science and Engineering, Electrical Engineering or related field.Knowledge in Micro-/ Nano- fabrication, especially non-traditional microelectronics processing techniques.Proficiency with optics, control systems and flexible materials are highly valued but not mandatory.Excellent written and verbal communication in the English language is expected.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-microfabrication-%5Br00007961%5D-urgent-10060645?jobId=jobstreet-sg-job-10060645§ionRank=671&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow, - (Biomedical Engineering/Biological/Biochemistry) #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'This includes:': 'Microfluidics development of a low-cost droplet storage device.Operation and characterization of digital microfluidics.Workflow integration of droplet storage chip with digital microfluidics.Characterization of biological entities (cells, molecules, drugs) in the developed platforms.', 'Job Requirements:\xa0': 'A doctorate (PhD) qualification in Biomedical Engineering and/or a relevant biological or biochemistry discipline.Experiences in development of microfluidics development for sample preparation.Experiences in microfabrication, rapid prototyping, 3D printing.Proficient in AutoCAD or Solidworks.Microfluidic handling of biological and drug samples and non-aqueous flow.Experiences in pharmaceutical analysis and analytical chemistry.Strong written and verbal communication skills in English.Experiences in mass spectroscopy is an advantage.Publication track record is an advantage.Experiences in system control and bioinstrumentation is an advantage.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-biomedical-engineering-biological-biochemistry-worknow-10134847?jobId=jobstreet-sg-job-10134847§ionRank=674&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
This includes:
[{'position': 'Executive, Data Automation - (SATS01140-9940)'}, {'company_name': 'SATS Ltd.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'About SATS – Feed and Connect Communities': '', 'KEY RESPONSBILITIES\xa0': 'Working closely with lead software engineers on the application design and standardization.Responsible for design, build, test, and deployment of automation RPA and automation applications.Support automated RPA and application and perform troubleshooting to continuously improve the overall robustness of automation.Stay current on new products and learn new technology/skill/application.', 'KEY REQUIREMENTS': 'Diploma or Degree holder in Information Systems, Information Technology or Computer Science.Fluency in Microsoft Power Platform on Azure, including PowerApps and Power Automate.Knowledge of Azure cloud services and RPA tools.Knowledge in both structured and unstructured data (SQL, NOSQL).Experience with designing and building data automation applications and RPA.Good communication skills in helping non-technical audience understand complex technical concepts.Great attention to detail and quality.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197201770G', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '13 days', 'Industry': 'Aerospace / Aviation / Airline', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Regular hours, Saturdays or shift may be required for operational positions'}, {'Company Overview': "SATS – Feed and Connect CommunitiesSATS is Asia's leading provider of food solutions and gateway services. Using innovative food technologies and resilient supply chains, we create tasty, quality food in sustainable ways for airlines, foodservice chains, retailers and institutions. With heartfelt service and advanced technology, we connect people, businesses and communities seamlessly through our comprehensive gateway services for customers such as airlines, cruise lines, freight forwarders, postal services and ecommerce companies.Fulfilling our purpose to feed and connect communities, SATS is delighting customers in over 60 locations and 14 countries across the Asia Pacific, UK, and the Middle East. SATS has been listed on the Singapore Exchange since May 2000. For more information, please visit\xa0www.sats.com.sg."}, {'url': 'http://www.jobstreet.com.sg/en/job/executive-data-automation-sats01140-9940-10124505?jobId=jobstreet-sg-job-10124505§ionRank=675&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
About SATS – Feed and Connect Communities
[{'position': 'Operations Training & Development, Senior Engineer'}, {'company_name': 'GlobalFoundries Singapore'}, {'small_section': ['North', 'SGD\xa04,000 - SGD\xa06,000', 'Posted on 3-Nov-22']}, {'About Globalfoundries': '', 'Introduction\xa0': '', 'Your Job': 'Deliver and facilitate learning via different delivery methods, such as instructor-led training, virtual classroom, e-learning, mobile learning and/or blended learning.\xa0.Develop and provide relevant in-house trainings on technical topics of your own expertise..Implement various learning programs companywide (e.g. coaching, job-shadowing, online training, etc)..Monitor and evaluate learning programs to ensure they timely and effective execution.\xa0.Upkeep all learning programs on a regular basis to encompass program, product, service delivery, procedural and technology changes..Identify and develop a holistic skills and competency matrix to map employees’ skills and their proficiency levels..Collaborate and partner with educational institutions in providing an experiential industrial exposure to "students" through work-study programs, internship, workshops, talks and holiday program..Facilitate and coach employees for sharing at career talks, job fairs and outreach events..', 'Required Qualifications:\xa0': 'Bachelor Degree in Engineering or relevant discipline.Minimum 3 years of relevant experience\xa0.Preferably with relevant experience working in the Front End Semiconductor industry.Confident and able to deliver or facilitate stand-up training, ACLP certified would be an added advantage.Excellent organizational skills, high attention to quality, detail and accuracy, combined with the ability to manage multiple high priority tasks\xa0.Preferably with Learning and Organizational Development experience.Excellent communication skills (interpersonal, oral and written).Ability to collaborate independently and effectively with all stakeholders.Proactive, enthusiastic, resourceful and innovative approach to work.Personal commitment to improving your own knowledge and skills and a passion for continuous learning and development.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Training & Dev.', 'Registration No.': '198703584K', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '2 days', 'Industry': 'Semiconductor/Wafer Fabrication', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Sports (e.g. Gym), Parking, Vision, Business (e.g. Shirts), Mixed of shift and regular hours'}, {'Company Overview': 'GlobalFoundries\u202fis a leading full-service semiconductor foundry providing a unique combination of design, development, and fabrication services to some of the world’s most inspired technology companies. With a global manufacturing footprint spanning three continents, GlobalFoundries makes possible the technologies and systems that transform industries and give customers the power to shape their markets. For more information, visit\u202fwww.gf.com.\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/operations-training-development-senior-engineer-10101759?jobId=jobstreet-sg-job-10101759§ionRank=676&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
About Globalfoundries
[{'position': 'Research Associate, (Computer Science/Electrical Engineering) (R00007741)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Develop data analytics framework for a data centre deployed in tropical environment.Analyze data collected from various sensors and other indicators from the data center.', 'Job Requirements:': '\u200bMaster’s degree in Computer Science, Electrical Engineering, or related disciplines.Strong research experience.Good track record of publications.Good teamwork and collaboration skills.Research background in optimization and/or game theory.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-electrical-engineering-r00007741-10073176?jobId=jobstreet-sg-job-10073176§ionRank=677&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Bioinformatics Specialist, Laboratory of Systems Biology & Data Analytics, GIS'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Bioinformatics Specialist, Laboratory of Systems Biology & Data Analytics, GIS': '', 'Bioinformatics Specialists: Machine Learning and Genome Data Analytics (Genome Institute of Singapore)': '', 'Requirements': 'Bachelor’s or Master’s degree in Bioinformatics, Computational Biology, Data Science, or a related field.High proficiency in scripting language (Perl, Python and statistical languages such as R, particularly in the use of packages such as Bioconducter or Biopython).Additional programming skills in Java or C++ will be useful and candidate should be experienced working in Unix environments with computing clusters/servers.A strong background and course work in statistics, computer science and data science is preferable.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/bioinformatics-specialist-laboratory-of-systems-biology-data-analytics-gis-10125932?jobId=jobstreet-sg-job-10125932§ionRank=678&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Bioinformatics Specialist, Laboratory of Systems Biology & Data Analytics, GIS
[{'position': 'Research Engineer (computer vision and deep learning)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-computer-vision-and-deep-learning-10128600?jobId=jobstreet-sg-job-10128600§ionRank=679&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
[{'position': 'Senior / Executive (Planning & Analysis)'}, {'company_name': 'National Cancer Centre Singapore Pte Ltd'}, {'small_section': ['Outram', 'Posted on 2-Nov-22']}, {'About Us': '', 'About the Role': '', 'Key Responsibilities': 'Work with internal and external stakeholders to develop service work plans and monitor progress of various cancer service lines projects.Develop the ability to conduct environmental and data analysis to identify new strategic focus areas and formulate operational strategies.Facilitate and provide secretariat support to workgroup meetings such as note-taking, preparation of presentation and meeting materials.Participate in department initiatives and improvement projects, where required.', 'Job Requirements': 'Good written and verbal communication skills.Proactive team player with the ability to liaise with stakeholders at all levels.Ability to perform basic data analytics and work independently.Proficient in Microsoft Office.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Others, Others', 'Registration No.': '199801562Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Uniform and Non-Uniform, Others', 'Specific Location': 'Outram'}, {'Company Overview': '\n\tThe National Cancer Centre Singapore (NCCS) has evolved over the past 20 years to become one of the leading regional centres for cancer treatment and research. It has pioneered the one-stop multi-disciplinary approach to cancer treatment and is now home to oncologists, surgeons and researchers, dedicated to the care and treatment of a growing number of cancer patients.\n\tToday, NCCS see close to 65 per cent of the public sector oncology cases in Singapore. To deliver\xa0the latest cancer care and treatment, clinicians work closely with researchers who conduct robust cutting-edge clinical and translational research which has received international recognition.\xa0NCCS strives to be a global leading cancer centre, and shares its expertise and knowledge by training the next generation of medical professionals.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-executive-planning-analysis-10126825?jobId=jobstreet-sg-job-10126825§ionRank=680&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
About Us
[{'position': 'Research Scientist (Communications & Networks), I2R'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-communications-networks-i2r-10131730?jobId=jobstreet-sg-job-10131730§ionRank=681&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
[{'position': 'Research Asst., - (Bioinformatics Support), [R00005704]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Day-to-day operation of the genome sequencing laboratory’s IT infrastructure.Providing technical support, which includes managing instrument’s raw data and subsequent post-processing, configuring and maintaining sequencing instruments, supporting the wet-lab team, and troubleshooting technical issues.Providing analytical support, which includes benchmarking new methods/protocols or bioinformatics tools, providing technical assessment on new advancements in genomics, and providing data analysis recommendations to other bioinformatics team members.', 'Job Requirements:': 'Bachelor’s degree with minimum 3 years of experience in a bioinformatics role with relevant technical, user support, or project experience.Demonstrated hands-on experience in the management and handling of next-gen sequencing instrument data (Illumina, Oxford Nanopore, and/or PacBio) and subsequent data processing.Strong understanding of genomics and bioinformatic concepts needed to support the analysis of next-gen sequencing data.Demonstrated hands-on experience in bioinformatics data analysis, e.g., sequence alignment, genome assembly, metagenomics analysis.Strong understanding of basic IT infrastructure knowledge, e.g., operating system, networking, data storage.Competence in R, Perl, Python or other scripting language appropriate for bioinformatic analyses.Experience in using high-performance computing is a plus.Experience in wet-lab molecular biology techniques is a plus.Strong project management skills.Strong analytical skills and meticulous attitude.Able to work independently or in a team with minimal supervision.Good communication, writing and presentation skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-asst.-bioinformatics-support-%5Br00005704%5D-10076044?jobId=jobstreet-sg-job-10076044§ionRank=682&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Scientist (Strategic Research Initiative), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Qualifications required:': 'PhD in Chemistry, or Materials..Strong interests in research and development work..Demonstrated research and/or development capability..Knowledge and experience on subjects below: air-sensitive organic synthesis protocols; solvothermal synthesis and diffusion techniques for single-crystal growth; powder and single-crystal X-ray diffraction techniques, framework materials (MOF and COFs) design and synthesis.\xa0.Electrocatalyst characterization and optimization (e.g., HER, ORR, CO2\xa0reduction)..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-strategic-research-initiative-imre-10128507?jobId=jobstreet-sg-job-10128507§ionRank=683&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Qualifications required:
[{'position': 'Head of Department (Clinical Research)'}, {'company_name': 'SPD Scientific Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '199401685W', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '12 days', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts), Team Bonding Activities, Fruit Day, Annual Dinner'}, {'Company Overview': '\n\n\t\tOur Company enables the industrial, R&D and healthcare professionals to make an impact in improving lives by aiding them in their research and testing processes with our products and services. This is just one of the many ways "We impact lives".\n\n\t\tOne of our business entities - SPD Scientific Pte Ltd\xa0- a leading distributor of top-notch laboratory consumables, reagents, biomedical and laboratory equipment and diagnostic products, offers myriad benefits to customers in varying industries, such as F&B, pharmaceutical, academic and government research institutions, and healthcare.\n\n\t\tExcellence through people. Shaping the future together. Join our team today in empowering communities and impacting lives.\n\n\t\thttp://www.biomediaholdings.com/\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/head-of-department-clinical-research-10014477?jobId=jobstreet-sg-job-10014477§ionRank=684&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
[{'position': 'SVP / VP, Delivery Lead (Digital Banking), Group Consumer Banking and Big Data Analytics Technology, Technology & Operat - (WD45680)'}, {'company_name': 'DBS Bank Limited'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities': 'Work across various business and technology functions to consolidate and track digital operating metrics, measured against goals. Produce highly summarised monthly executive reports by comparing historical and present data to influence/drive the technology strategy, executive decisions, and future technology roadmaps..Foster a culture of continuous improvement across teams, leveraging matrix organization..Work with teams across various reporting units to drive digital agenda and track progresses..Simplify complex issues and summarise them into executive level & business terms..Anticipate issues to plan actions and preventions, ability to identify and recognise the root causes of problems, apply creative problem-solving, and own/drive improvements..Improve operating processes, measure & track productivity, and coordinate organisational procedures for optimised efficiency..Foster collaborative partnership across functional teams,\xa0business/operation/technology\xa0teams, and remote teams..Develop strong partnership, build credibility, open & trusted relationship, and rapport with senior executives, including technical & non-technical members across business, operation, and technology teams..Drive and own issues that have the impact to digital channels regardless of the root causes and/or the perceived ownerships..Partner across technology units to drive technical solutions and develop/deliver them to meet the prioritised business initiatives..Minimum 15 years of IT experience, with 10 years of experience in leadership positions and managing large cross-functional teams..Proven effectiveness in driving complex multi-stakeholder delivery, cross-team programs, and risk\xa0prevention/management\xa0in a fast-paced environment..Highly assertive with a strong ability to influence across all levels based on quantifiable metrics/data and justifiable rationales. Ability to use data and metrics to back up assumptions, evaluate outcomes, and challenge conventional practices..A transformative leader with solid understanding of agile/scrum methodologies, proven experiences in transforming large established traditional non-agile organization into agile way of working..Strong communication and interpersonal skills. Ability to speak to technical-level staff and summarise communications for business stakeholders and executives..Proven competency in strategic leadership, executive communication and influence, organisational agility, cross-team collaboration, drive for results, and written & verbal communications..Demonstrated leadership abilities, effective in matrix organisational management, leading and motivate team, and team building..Strong organisational skills, the ability to perform under pressure and management of multiple priorities with competing demands for resources..Highly effective in managing and tracking risk and financial implications of IT cost allocations, vendor contracts & contract negotiations, and resource/project budgets..Solid engineering skills with the ability to use technology and automation to drive solutions and deliver outcomes..', 'Apply Now\u200b': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '196800306E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '26 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Business (e.g. Shirts)'}, {'Company Overview': '\n\tDBS is a leading financial services group in Asia, with over 280 branches across 18 markets. Headquartered and listed in Singapore, DBS has a growing presence in the three key Asian axes of growth: Greater China, Southeast Asia and South Asia. The bank\'s "AA-" and "Aa1" credit ratings are among the highest in the world.\n\t\n\t\tDBS is at the forefront of leveraging digital technology to shape the future of banking, and has been named “World’s Best Digital Bank” by Euromoney in 2016 and 2018. The bank has also been recognised for its leadership in the region, having been named “Asia’s Best Bank” by several publications including The Banker, Global Finance, IFR Asia and Euromoney since 2012. In addition, the bank has been named “Safest Bank in Asia” by Global Finance for nine consecutive years from 2009 to 2017.\n\n\t\tDBS provides a full range of services in consumer, SME and corporate banking. As a bank born and bred in Asia, DBS understands the intricacies of doing business in the region’s most dynamic markets. DBS is committed to building lasting relationships with customers, and positively impacting communities through supporting social enterprises, as it banks the Asian way. It has also established a SGD 50 million foundation to strengthen its corporate social responsibility efforts in Singapore and across Asia.\n\n\t\tWith its extensive network of operations in Asia and emphasis on engaging and empowering its staff, DBS presents exciting career opportunities. The bank acknowledges the passion, commitment and can-do spirit in all of its 26,000 staff, representing over 40 nationalities.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/svp-vp-delivery-lead-digital-banking-group-consumer-banking-and-big-data-analytics-technology-technology-operat-wd45680-10078995?jobId=jobstreet-sg-job-10078995§ionRank=686&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Assistant - (Computer Science/Engineering/Electrical), - (R00008286)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Development of graph-based reasoning networks for facial landmark detection.Development of spatial temporal graph-based reasoning network to improve the accuracy of video facial landmark detection.Development of stabilization methods for video facial landmark detection.Development of graph neural network theory.Development of sequence modeling theory.Development of deep learning methods and theory.Development of computer vision methods\u200b.', 'Job Requirements:': '\u200bBachelor degree or above in Computer Science/Engineering, or Electrical/Electronic Engineering.Strong mathematical background and related project experience.Top-tier AI venue publications are very much preferred.Minimum 2 years of related work experience.Deep understanding of the theory of Machine Learning, Deep Learning, Computer Vision.Experience in at least one Deep Learning framework such as Tensorflow, Pytorch and Programming Languages such as Python, Matlab, R and/or C/C++.Demonstrated project experience related to graph-based reasoning and facial landmark detection will be an advantage.Good written and oral communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-engineering-electrical-r00008286-10075989?jobId=jobstreet-sg-job-10075989§ionRank=687&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Data Scientist #Worknow #UrgentHire'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Senior Data Scientist': '', 'Overview': "Participate on a team\xa0to\xa0apply\xa0scientific method\xa0to\xa0find solutions\xa0to\xa0real business problems..Perform data analysis, feature engineering\xa0and\xa0advanced methods\xa0to\xa0prepare\xa0and\xa0develop decisions\xa0from\xa0data..Leverage simple\xa0to\xa0advanced data techniques\xa0to\xa0support\xa0the\xa0team\xa0to\xa0deliver data analytic products for\xa0the\xa0firm..Performs analytics\xa0in\xa0support\xa0of\xa0the\xa0identification\xa0and\xa0understanding observed business outcomes..Collaborates with others\xa0to\xa0deliver on hypothesis testing\xa0and\xa0developing\xa0the\xa0mathematics\xa0to\xa0describe\xa0the\xa0business opportunity..Communicates effectively with analytics staff..Develops analytics, prepares\xa0and\xa0delivers both informational\xa0and\xa0decision-seeking presentations..Stays abreast\xa0of\xa0organization\xa0and\xa0management changes\xa0and\xa0has\xa0in-depth knowledge\xa0of\xa0company practices relevant\xa0to\xa0data science products..Maintains knowledge\xa0of\xa0company's total computing\xa0environment\xa0and\xa0planned changes\xa0in\xa0order\xa0to\xa0develop meaningful data science products..Contributes\xa0to\xa0the\xa0achievement\xa0of\xa0team objectives.", 'Qualifications:': "Bachelor's\xa0degree\xa0in\xa0a related discipline\xa0or\xa0at\xa0least 5\xa0years\xa0of\xa0equivalent\xa0work\xa0experience required.1-3\xa0years\xa0of\xa0related experience required;.Experience\xa0in\xa0the\xa0securities\xa0or\xa0financial services industry\xa0is\xa0a plus\xa0or\xa0participation\xa0in\xa0Technology Leadership..", 'Employer Description:': '', 'EEO Statement:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-scientist-worknow-urgenthire-10145300?jobId=jobstreet-sg-job-10145300§ionRank=688&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Senior Data Scientist
[{'position': 'Research Fellow, [Computer Science/Mathematics] - (R00007183)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:\xa0': 'Conduct independent research in the field of federated learning, focusing on incentive mechanism design.Help supervise PhD, master and undergraduate students, and R&D staff.Help with federated learning technical platform design and development.Help with collaboration with existing industry partners.', 'Job Requirements:\xa0': 'PhD degree in Computer Science/Engineering, Electrical/Electronic Engineering, Mathematics or other related disciplines from a reputable university.Good publication track record is a must.Previous research experience in explainable AI related fields preferred.Previous research experience in the field of federated learning will be advantageous.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-%5Bcomputer-science-mathematics%5D-r00007183-10072429?jobId=jobstreet-sg-job-10072429§ionRank=689&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Specialist, Data Scientist #WorkNow #Seekbetter'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Senior Specialist, Data Scientist': '', 'Overview': '', 'Overview\xa0of\xa0the\xa0role:': '', 'Job\xa0Role:': "Defines, develops, maintains\xa0and\xa0delivers strategic data science products that demonstrate\xa0the\xa0value\xa0and\xa0effectiveness\xa0of\xa0the\xa0organization..Will be responsible for\xa0the\xa0leadership\xa0and\xa0direction\xa0of\xa0the\xa0projects\xa0to\xa0develop analytic products..Develop\xa0and\xa0communicate insights leveraging\xa0the\xa0scientific method. Roles may specialize into 3 domain specialties : model science, feature science\xa0and\xa0Insight science capabilities..Accountable for developing\xa0and\xa0guiding more junior members\xa0and\xa0communicating findings, approaches\xa0and\xa0insights\xa0from\xa0data products..Responsible for guiding own\xa0work\xa0for deployment\xa0and\xa0support..Leads\xa0and\xa0partners with others\xa0to\xa0deliver meaningful insights in complex business situations..Establishes relationships\xa0to\xa0obtain data\xa0and\xa0subject knowledge needed\xa0to\xa0support advanced analytics..Conducts studies\xa0to\xa0provide additional facts needed\xa0to\xa0make informed decisions with regard\xa0to\xa0organizational\xa0and\xa0functional effectiveness with data decisioning..Develops consultative partnerships with internal teams\xa0to\xa0understand their strategic objectives, key performance indicators and reporting requirements..Extracts business insights to guide direction\xa0of\xa0learning activities\xa0and\xa0drive organizational efficiencies, effectiveness\xa0and\xa0outcomes..Maintains knowledge\xa0of\xa0company's total computing\xa0environment\xa0and\xa0planned changes\xa0in\xa0order\xa0to\xa0develop meaningful data science products..Collaborates/Supervises leaders/Individuals\xa0to\xa0deliver on complex projects aligned with organizational strategies\xa0and\xa0business priorities. Provides training in technical tools\xa0and\xa0skills, as well as specific applications\xa0and\xa0their business functions\xa0to\xa0maximize their contribution..Grow\xa0and\xa0develop skills across\xa0the\xa03 domain specialties: model science, feature science\xa0and\xa0Insight science capabilities..Stressing expertise in\xa0the\xa0core functional areas: Computer Programming, Math & Analytic Methodology, Distributed computing\xa0and\xa0communications\xa0of\xa0complex results..Contributes\xa0to\xa0the\xa0achievement\xa0of\xa0area objectives.", 'Skills:': "Senior finance professional in quantitative discipline with expertise in machine-learning..Proven track record\xa0of\xa0applying machine-\xa0and\xa0deep-learning frameworks\xa0to\xa0practical business challenges in capital markets..Excellent knowledge\xa0of\xa0capital markets, products\xa0and\xa0concepts with a focus on fixed income products,\xa0money\xa0markets,\xa0and\xa0quantitative methods..Fluency\xa0in\xa0Python, SQL, Git. Proficiency\xa0in\xa0deep learning frameworks like tensorflow / keras..Familiarity with Google Cloud ecosystem, Bloomberg ecosystem, QuantLib\xa0are\xa0a plus..Team player, innovator, out\xa0of\xa0the\xa0box thinker..Master's\xa0degree\xa0or\xa0PhD (Computer Science, Math, Physics, Engineering).At\xa0least 5\xa0years\xa0of\xa0relevant\xa0work\xa0experience.Applied Machine Learning experience - modeling\xa0and\xa0implementation.Thorough understanding\xa0of\xa0various statistical\xa0and\xa0machine learning algorithms.Proficient\xa0in\xa0Python with open source libraries such as TensorFlow\xa0and\xa0data engineering pipelines such as Apache Spark.Excellent analytical\xa0and\xa0big-data skills.Academic/Research background, a plus.Previous experience\xa0at\xa0next-gen analytics\xa0or\xa0big-data fintech companies strongly preferred.", 'Qualification:': '', 'Employer Description:': '', 'EEO Statement:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-specialist-data-scientist-worknow-seekbetter-10145055?jobId=jobstreet-sg-job-10145055§ionRank=690&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing'}]
Senior Specialist, Data Scientist
[{'position': 'First VP, Development Manager (Real-Time / Payment Data Services), Group Technology #WorkNow'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Technology and Operations ': '', 'Job Responsibilities': "Be responsible for end-to-end software development from pre-project initiation, functional specifications, design and development, implementation, testing and support.Drive engineering excellence in the team including design patterns, unit and integration testing, debugging and performance tuning and ensuring data protection & security by design.Ensure code quality during development and automate the CI/CD pipeline with quality checks using tools like Sonar cube, Veracode etc..Ensure the necessary infrastructure and tools setup that enables delivery of software to various environments.Ensure conformance to non-functional requirements and metrics like latency, response time, throughput, fault tolerance of systems.Be accountable as chapter lead (SAFe Agile) for the application modules and lead the development of product roadmap across programs..Be accountable for on-time delivery of all documentation, design, build, testing, and deployment according to the work breakdown structures..Partner with business stakeholders to understand business requirements and provide consultation on solution and technology.\xa0.Manage or lead a team of developers to implement solution that meet business requirements and are in alignment with organization's business objectives.\xa0.Perform as a hands-on manager to guide team on functional and technical issues.Hire and groom team members ensuring high performance and high quality software delivery.Work with production support teams as required to support production activities, including production migrations, environment migration activities..Escalate critical technical issues and potential problems as needed to cross functional teams to address any related issues to ensure deadlines are met..", 'Job Requirements': "Degree in Computer Science or related discipline.\xa0.At least 15 years of experience in application development and maintenance with full software development life cycle experience..Strong delivery and hands-on experience with building solutions using Java, Microservices, Apache Kafka, NiFi, Spark and associated technologies..Good knowledge on banking domain preferably on Payments and Real-Time data analytics..Strong delivery and project management experience in implementing regulatory reporting system in order to comply with regulators in Asia region..Good interpersonal and communication skills..Fast learner with attention to details and proactive in providing solutions.\xa0.Works on strategies, organizes and plans to achieve balanced outcomes through sound judgement and analysis of situations..Focus on collective/ team work by utilizing diverse talents and personalities in a constructive manner..Manages day to day risk and delivers quality work in an effective / optimal manner\xa0.Able to identify the team and individual's strengths and development areas and steer / enable their growth and development in the right direction..", 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '15 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/first-vp-development-manager-real-time-payment-data-services-group-technology-worknow-10101497?jobId=jobstreet-sg-job-10101497§ionRank=692&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Data Scientist, E-Commerce Risk Control'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..Solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-e-commerce-risk-control-10132703?jobId=jobstreet-sg-job-10132703§ionRank=693&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Asst. Professor, (School of Computer Science and Engineering) (R00009553)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Information Systems and Analytics.Computer Security.Systems (including Computer Architecture, High-Performance Computing, and Real-time Systems).Algorithms and Theory.Programming Languages and Software Engineering.Machine Learning.Graphics and Interactive Computing (including Human-Computer Interaction and Visualization).Conduct high-quality innovative research in terms of publishing top-tier papers, securing competitive research grants, supervising research personnel..Conduct competent undergraduate and graduate level teaching, including academic supervision of undergraduate and graduate students and projects..Undertake responsibly assigned administrative services in the school and university..\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/asst.-professor-school-of-computer-science-and-engineering-r00009553-10071185?jobId=jobstreet-sg-job-10071185§ionRank=694&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Research Fellow (Mathematical Modelling)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '4 years', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-fellow-mathematical-modelling-10099762?jobId=jobstreet-sg-job-10099762§ionRank=697&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
[{'position': 'Manager, Data Science (R00010964)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 1 hour ago']}, {'Key responsibilities:': 'Engage business stakeholders to identify, design, and implement analytics/data science projects, including problem scoping, use case formulation, data sourcing, development, and maintenance of analytical models..Support the development of NTU’s data strategy and in-house analytics capabilities..Provide guidance to business units on the application of analytics/data science to help drive business initiatives e.g., improving the students’ journey and University operations..Conduct data-driven analysis to drive process improvements or draw out actionable insights, including designing and building data visualisation to support management decision making..Apply analytical techniques such as data mining, statistical analysis, machine learning etc, and build predictive models to address business challenges..Work closely with relevant teams to productionize analytical models, including tracking and improving its performance..', 'Requirements:': 'Minimally 3 years of in-depth experience in implementing end-to-end analytics/data science solutions..Proficient in analytical and data visualisation tools such as Qilk Sense, Power BI, R, Python, SQL etc..Ability to work collaboratively across teams and quickly breakdown problems and find innovative solutions..Experience with analytical modelling, predictive analytics, AI and machine learning would be an added advantage..Experience in DevOps or DataOps would be an added advantage..Degree in Mathematics, Statistics, Operations Research, Computer Science or other related discipline..Specialisation in Data Analytics or Data Science preferred..Ability to deploy solutions in a cloud environment..Ability to implement Analytics/Data Science solutions..Ability to communicate data-driven findings and ideas to technical and non-technical stakeholders..Good communication, written and presentation skills..Good analytical, problem solving and critical thinking skills and meticulous attitude..Ability to work independently or in a team with minimal supervision..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-data-science-r00010964-10148022?jobId=jobstreet-sg-job-10148022§ionRank=698&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Key responsibilities:
[{'position': 'Fabrication Scientist (National Quantum Fabless Foundry), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'The minimum qualification and experience for this position are as follows:': 'A PhD degree in experimental physics / material science / engineering.A minimum of 3 year experience in micro- and nano- fabrication\xa0\xa0.Hands on experience with fabrication equipment like photo-lithography, e-beam lithography, PVD, CVD, RIE, ALD etc..Good knowledge about materials as determined from past successful project experience will be essential.Hands on experience with characterization equipment like probe stations, XRD, AFM, EBM.', 'In addition, preference will be given to those having experience in:': 'Vast knowledge in materials properties\xa0as determined from past project experience will be essential.Extensive experience in fabrication of quantum devices / qubits.Fabrication of micro-structured ion trap.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/fabrication-scientist-national-quantum-fabless-foundry-imre-10125299?jobId=jobstreet-sg-job-10125299§ionRank=699&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
The minimum qualification and experience for this position are as follows:
[{'position': 'Data Engineer'}, {'company_name': 'Xtremax Pte Ltd'}, {'small_section': ['Singapore', 'Posted 44 minutes ago']}, {'Roles & Responsibilities': '', 'Job Overview': '', 'Job Responsibilities:': 'Integrates\xa0and\xa0collates data silos\xa0in\xa0a manner which\xa0is\xa0both scalable\xa0and\xa0compliant.Collaborates with Project Manager, Developers\xa0and\xa0Infrastructure team\xa0to\xa0build scalable data-driven products.Works closely with fellow developers through pair programming\xa0and\xa0code review process..Drives enterprise data foundation requirements\xa0of\xa0Data Warehousing, Data Lake.Acquires, stores, governs\xa0and\xa0processes large datasets\xa0of\xa0structured/unstructured data.Identifies\xa0and\xa0implements\xa0the\xa0right\xa0architecture components for specific tasks.Monitors\xa0and\xa0optimises infrastructure\xa0and\xa0pipeline.Implements\xa0and\xa0improves ETL / ELT / Streaming big data pipelines.', 'Requirements:': 'Motivated\xa0and\xa0meticulous individual who thrives under pressure\xa0and\xa0enjoy\xa0working\xa0in\xa0a fast-paced dynamic\xa0environment\xa0and\xa0industry..Strong\xa0communication with\xa0good\xa0interpersonal skills\xa0and\xa0is\xa0an independent\xa0and\xa0effective manager..Possess a\xa0diploma/degree\xa0in\xa0information management, computer science, or related major..Good\xa0knowledge\xa0of\xa0big data technology landscape and concepts related\xa0to\xa0distributed storage\xa0and\xa0computing..Fluent\xa0in\xa0both complex SQL query performance tuning\xa0and\xa0database performance tuning..Experience with batch\xa0and\xa0ETL jobs\xa0to\xa0ingest\xa0and\xa0process data..Experience with Data Warehouses such as Redshift, BigQuery, Snowflake, etc..Experience with Cloud environments such as AWS\xa0and/or\xa0Azure..Experience with other NoSQL databases such as Elasticsearch, DynamoDB, Cassandra, etc..Programming experience with SQL, Python, R, Scala..Passionate about technology\xa0and\xa0are\xa0always\xa0looking\xa0to\xa0improve\xa0yourself..Strong\xa0communication\xa0and\xa0problem-solving skills..Ability\xa0to\xa0understand business processes and systems and understand its impact on\xa0the\xa0data ingestion\xa0and\xa0transformation process..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200310257R', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Medical, Casual (e.g. T-shirts), Training & Development, 10am-7pm Monday - Friday'}, {'Company Overview': 'Established in 2003, Xtremax Pte Ltd is a multitalented web design and web development company. We are not only committed to develop interactive web design but also to focus on providing simple solutions to complex real word problems, using latest software technology. We excel in the areas of web design, system integration, content management system (CMS), SEO and SEM services (Search Engine Optimization and Search Engine Marketing).\nBesides working on customized Systems Integration projects, Xtremax develops web design and products for the commercial market. To date, Xtremax supports an e-marketing system (iMessage.to) and an expansive content management system (CMS) for companies, schools and government agencies defined within the web design. Xtremax has worked with several government agencies, private and listed companies and implemented many successful projects of web design and web development. We firmly believe in the win-win principle, and seek to collaborate with our clients to produce simple, effective solutions with high return on investment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10148197?jobId=jobstreet-sg-job-10148197§ionRank=700&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Roles & Responsibilities
[{'position': 'Senior/Research Officer (NSCRL)'}, {'company_name': 'National Neuroscience Institute'}, {'small_section': ['Singapore', 'SGD\xa03,500 - SGD\xa06,500', 'Posted on 3-Nov-22']}, {'Bioinformatics position\xa0': '', 'Responsibilities': '', 'Requirements:\xa0': []}, {'Career Level': 'Senior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '199801559D', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '29 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'The National Neuroscience Institute (NNI), Singapore is the national specialist centre and regional centre for clinical referrals\xa0for the management and treatment of the neurosciences, as well as for education and research conducted in the field. NNI offers over 20 subspecialties in neuroscience care and treats a broad range of illness affecting the brain, spine, nerves and muscles. Offering a comprehensive range of Neurology, Neurosurgery and Neuroradiology services using the latest technology and experience of our healthcare professionals, NNI is at the forefront of neuroscience care in Singapore and across the region.\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-officer-nscrl-10099700?jobId=jobstreet-sg-job-10099700§ionRank=701&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Bioinformatics position
[{'position': 'Project Officer, - (Genetics and Chemistry) - [R00009460]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 30-Oct-22']}, {'Job Responsibilities': 'Procurement and maintenance of lab inventory.Perform of bacterial genetic experiments to make genetic deletion and overexpression strains.Perform cloning, protein purification and analysis of enzymatic functions.', 'Job Requirements': 'Bachelor Degree in Chemistry and Biochemistry, must have at least one year of relevant research experience. Candidates with Master Degree in relevant field will be considered first.Has strong grasp of knowledge in organic chemistry, biochemistry and genetics.Able to perform molecular biology and genetic experiments independently, such as making gene knockout, overexpression etc.Able to perform protein biochemistry experiments including cloning, protein overexpression, and purification.Able to independently perform in vitro enzymatic kinetic measurement, including developing liquid-chromatography mass spectrometry-based assays.Demonstrate strong passion, self-motivation, and a hardworking attitude for basic research.A self-starter and in learning new skills and techniques.Strong communication, organizational and interpersonal skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-genetics-and-chemistry-%5Br00009460%5D-10070330?jobId=jobstreet-sg-job-10070330§ionRank=702&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow, ( Molecular Biology & Biomolecular Interaction) (R00010518)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Description:': 'Hands-on data collection for users in Biacore T200 instrument in BMI facility.Providing training and advice for users in other biophysical equipment in the BMI (protein-protein and protein-drug interactions).For the PPP, handling and conceptualizing some complex protein production projects for diverse customers. Hands-on operations of the PPP are currently handled by three staff.Liaise with users (internal and external) and contact vendors for repairs and other equipment-related issues.Attending to safety issues of individual laboratories.Provide a yearly budget for Core, BMI and PPP facilities.', 'Job Requirements:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-molecular-biology-biomolecular-interaction-r00010518-10077861?jobId=jobstreet-sg-job-10077861§ionRank=703&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Security Data Scientist, Creator Platform'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Responsibilities': 'Build account security rules and data mining models, to forecast, detect, respond and mitigate TikTok account security risks and incidents, which include and are not limited account take-over, account authentication/authorization leaks and account service abuse..Analyze business and security data, uncover evolving attacking motions, watch over vulnerabilities and identify opportunities for active and passive defense solutions..Collaborate and align with XFN stakeholders on quantitative security goals, promote data-driven security practices across ByteDance/TikTok community..Define account security measurements and operational metrics. Quantify, generalize and monitor account security reports and user feedbacks..', 'Qualifications': "Bachelor's degree in Statistics, Applied Mathematics, Computer Science or a related field..Solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Experience in one InfoSec domain: system/application security, integrity, risk and fraud..Fast business learning abilities and good team collaboration skills.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/security-data-scientist-creator-platform-10130725?jobId=jobstreet-sg-job-10130725§ionRank=704&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Principal Analytical Scientist'}, {'company_name': 'Good Job Creations (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa08,340 - SGD\xa011,670', 'Posted on 25-Oct-22']}, {}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200618166E', 'EA No.': '07C5771', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '7 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGood Job Creations Singapore (License Number: 07C5771) provides total HR solutions with core values of customer focus, teamwork, professionalism and contribution to the society and our clients. Our vision is to create opportunities for Asian talents in Singapore and across the region. For more information, visit us at www.goodjobcreations.com.sg\n\n\tGOOD JOB CREATIONS (SINGAPORE) PTE. LTD.\n\n\tEA License No.: 07C5771\n\tKimiya Shibazaki\n\tRegistration NO.: \u200bR1325719\n\n\tWe agree to protect all personal information and contact details sent to us via your resume according to the Personal Data Protection Act (PDPA) with effect from 2nd July 2014.\n\tAll information collected is strictly for the purpose of processing your job application and internal administrative use.\xa0\xa0\n\tBy sending your resume to us, you acknowledge your consent to the collection and use of your personal data for the above purposes only.\xa0\xa0\xa0\xa0\n\n\tOur Company’s Privacy Policy:\n\thttp://www.goodjobcreations.com.sg/en/privacy/\n\n\tDo not hesitate to contact our officer if you have further queries with regards to the Personal Data Protection Act.\n\tData Protection Officer: Mr. Kimiya Shibazaki\n\tContact: +65 6258 8051\n\n\t[*PDPA clause]\n\n\tYour data may be used by our affiliated companies under WILL Group Asia Pacific (https://willgroup.co.jp/en/index.html) for the sole purpose of recruitment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-analytical-scientist-10101853?jobId=jobstreet-sg-job-10101853§ionRank=705&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
[{'position': 'Research Associate, (Data Analyst and Machine Learning Specialist) - [R00008084] #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Able to develop software codes for autonomous simultaneous localization and mapping of moving equipment..Should be able to develop framework for multi accesses edge computing..Train machine learning and deep learning models on a computing cluster to perform visual recognition tasks such as segmentation, detection, self-supervised depth estimation and end-to-end control..Multi sensor fusion based software integration from physical system to virtual environment..Prepare reports and documentations for the research programs, and support data analysis..Test and validate developed autonomous codes against physical systems..Program development for sensor systems and dashboard visualization..Creating lab scale setups and fixtures in tune to vehicle level performance..Formulating process experimental plans both lab level and real field level..Running experiments and troubleshooting systems..Developing potential improvements to the health monitoring system and testing potential solutions..', 'Job Requirements:': 'Master’s degree in computer science engineering/Electronics Engineering. Related degree preferred. Related experience would be given high priority..Experience with signal processing..Strong python programming, software development best practices, debugging and profiling..Knowledge on at least one mainstream deep learning framework such as Pytorch , Tensorflow and CNN..Familiarity with data science tool kit such as Jupyter, pandas, Linux environment..Familiarity of AWS or Azure..Solid understanding of algorithms, linear algebra, machine learning, computer systems/architecture, neural network..Basic Knowledge with sensor system, interface, data conversion and software programming..Effective communication and report writing skills..Experience in use of applicable business software applications..Prior experience and knowledge in Data analysis and Machine learning algorithms development..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-analyst-and-machine-learning-specialist-%5Br00008084%5D-seekbetter-10142134?jobId=jobstreet-sg-job-10142134§ionRank=706&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow - (Geometry, Probability, and Deep Learning) (R00009869)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Responsibilities': 'Obtaining mathematical results in the area of Geometry, Probability, and Deep Learning.Designing, implementing, and testing algorithms.Engaging in scientific exchange with collaboration partners of the project.Guiding junior researchers in the team.Preparing reports, scientific papers, and presentations.Helping with academic self-administration.', 'Job Requirements': 'PhD in Mathematics or related areas.Experience in geometry, probability and/or deep learning..Some more specific research areas of particular interest are infinite-dimensional Riemannian or metric geometry, infinite-dimensional probability or stochastic analysis, statistical learning theory, coding theory, inverse problems, and harmonic analysis. Moreover, some applications of particular interest are mathematical finance and biomedical image or shape analysis..Good publication record.Good communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-geometry-probability-and-deep-learning-r00009869-10047411?jobId=jobstreet-sg-job-10047411§ionRank=707&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow - (Geometry, Probability, and Deep Learning) (R00009871)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Responsibilities': 'Obtaining mathematical results in the area of Geometry, Probability, and Deep Learning.Designing, implementing, and testing algorithms.Engaging in scientific exchange with collaboration partners of the project.Guiding junior researchers in the team.Preparing reports, scientific papers, and presentations.Helping with academic self-administration.', 'Job Requirements': 'PhD in Mathematics or related areas.Experience in geometry, probability and/or deep learning. Some more specific research areas of particular interest are infinite-dimensional Riemannian or metric geometry, infinite-dimensional probability or stochastic analysis, statistical learning theory, coding theory, inverse problems, and harmonic analysis. Moreover, some applications of particular interest are mathematical finance and biomedical image or shape analysis..Good publication record.Good communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-geometry-probability-and-deep-learning-r00009871-10047412?jobId=jobstreet-sg-job-10047412§ionRank=708&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate / (Artificial Intelligence) [R00008267] #LetsGetToWork'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.Help prepare the proposal and progress report.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': '', 'Coding Skills:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-artificial-intelligence-%5Br00008267%5D-letsgettowork-10072632?jobId=jobstreet-sg-job-10072632§ionRank=709&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Sr./Research Fellow, (Bio-Data Science) - [R00007165] #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 3-Nov-22']}, {'Job Responsibilities': '', 'Job Requirements': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-research-fellow-bio-data-science-%5Br00007165%5D-worknow-10128178?jobId=jobstreet-sg-job-10128178§ionRank=710&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Migration Consultant (SQL knowledge required)'}, {'company_name': 'Verlata Consulting Pte. Ltd.'}, {'small_section': ['Singapore', 'SGD\xa04,400 - SGD\xa05,600', 'Posted on 29-Oct-22']}, {'Background': 'Verlata is a growing professional services company, focusing on delivery outstanding results for our clients. We primarily focus on transitioning law firms and in-house legal teams from their legacy document store to cloud-based systems such as NetDocuments..We have 30+ team members across Singapore, Australia, New Zealand and the UK and are currently seeking a Data Migration Consultant to join our Singapore-based team..This will be the only migration role dedicated to document management migration in Singapore, supported by a capable team in Australia to assist with onboarding and training..This will be a full-time, permanent-based role in a remote working environment..In this exciting and versatile role, you will be responsible for successful end-to-end management of all things data and migrations for our document management implementation projects. Working closely with our project managers, configuration experts and trainers, you will be the key person in ensuring the integrity of the data as part of the migration piece of the project. You will be a key part of the team with a high level of autonomy and responsibility..The source and size of the data will vary project to project and will consistently provide fresh challenges and opportunities to solve new problems. Some projects may be wrapped up in a couple of months and others may run for over a year, often with a few projects to be managed in parallel..You may also assist with projects for other Verlata teams.\xa0.', 'Day-to-day activities include:\xa0': 'Conduct data analysis and migrations using our migration tools.Investigate and implement ways of improving the data migration process in conjunction with our other tech/migration team members in other regions.Meet with newly signed clients (with the project team) to gather requirements and kick off their project.Attend and conduct web-based and onsite meetings with clients as part of implementation engagements.Investigate advanced customer issues and co-ordinate resolution with the rest of our team.Email clients post-implementation migration reports\xa0.', 'Following skills are essential:': 'Self-motivated with the ability to work autonomously without supervision.Exceptional attention to detail, with the ability to notice discrepancies and inconsistencies.Intermediate Excel skills with experience with Power Query.Intermediate SQL skills.Think laterally about problems, come up with creative solutions, always looking for ways to improve processes and work more efficiently.Excellent verbal and written communication.Enjoy a challenge and always remain client focused\xa0.', 'Following skills and experience are desirable but not essential:\xa0': 'Understand legal firm processes.Software development experience\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201824836N', 'Company Size': '1 - 50 Employees', 'Industry': 'Consulting (IT, Science, Engineering & Technical)', 'Benefits & Others': 'Regular hours, Mondays - Fridays'}, {'Company Overview': 'Verlata are implementation, delivery and training specialists across Legal Practice Management and Document Management Systems for solution platforms such as CoreMatter, NetDocuments, Actionstep, Checkbox.ai and Litera'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-migration-consultant-sql-knowledge-required-10064348?jobId=jobstreet-sg-job-10064348§ionRank=711&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Background
[{'position': 'Data Scientist, - E-Commerce Risk Control #Urgent'}, {'company_name': 'BYTEDANCE PTE. LTD.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..At least 3 years with solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201923456H', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Vision, Regular hours, Mondays - Fridays, Casual & Business'}, {'Company Overview': "\n\n\t\tFounded in 2012, ByteDance's mission is to inspire creativity and enrich life. With a suite of more than a dozen products, including TikTok, Helo, and Resso, as well as platforms specific to the China market, including Toutiao, Douyin, and Xigua, ByteDance has made it easier and more fun for people to connect with, consume, and create content.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-e-commerce-risk-control-urgent-10126518?jobId=jobstreet-sg-job-10126518§ionRank=712&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Lead Software Engineer (Big Data Stack Admin) - (220001CP)'}, {'company_name': 'The Great Eastern Life Assurance Co Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Job Purpose': '', 'The Job / Responsibility': 'Responsible for implementation and ongoing administration of Platform infrastructure in a minimum of 15+ nodes environment..Takes care of the day-to-day running of big data clusters (including but not limiting to Hadoop and MariaDB dbases).Responsible for working closely with the database team, network team, BI team and application teams to make sure that all the big data applications are highly available (24x7) and performing as expected.\xa0.Responsible for capacity planning and estimating the requirements for lowering or increasing the capacity of the Hadoop/MariaDB cluster\xa0.Responsible for enabling different\xa0level\xa0of Hadoop/MariaDB security at ecosystem level.\xa0.Performance tuning of Hadoop clusters and Hadoop ecosystem.\xa0.Perform POCs of new capability in Hadoop/MariaDB Platform.Monitor and enhance Hadoop cluster jobs performance and capacity planning\xa0.Aligning with the systems engineering team to propose and deploy new hardware and software environments required for Hadoop and to expand existing environments.\xa0.Cluster maintenance as well as creation and removal of nodes using\xa0Ambari or others\xa0and CICD pipeline\xa0.Monitor (24x7) Hadoop/MariaDB cluster performance, connectivity and security\xa0.Manage and review Hadoop log files and enhance retention policy.\xa0.Handles performance tuning of Hadoop clusters and Hadoop MapReduce routines..File system management and monitoring.\xa0.Diligently teaming with the infrastructure, network, database, application and business intelligence teams to guarantee high data quality and availability\xa0.Collaboration with application teams to install operating system and updates, patches, version upgrades when required.\xa0.Backup and recovery tasks\xa0.Good understanding of OS concepts, process management and resource scheduling.\xa0.Basics of networking, CPU, memory and storage.\xa0.Good hold of shell scripting\xa0.Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..', 'Our Requirements': "Candidate Must have a bachelor's degree in Computer Science, Software Engineering, or a related field.10+ years in the software engineering profession, in which 5+ years of hands-on experience in Hadoop eco system..Must have 3+ years' experience owning multiple critical applications on big data platform with batch and real-time data pipelines..5+ years' experience as a Hadoop Admin and worked on more than one cluster with each cluster not limited to 15 Nodes.Must have experience on Hadoop Cluster setup from ground-up..Must have strong experience with design, development and analytical skills in handling both structured and unstructured data..Must have the ability to develop and maintain strong collaborative relationships at all levels across IT and Business Stakeholders..Must have the ability to prioritize multiple tasks and deal with urgent requests in a demanding environment..Excellent written and oral communication skills. Adept and presenting complex topics, influencing and executing with timely / actionable follow-through.Hands on knowledge on Elastic search, Kibana dashboards and log management mechanism..Good understanding of financial/insurance Data warehouse models..Ability to provide innovative ideas and see through implementation in HDFS, Spark, Hive, Kafka, Scala, Python technologies..Extensive experience working with data warehouses and big data platforms..Experience in building strong relationships with senior leaders will be preferable..Aptitude to acquire new skills as needed for the role.High level of integrity, takes accountability of work and good attitude over teamwork..Takes initiative to improve current state of things and adaptable to embrace new changes..", 'Characteristic we look for ...': "A trendsetter. You thrive in an intellectually challenging environment with leading edge technologies.\xa0.A team player. We over 'I'..A learner. You have an insatiable thirst for knowledge and greater understanding.\xa0.A pragmatist. Your goal is to create useful products, not build technology for technology's sake.\xa0.An empath. You understand what the customer needs and use that perspective to create the best user experience.\xa0.", 'About Great Eastern': '', 'To all recruitment agencies:': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '190800011G', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Insurance'}, {'Company Overview': '\n\tFounded in 1908, Great Eastern is a market leader and a well-established trusted brand in Singapore and Malaysia. With S$82.5 billion in assets and over 4 million policyholders, the Group also operates in Indonesia and Brunei and has a presence in China as well as a representative office in Myanmar.\n\n\tThe Great Eastern Life Assurance Company Limited and Great Eastern General Limited have been assigned the financial strength and counterparty credit ratings of "AA-" by Standard and Poor\'s since 2010, one of the highest among Asian life insurance companies.\n\n\tWe are a LIFE company and our purpose is to empower generations to live healthier and better so that they can live life to the fullest. Be it celebrating life’s simple moments or commemorating life’s major milestones, every day, in many ways, we inspire those around us to live great and celebrate life.\n\n\tPlease note that our career opportunities are only posted on our Career Website (http://grp.gelife.co/findacareer) and on our authorised job platforms which are specifically LinkedIn, JobStreet and eFinancialCareers. We do not initiate any unsolicited calls and all official emails from Great Eastern will be sent from email addresses ending with “@greateasternlife.com”. Should you receive any communications outside from these channels listed, please do not provide any personal information and do reach out to us at [email\xa0protected] or at 6248 2990 for us to assist you and confirm the legitimacy of the content.'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-software-engineer-big-data-stack-admin-220001cp-10103895?jobId=jobstreet-sg-job-10103895§ionRank=713&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Job Purpose
[{'position': 'Research Fellow (Machine Learning and Human-Robot Collaboration) #URGENT'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on im/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-robot-collaboration-urgent-10071639?jobId=jobstreet-sg-job-10071639§ionRank=715&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate, (Data Analyst and Machine Learning Specialist) - [R00008084]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Able to develop software codes for autonomous simultaneous localization and mapping of moving equipment..Should be able to develop framework for multi accesses edge computing..Train machine learning and deep learning models on a computing cluster to perform visual recognition tasks such as segmentation, detection, self-supervised depth estimation and end-to-end control..Multi sensor fusion based software integration from physical system to virtual environment..Prepare reports and documentations for the research programs, and support data analysis..Test and validate developed autonomous codes against physical systems..Program development for sensor systems and dashboard visualization..Creating lab scale setups and fixtures in tune to vehicle level performance..Formulating process experimental plans both lab level and real field level..Running experiments and troubleshooting systems..Developing potential improvements to the health monitoring system and testing potential solutions..', 'Job Requirements:': 'Master’s degree in computer science engineering/Electronics Engineering. Related degree preferred. Related experience would be given high priority..Experience with signal processing..Strong python programming, software development best practices, debugging and profiling..Knowledge on at least one mainstream deep learning framework such as Pytorch , Tensorflow and CNN..Familiarity with data science tool kit such as Jupyter, pandas, Linux environment..Familiarity of AWS or Azure..Solid understanding of algorithms, linear algebra, machine learning, computer systems/architecture, neural network..Basic Knowledge with sensor system, interface, data conversion and software programming..Effective communication and report writing skills..Experience in use of applicable business software applications..Prior experience and knowledge in Data analysis and Machine learning algorithms development..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-analyst-and-machine-learning-specialist-%5Br00008084%5D-10140131?jobId=jobstreet-sg-job-10140131§ionRank=716&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Manufacturing Compliance Engineer - (34026-JOB)'}, {'company_name': 'Illumina Singapore Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '200310311H', 'Company Size': '2001 - 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': '\n\tDo you want to make a difference? Illumina’s mission is to improve human health by unlocking the power of the genome. If that inspires you, let’s talk. We’ve built a culture fueled by innovation, collaboration and openness, and established ourselves as the global leader in DNA sequencing and array-based technologies. Our people and our technology change lives by driving advancements in life sciences, oncology, reproductive health, agriculture and other emerging markets. We are deeply passionate about what we do, because we know that our work has the power to improve lives.\n\n\tWe’re an established company with a track record of phenomenal growth. Our revenue grew from $10 million in 2002 to approximately $2.2 billion in 2015. Our growth isn’t just revenue, we’ve been hiring the best and the brightest. Perhaps that’s why MIT has ranked Illumina near the top of its World’s Smartest Companies list three years running, including #1 in 2014. If you thrive in a brilliant, fast-paced, and mission-driven environment, Illumina is the place for you – imagine the possibilities.'}, {'url': 'http://www.jobstreet.com.sg/en/job/manufacturing-compliance-engineer-34026-job-10068934?jobId=jobstreet-sg-job-10068934§ionRank=717&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
[{'position': 'Research Fellow - (Data Scientist-AI) #WorkNow-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities:\xa0': 'Develop and implement ML algorithms and tools to build machine learning and analytics platform..Contribute in AI/ML projects from design, data processing, development, implementation, documentation, validation and optimization..Explore new technologies for data implementation AI adoption..Develop visualization, dashboards and report formats according to project requirements..Generating IP/Patents and publish high quality papers in journal and conferences.', 'Job Requirements:\xa0': 'PhD in electrical/electronics/computer engineering or related fields..Masters and Bachelors hers may apply and will be considered for suitable job grades.At least 2-5 of relevant experience with machine learning algorithms, platforms and APIs.Strong foundation in mathematics, as well as familiarity with signal analysis and estimation..Programming skills in Python, R, C++, and Matlab.Strong background in handling data and programming.Independent analytical problem-solving skills\xa0\xa0.Highly motivated, independent and able to work as a team.Willingness and ability to develop new skills.Good communication, interpersonal and critical skill..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Professional Certificate/NiTEC', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-scientist-ai-worknow-jobsthatmatter-10136810?jobId=jobstreet-sg-job-10136810§ionRank=718&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist, - Global Payments #LetsGoToWork'}, {'company_name': 'BYTEDANCE PTE. LTD.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities': "Improve payment performance and drive business growth of Bytedance's core businesses, such as e-commerce, TikTok, and games with Data and AI..Responsible for data analysis and data mining of key indicators of Global Payments..Comprehensively analyze various factors affecting the growth of payment products, produce product feasible optimization plans based on the overall direction of the payment business..", 'Qualifications': 'Bachelor degree or above in Computer Science, Statistics, Mathematics or other related majors;.Strong interest in Data Analysis, Data Mining and Algorithm Intelligence;.Solid foundation of data structure and algorithms;.Strong data analysis and data mining capabilities;.Proficient in SQL + Python programming, familiar with C ++/Java/Golang is preferred..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201923456H', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Vision, Regular hours, Mondays - Fridays, Casual & Business'}, {'Company Overview': "\n\n\t\tFounded in 2012, ByteDance's mission is to inspire creativity and enrich life. With a suite of more than a dozen products, including TikTok, Helo, and Resso, as well as platforms specific to the China market, including Toutiao, Douyin, and Xigua, ByteDance has made it easier and more fun for people to connect with, consume, and create content.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-global-payments-letsgotowork-10126154?jobId=jobstreet-sg-job-10126154§ionRank=720&token=0~6be89f82-a724-49be-a0d5-b00b58c9803d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate (Ageing Studies/Data Science/Informatics/Psychology/Sociology) (R00005447)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Conduct secondary data analysis from multiple sources on identifying skill gaps.Prepare literature review on skills transfer, reskilling, upskilling, and lifelong learning.Contribute to research presentation, and writing of academic papers, grant proposals, management and technical reports.', 'Job Requirements': 'Master Degree from recognized University in the discipline of Ageing Studies, Data Science, Informatics, Psychology, Sociology or related fields.Experiences in writing and publishing academic papers.Familiar with research methodology and data analytic methods in behavioral and social sciences.Knowledge of statistics packages (e.g. SPSS, R, Python).Excellent communication and interpersonal skills.Ability to work independently and in a team with people of diverse skillsets and cultural background.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-ageing-studies-data-science-informatics-psychology-sociology-r00005447-10046573?jobId=jobstreet-sg-job-10046573§ionRank=722&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow (Computational Social Science), - (R00008453)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Responsibilities': 'Digital data collection (i.e., scraping).Conduct computational modeling to analyze large-scale datasets (including social media data).Project planning, research design and collection.Management of large-scale datasets.Prepare manuscripts for journal publication.', 'Job Requirements': 'Ph.D. in empirical social science (e.g., Psychology, Economics) or data science (e.g., Computer Science, Machine Learning) with research interests in computational social science.Experience with programming, text mining, social computing, machine learning, text analysis and computational modeling.Prior experience in working with social media data will be an advantage but is not required.Strong statistical skills.Experience in preparing academic reports and presentations.Strong interpersonal, written and verbal communication skills.Excellent organizational skills and able to work within given deadlines.Self-directed learner who effectively picks up relevant skills as needed.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computational-social-science-r00008453-10071818?jobId=jobstreet-sg-job-10071818§ionRank=723&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Scientist (AIPO)'}, {'company_name': 'Info-communications Media Development Authority (IMDA)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'What\xa0the\xa0role\xa0is': '', 'What\xa0you\xa0will\xa0be\xa0working\xa0on': 'Work with product owners, engineering teams, and industry partners throughout the product development lifecycle from concept, design, prototyping, acceptance testing, data curation, delivery, operationalisation, industry proliferation, to product end-of-life.Technical assessment on the maturity, viability, and suitability of AI research, technologies and trends that are relevant to the industry.Develop software components based on microservices-based architecture.Participate in agile secure software development processes and best practices, documentation of user requirements and software codes during the software development lifecycle.Propose, implement, and validate algorithms, ensuring functional and non-functional requirements such as transparency, fairness, scalability, security, integration complexity and operational costs.Write thought leadership articles, including blogs and papers, on AI.Transfer technology to industry partners..Technical engagement and collaboration with research institutes and institutes of higher learning.', 'What we\xa0are\xa0looking\xa0for': 'Postgraduate or Ph.D. Background in engineering, computer engineering, computer science, mathematics, statistics or equivalent.Strong technical knowledge in AI, specifically in Computer Vision (CV), Natural Language Processing (NLP), recommendation system and/or Synthetic AI.Good understanding of the latest research and technologies in AI for production, including deployment to mobile handsets and IOT devices preferred..Strong coding experience in programming languages such as Python, C++.Hands-on experience with one or more deep learning frameworks, e.g., TensorFlow, Torch.Team player with the ability to work in a cross functional team with excellent interpersonal skills.Strong communication skills, both verbal and written, as well as strong presentation and engagement skills.Strong stakeholder management skills preferred..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0004K', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Miscellaneous allowance, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\t\tThe IMDA develops and regulates the converging infocomm and media sectors in a holistic way, creating a dynamic and exciting sector filled with opportunities for growth, through an emphasis on talent, research, innovation and enterprise.\n\n\t\tAs a statutory board in the Singapore government, it seeks to deepen regulatory capabilities for a converged infocomm media sector, safeguarding the interests of consumers and fostering pro-enterprise regulations.\n\n\t\tWith more pervasive use of data, IMDA will also continue to promote and regulate data protection in Singapore through the Personal Data Protection Commission, which will be part of the IMDA. This will ensure that public confidence in the private sector’s use of personal data is safeguarded.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-aipo-10127233?jobId=jobstreet-sg-job-10127233§ionRank=724&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
What the role is
[{'position': 'Research Fellow (Chen Jinmiao Lab), SIgN'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Description': '', 'Job Requirements': 'PhD in any of the following fields: computational biology, bioinformatics, biostatistics, computer science/engineering, mathematics, data science, statistics or related fields..Programming skills using any of the following: R/Python/Perl/shell script/C++/Matlab/Java or similar.Experience in analysis of single-cell omics, spatial omics, or NGS data.Experience/ability to develop new computational methods/databases.Background in AI, deep learning, machine learning, data mining, image processing & computer vision.Database design, implementation and management, web-portal development.Self-motivated with drive to succeed and engage in critical thinking.Able to work under supervision and autonomously/independently.Good team player, with good interpersonal skills.Interest or background in biology or willing to learn.Good work ethics and attitude.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-chen-jinmiao-lab-sign-10128374?jobId=jobstreet-sg-job-10128374§ionRank=725&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Associate / [Microbiology] - [LKCMedicine] #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities': "Successful candidates will have the opportunity to work with a multidisciplinary team of investigators in LKCMedicine, clinical and industry partners and will be given comprehensive on-the-job training.\xa0.The candidate is expected to participate in the Group's basic and translational human health research..Other duties include procurement and safety to support laboratory research needs..", 'Requirements': 'Candidates should preferably have/be A good BSc. or BTech-equivalent or higher in Lifesciences, Biology, or related fields..Depending on qualification, candidates with a PhD are encourd to apply for a postdoctoral position..Preferably at least 2 of experience in a research laboratory, but recent s with the right aptitude will be considered..Relevant experience in microbiology techniques. Skills in biochemical and molecular based assays..Ability to analyse and interpret large-scale data using Excel, R and/ or Python and pathway analyses tools.Prepared to undertake research administration tasks, including procurement, maintain laboratory SOPs, maintain instruments, etc..Background in lipids and small molecules will be an advant but not mandatory.A good sense of initiative and organization and ability to work in a team..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Singapore'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-%5Bmicrobiology%5D-%5Blkcmedicine%5D-worknow-10072715?jobId=jobstreet-sg-job-10072715§ionRank=726&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': '#Data Scientist - 22436757 #JobsThatMatter'}, {'company_name': 'Citibank N.A.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Background/context:': '', 'Key Responsibilities:': 'Identify valuable data sources and automate collection processes..Undertake preprocessing of structured and unstructured data..Analyze large amounts of information to discover trends and patterns..Build predictive models and machine-learning algorithms..Combine models through ensemble modeling..Present information using data visualization techniques..Propose solutions and strategies to business challenges..Collaborate with engineering and product development teams..The candidate needs to be able to present back the findings to the business in a business friendly manner.', 'Knowledge/Experience:': '', 'Essential': [], 'Desirable': [], 'Skills: (technical skills)': 'Experience working in a cloud environment with large data sets.', 'Qualifications: ': 'Master’s degree or Ph.D. in computer science, math, engineering, or a related quantitative field.Demonstrated leadership and project/program management skills.Certification from a recognized institution on one of data analytics, machine learning and deep learning.Consistently demonstrates clear and concise written and verbal communication.'}, {'Career Level': 'Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200309485K', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\n\t\tCiti is more than a global financial services company. It’s an engine for progress. Join us, and you’ll have the chance to get involved in progress in all its shapes and forms, right across the world. From the micro to the macro, from Australia to Zambia, the work we do has real positive impact. Wherever you are and whatever you do, progress starts here.\n\n\nMission: Citi's mission is to serve as a trusted partner to our clients by responsibly providing financial services that enable growth and economic progress. Our core activities are safeguarding assets, lending money, making payments and accessing the capital markets on behalf of our clients. We are Citi, the global bank – an institution connecting millions of people across hundreds of countries and cities.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-22436757-jobsthatmatter-10124873?jobId=jobstreet-sg-job-10124873§ionRank=727&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Job Background/context:
[{'position': 'Research Fellow, - (Data Scientist in Air Traffic Management), (R00010489) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities:\xa0': 'The Research Fellow shall work on subprojects to conduct research on advanced air traffic management concepts, for example but not limited to a novel Air Traffic Flow Management Concept..', 'Job Requirements:': 'PhD degree in Data Science, Air Traffic Management or relevant fields..Minimum of 4 years’ production experience with spatial and temporal data.Minimum of 4 years’ production experience in Python (these may be proven via portfolios or GitHub user page, or similar).Experience in managing own project plans, designing of experiments, delivering a research or development product to clients.Knowledge in the following computing skills is advantageous: Machine Learning; Big Data (distributed computing), relational databases.Experience in aviation in particular Air Traffic Management, Air Traffic Services, Air Traffic Control.Work on subprojects of a larger CONOPS study, to develop a plan, conduct experiments using simulators, analyse data, find insights/hypothesis, visualize data, liaise with the sponsor, deliver project reports..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-scientist-in-air-traffic-management-r00010489-seekbetter-10135633?jobId=jobstreet-sg-job-10135633§ionRank=728&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Part Time Lecturer, - [R00001119]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Qualifications': '', 'Teaching Hours': []}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/part-time-lecturer-%5Br00001119%5D-10071721?jobId=jobstreet-sg-job-10071721§ionRank=729&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Qualifications
[{'position': 'Sr. Principal Research Scientist Information Technology - [R00007762] #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Requirements:\xa0': "\u200bA PhD in IT, Computer Engineering, or any other relevant field.12 of experience after PhD , preferably in cybersecurity research or IoT system architecture, including at least 5 of project manment experience. Applicants with a master's and a minimum of 16 working experience will be considered.A proven track record of international publications in relevant fields.Familiar with IoT, virtualization and distributed systems.Experience in international research collaboration, security information and event manment (SIEM), malware analysis, machine learning, cyber systems (CPS), or security architectures/frameworks is a plus.Proficient in technical reporting/presentations, have good verbal communication skills and be ability to work independently and in a team to realize the proposed works."}, {'Career Level': 'Manager', 'Qualification': 'Professional Certificate/NiTEC', 'Years of Experience': '12 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Singapore'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-principal-research-scientist-information-technology-%5Br00007762%5D-worknow-10072502?jobId=jobstreet-sg-job-10072502§ionRank=730&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Job Requirements:
[{'position': 'Data Scientist Intern, - Growth*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with Data Engineers, Data Analysts, Product and other engineers to deliver features to drive the user growth of products..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;.Knowledge of statistical data analysis such as linear models, multivariate analysis, stochastic models, sampling methods..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth*-10120007?jobId=jobstreet-sg-job-10120007§ionRank=731&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist Intern, Growth #Urgent*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with Data Engineers, Data Analysts, Product and other engineers to deliver features to drive the user growth of products..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;.Knowledge of statistical data analysis such as linear models, multivariate analysis, stochastic models, sampling methods..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth-urgent*-10119449?jobId=jobstreet-sg-job-10119449§ionRank=733&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate (Data Analyst and Machine Learning Specialist) - [R00008084]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Key Responsibilities:': 'Able to develop software codes for autonomous simultaneous localization and mapping of moving equipment..Should be able to develop framework for multi accesses edge computing..Train machine learning and deep learning models on a computing cluster to perform visual recognition tasks such as segmentation, detection, self-supervised depth estimation and end-to-end control..Multi sensor fusion based software integration from physical system to virtual environment..Prepare reports and documentations for the research programs, and support data analysis..Test and validate developed autonomous codes against physical systems..Program development for sensor systems and dashboard visualization..Creating lab scale setups and fixtures in tune to vehicle level performance..Formulating process experimental plans both lab level and real field level..Running experiments and troubleshooting systems..Developing potential improvements to the health monitoring system and testing potential solutions..', 'Job Requirements:': 'Master’s degree in computer science engineering/Electronics Engineering. Related degree preferred. Related experience would be given high priority..Experience with signal processing..Strong python programming, software development best practices, debugging and profiling..Knowledge on at least one mainstream deep learning framework such as Pytorch , Tensorflow and CNN..Familiarity with data science tool kit such as Jupyter, pandas, Linux environment..Familiarity of AWS or Azure..Solid understanding of algorithms, linear algebra, machine learning, computer systems/architecture, neural network..Basic Knowledge with sensor system, interface, data conversion and software programming..Effective communication and report writing skills..Experience in use of applicable business software applications..Prior experience and knowledge in Data analysis and Machine learning algorithms development..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-analyst-and-machine-learning-specialist-%5Br00008084%5D-10138535?jobId=jobstreet-sg-job-10138535§ionRank=734&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': '2023 Securities Services Graduate Programme - Singapore'}, {'company_name': 'HSBC Limited'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Singapore': '', 'What you’ll do': '', 'Who you are': '', 'What you’ll learn': []}, {'Career Level': 'Entry Level', 'Qualification': 'Not Specified', 'Job Type': 'Internship', 'Job Specializations': 'Education/Training, Education', 'Registration No.': 'S16FC0010A', 'Company Size': 'More than 5000 Employees', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties)'}, {'Company Overview': '\n\nAbout HSBC\n\n\t\tAs one of the world’s leading international banks, HSBC was founded in 1865 and has two home markets - Hong Kong and London. The HSBC Group opened its first branch in Singapore in 1877.\xa0 HSBC Singapore provide personal, private, commercial and investment banking services including areas such as insurance, forfaiting, trusts, securities and capital markets.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/2023-securities-services-graduate-programme-singapore-10054164?jobId=jobstreet-sg-job-10054164§ionRank=735&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Singapore
[{'position': 'Scientist, Centre for Frontier AI Research, [IHPC]'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'JOB REQUIREMENTS': 'Adversarial attacks and defenses.Robustness to, and recovery from, data distribution shifts.Uncertainty quantification.PhD in a technical field with relevance to Resilient and Safe AI..Ability to conduct world-class research in AI as demonstrated through publications in top AI conferences and journals. For candidates with a related technical background looking to transition into AI, demonstrated research ability and expertise in a relevant area is expected..Good interpersonal skills; able to work well with others and in teams..Good communication skills..Expertise in core machine learning areas such as optimization and statistics is a plus..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-centre-for-frontier-ai-research-%5Bihpc%5D-10128277?jobId=jobstreet-sg-job-10128277§ionRank=736&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
JOB REQUIREMENTS
[{'position': 'Scientist (Quantum Technologies for Engineering) (Quantum Device -HEMT), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Main Responsibilities': 'Design and fabrication of HEMT devices..Develop process fabrication and etching recipes..Contribute to device characterization and measurements..Provide technical documentation and manuscript writing..Contribute to or lead in grant writing depending on level of experience..', 'Job Requirements': 'PhD degree in physics, applied physics, materials science, electrical-electronics engineering, or related fields..Laboratory experience in materials processing and device fabrication. Well-versed in lithography and etching techniques. Experience with 2-dimensional materials strongly preferred..Ability to work unsupervised and collaboratively with a team..Resourceful in problem solving and critical thinking..Meticulous and analytical in experimental work..Good presentation skills (written and verbal)..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electronics', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-quantum-technologies-for-engineering-quantum-device-hemt-imre-10128712?jobId=jobstreet-sg-job-10128712§ionRank=737&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Main Responsibilities
[{'position': 'Assistant Professor, - (School of Computer Science and Engineering) (R00009553)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Responsibilities': 'Information Systems and Analytics.Computer Security.Systems (including Computer Architecture, High-Performance Computing, and Real-time Systems).Algorithms and Theory.Programming Languages and Software Engineering.Machine Learning.Graphics and Interactive Computing (including Human-Computer Interaction and Visualization).Conduct high-quality innovative research in terms of publishing top-tier papers, securing competitive research grants, supervising research personnel..Conduct competent undergraduate and graduate level teaching, including academic supervision of undergraduate and graduate students and projects..Undertake responsibly assigned administrative services in the school and university..\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-professor-school-of-computer-science-and-engineering-r00009553-10127736?jobId=jobstreet-sg-job-10127736§ionRank=738&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Program Executive, AI & Digital Innovation'}, {'company_name': 'Singapore Eye Research Institute (SERI)'}, {'small_section': ['Outram', 'SGD\xa03,000 - SGD\xa04,800', 'Posted on 3-Nov-22']}, {'We are seeking for a highly qualified and motivated individual to take on a significant role in the ': '', 'AI and Digital Innovation': '', ' Research Group at SERI.': '', 'Job Description': "Coordinate meetings and liaise with different AI interest groups and various teams from SERI and SingHealth.Support in the organisation of AI journal clubs, seminars and initiatives; Organise events for both SERI and SingHealth AI Office and assist in co-ordination with external parties for co-organized or invited events..Assist with administrative matters, including update of listings, preparation of documents and submissions to internal and external organisations.Manage content and project/event updates on the online portal.Collaborate with group communication to publicize AI projects, papers and achievements.Manage department's procurement, admin matters and HOD’s calendar.Other ad-hoc duties when required.", 'Job Requirements': "Bachelor's degree in Engineering/ IT/ Bio-science/ Finance/ Economics or related field..Possess at least 3 years’ relevant experience in the area of academia or industry experience in healthcare, medical, or digital technology environment..Prior experience in dealing with industrial partners, collaborators; and understanding and experience in healthcare/ research sector or project management in technology and healthcare domains would be an added advantage.Familiarity with social media platforms such as LinkedIn, Facebook, Instagram, Telegram, Twitter.Excellent communication skills and strong interpersonal and presentation skills.Creative, strong analytical and problem solving skills and ability to structure creative deal structures and develop conceptual solutions.Able to work independently, Team player and team oriented..Proficient in Microsoft Office application."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Admin/Human Resources, Clerical/Administrative Support', 'Registration No.': '199704888Z', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '28 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\nSingapore National Eye Centre (SNEC) was incorporated on 3 March 1989 and commenced operation in October 1990. It is the designated national centre for ophthalmology within Singapore’s public sector healthcare network, with a faculty of close to 80 ophthalmologists and more than 800 staff.\xa0SNEC spearheads and coordinates the provision of specialised ophthalmological services with emphasis on quality education and research.\xa0\nSNEC manages more than 330,000 patient visits and performs over 35,000 surgeries and laser procedures annually.\xa0 The centre offers a full spectrum of subspecialties addressing every part of the eye – Cataract, Corneal & External Eye Disease, General Cataract & Comprehensive Ophthalmology, Glaucoma, Neuro-ophthalmology, Ocular Inflammation & Immunology, Oculoplastic, Paediatric Ophthalmology and Adult Strabismus, Refractive Surgery, Surgical and Medical Retina.\nSingapore Eye Research Institute (SERI) was established in 1997 as Singapore’s national research institute for ophthalmic and vision research. It is the research arm of SNEC, and affiliated to the National University of Singapore (NUS) and the Duke-NUS Medical School, as part of the SingHealth-Duke-NUS Academic Medical Centre.\nOver the years, SERI has invested considerable resources into its research infrastructure and in the training of the next generation of clinician-scientists, clinician-researchers and scientists. In two decades, SERI has grown from a founding team of 5 to over 200 researchers, doctors and support staff, and is the largest eye research institute in the Asia-Pacific region.\nA global leader in eye research, SERI ranks ahead of its counterparts in the US, UK and Japan in terms of ophthalmology publications per capita. Tapping on its close affiliation to SNEC, SERI is in the unique position to translate basic research into cutting edge clinical care by enabling the development of new treatments for a variety of eye diseases.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/program-executive-ai-digital-innovation-10129184?jobId=jobstreet-sg-job-10129184§ionRank=739&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
We are seeking for a highly qualified and motivated individual to take on a significant role in the
[{'position': 'Project Officer, - (Food Toxicology) (R00010574)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Key Responsibilities:\xa0': 'Provide expertise and support FRESH research staff working on the development and implementation of in vitro toxicological methods for food safety.Learn and run in-house protocols for the in vitro micronucleus assay and oversee validation testing with expanded chemical classes.Investigate establishment of in-house Ames Bacterial Mutation assay.Help develop new in-house protocols for in vitro toxicity endpoint testing.Culture and maintain in vitro human 2D and 3D cell culture models.Plan, execute, manage and troubleshoot experiments.Keep detailed and accurate records of experiments, data and analysis to support and protect data integrity and intellectual property.Contribute to multiple projects and work with collaborators to achieve project milestones.Help track and report FRESH project deliverables.Support lab admin and project management (procurement, contracts, meeting management).Maintain general lab functions and cleanliness.Ensure appropriate safety and risk assessments are in place for lab activities.Actively integrate into the FRESH team and assist where possible on other FRESH lab activities if time permits.', 'Job Requirements:': 'Minimum Bachelor’s degree in (food/in vitro/genetic) toxicology, cell biology, biochemistry, molecular biology or food science..At least 2 years’ experience in an academic or industrial research setting.Strong hands-on experience in 2D and 3D cell/tissue culture is mandatory (good aseptic technique).Experience in conducting genotoxicity assays (OECD 487, OECD 471 & Comet assay) is highly preferred.Knowledge of hazard identification and risk assessment frameworks is highly desirable.Experience working in a preparative chemistry/toxicology lab setting is highly preferred.Experience working with light/fluorescence/ confocal microscopy is preferred.Experience with tissue barrier integrity measurement, LCMS/GCMS, RT-PCR, ELISA, western blot is a plus.Experience working with animal/ human tissues is a plus.Experience/ knowledge of immunological mechanisms of food allergy is a plus.Must have great attention to details, highly independent at the same time a team player, motivated, pro-active and creative to accomplish complex tasks.Interested in interaction with multiple teams for collaborative work.Enthusiasm to learn new approaches and drive research projects.Excellent skills in\xa0record keeping/documentation and good time management.Excellent verbal and written communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-food-toxicology-r00010574-10070193?jobId=jobstreet-sg-job-10070193§ionRank=740&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist'}, {'company_name': 'Tiya Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Roles & Responsibilities': '', 'What will your role be:': 'Design and develop leading-edge Machine Learning models and Recommendation models..Work closely with Data Platform and Engineering teams on data acquisition/cleansing/processing and model deployment..Collaborate with Business teams to continuously propose new approaches, and refine and improve the systems to cater to ever-changing needs.Research and experiment new technologies and identify opportunities to enable and enhance Data Science capabilities..', 'What an ideal candidate means to us:': 'Bachelor’s degree or above in Mathematics, Statistics, Computer Science, Engineering, Information System, or other related majors..Practical experience in machine learning / deep learning projects..Sound fundamentals on basic data science concepts such as regression, classification, and clustering..Familiar with Python and machine learning libraries (Tensorflow, Keras, Scikit-learn, etc)..Experience in dealing with large unstructured data sets..Good understanding of big data architectures and solutions..Highly logical, systematic, independent..Fast learner, self-starter, and motivated..Confident, responsible and can proactively think of and implement solutions to tricky problems..The ideal candidate is an entrepreneurial data practitioner..', 'Why work with us:': 'We have an energetic team who are passionate about building a global audio-based online networking platform..We have many years of experience in the online-audio industry..TIYA has a people-centric culture, we fully support people with creative mindset to develop new project..', 'We will offer you:': 'Opportunities for practical learning..Competitive compensation and benefit program..Job rotation program..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201923805M', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-10120225?jobId=jobstreet-sg-job-10120225§ionRank=741&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Roles & Responsibilities
[{'position': 'Research Fellow (Skin Omics Group), A*SRL'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities:': 'Manage in vitro,\xa0in vivo, clinical sample preparation for metabolomics analysis.Perform sample analysis on targeted (QQQ) and untargeted (QTOF) metabolomics mass spectrometry workflows.Operate, troubleshoot, and maintain mass spectrometry instrumentation (LCMS, DESI, MALDI, QTOF).Analyze data with relevant vendor software and bioinformatics tools.Integrate metabolomics dataset with metadata (e.g. demographics) and other omics dataset (e.g. metagenomics).Manage the supervision and mentoring of junior scientists and students.Present results to industry partners, collaborators, and senior staff.Stay up to date with relevant scientific and technical developments.Maintain neat laboratory notes, prepare scientific reports, presentations, and manuscripts.Assist in laboratory safety management and risk assessments.', 'Qualifications:': 'Ph.D. in Chemistry, Biochemistry, Pharmacy, or equivalent\xa0.Experience with sample preparation for mass spectrometry workflows and analytical pipelines for omics data is essential.Experience with mass spectrometry imaging, vendor-specific software (Thermo Scientific, Waters) and open-source analysis software (Skyline) would be a plus.\xa0.Able to work in a multi-disciplinary team, possess strong organizational and project management skills, demonstrate initiative and able to work independently.High level interpersonal skills and ability to communicate effectively with a wide range of people, including the ability to clearly consult and liaise with internal and external stakeholders.Willing to learn and unafraid to explore outside current domain area.Excellent\xa0verbal and written communication skills.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-skin-omics-group-a*srl-10123562?jobId=jobstreet-sg-job-10123562§ionRank=742&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Analyst Intern - Growth #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': 'Build and manage metrics in an analytical driven approach to identify business issues and opportunities in a fast-changing industry;.Prototype analysis pipelines and quickly provide insights to business inquiries;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendations on appropriate solutions..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Statistics, Applied Mathematics, Computer Science or a related technical discipline from a university;.Experience in data manipulation with SQL, Python or other programming-languages/tools;.Experience in data analysis, visualization and reporting;.'}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-intern-growth-urgenthire-10144611?jobId=jobstreet-sg-job-10144611§ionRank=743&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate / (Data Analyst & Machine Learning Specialist) R00008084 #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'\xa0': '', 'Key Responsibilities:\xa0': 'Able to develop software codes for autonomous simultaneous localization and mapping of moving equipment.\xa0.Should be able to develop framework for multi accesses edge computing..Train machine learning and deep learning models on a computing cluster to perform visual recognition tasks such as segmentation, detection, self-supervised depth estimation and end-to-end control..Multi sensor fusion based software integration from physical system to virtual environment..Prepare reports and documentations for the research programs, and support data analysis..Test and validate developed autonomous codes against physical systems..Program development for sensor systems and dashboard visualization..Creating lab scale setups and fixtures in tune to vehicle level performance..Formulating process experimental plans both lab level and real field level..Running experiments and troubleshooting systems..Developing potential improvements to the health monitoring system and testing potential solutions..', 'Job Requirements:\xa0': 'Master’s degree in computer science engineering/Electronics Engineering. Related degree preferred. Related experience would be given high priority..Experience with signal processing..Strong python programming, software development best practices, debugging and profiling..Knowledge on at least one mainstream deep learning framework such as Pytorch , Tensorflow and CNN..Familiarity with data science tool kit such as Jupyter, pandas, Linux environment..Familiarity of AWS or Azure..Solid understanding of algorithms, linear algebra, machine learning, computer systems/architecture, neural network..Basic Knowledge with sensor system, interface, data conversion and software programming..Effective communication and report writing skills..Experience in use of applicable business software applications..Prior experience and knowledge in Data analysis and Machine learning algorithms development..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-analyst-machine-learning-specialist-r00008084-seekbetter-10135594?jobId=jobstreet-sg-job-10135594§ionRank=744&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
[{'position': 'Senior Data Analyst (1 year contract, Raffles Place)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Central', 'SGD\xa06,000 - SGD\xa08,000', 'Posted on 21-Oct-22']}, {'Job Duties:': '', 'Our Requirements': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Temporary', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-analyst-1-year-contract-raffles-place-10091971?jobId=jobstreet-sg-job-10091971§ionRank=745&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Job Duties:
[{'position': 'Associate Data Scientist #LetsGoToWork'}, {'company_name': 'ENSIGN INFOSECURITY (CYBERSECURITY) LITE ADS'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities:': 'Familiarize with Ensign’s business domain and objectives to implement cyber security analytics solutions that meet internal business requirements and the needs of industry partners and customers.Develop, evaluate, tune, deploy, maintain and document production-grade data analytics models that provide cyber security insights.Work on large volume of raw, structured and unstructured data from internet traffic, logs and other forms of data sources using Apache Spark, MPP DB, NoSQL, Hadoop, Scala, Python, R, Tableau etc on daily basis.Evaluate potential solutions relating to data analytics and make recommendations to solve business problems.Liaise and work with in-house developers, data engineers, big data architects, visualization engineers and project managers to better understand the requirements of developing, deploying and productizing models.Ensure the analytics models are running in optimal condition and perform trouble-shooting when the models are having issue.Advocate and ensure security best practices.', 'Requirements:': 'Degree in Statistics, Data Science, Mathematics, Computer Science, Engineering or any other related quantitative field.Experience working in a data science position, preferably in the cyber security industry and has worked with security logs/network data.Experience and expertise in probability and statistical modelling, inclusive of machine learning, experimental design, evaluation and optimization.Proficiency in Scala, Python, R, Java, Spark and SQL, among others.Ability to perform rapid prototyping and proof of concept using visualization and dashboarding tools such as Tableau.Experience with machine learning and deep learning frameworks and tools such as TensorFlow, Keras, Caffe, MxNet, Spark, Hadoop, R, pandas.Solid technical background with hands-on experience in conceptualizing, designing, implementing and deploying statistical or machine learning models in the big data environment (e.g. Hadoop).Excellent client-facing and internal communication skills.Solid organizational skills including attention to detail and multi-tasking.Team-player, result-oriented, proactive, self-driven, requiring minimal supervision.Creative problem-solving skills, highly organized, with ability to handle multiple simultaneous tasks, prioritize and meet tight deadlines.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200907753D', 'Company Size': '501 - 1000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays'}, {'Company Overview': '\n\tEnsign InfoSecurity is the largest pure-play cybersecurity service provider in Asia. The company is headquartered in Singapore. We specialise in the provision of these services; cybersecurity advisory and assurance, implementation and management of advanced cybersecurity controls, cybersecurity monitoring, threat hunting, and incident response. Underpinning these competencies is in-house research and development in cybersecurity.'}, {'url': 'http://www.jobstreet.com.sg/en/job/associate-data-scientist-letsgotowork-10120842?jobId=jobstreet-sg-job-10120842§ionRank=746&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Intern, Data Analyst, [AEC Design-BID-Reality Solutions] #Immediate'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted 23 hours ago']}, {'Position Overview': '', 'Responsibilities': '', 'Minimum Qualifications': 'Final Year Bachelors in Computer Science / Computer Engineering.', 'Preferred Qualifications': 'Programming knowledge, e.g. Javascript, Python..Passion to learn new technology..', 'Learning Benefits': '', 'About Autodesk': []}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/intern-data-analyst-%5Baec-design-bid-reality-solutions%5D-immediate-10146033?jobId=jobstreet-sg-job-10146033§ionRank=747&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Senior Data Scientist ( Electric Vehicles )'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 14-Oct-22']}, {'Senior Data Scientist ( Electric Vehicles )': 'Golden Opportunity with\xa0EV MNC\xa0.Competitive Remuneration\xa0Package.Leading AI R&D division.', 'About the Client': '', 'Main Duties & Responsibilities': 'Build advanced Data Science or Optimization algorithms / models that can be applied for manufacturing processes.Be involved in EV projects related to algorithm development, data and system implementation from POCs to implementation.Work with the AI research team to publish papers or file for relevant patents.Introduce state-of-the-art data science technologies that be commercially applied in an smart manufacturing setting.', 'Education Backgrounds': "Master's or Ph.D. degree in Computer Science, Mathematics, Statistics or equivalent\xa0.At least 2 years of data science or optimization experience in one or more of the following areas:\xa0Multivariate time-series analysis, Forecasting models, Data mining, Pattern recognition.Experience in ML or Data Mining frameworks such as Tensorflow, PyTorch or Scikit-learn.Experience in Distributed Data Frameworks such as Hadoop, Hive or Spark.Prior exposure in a Manufacturing setting will be preferred.", 'What to Expect': '', 'Interest & Apply': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-scientist-electric-vehicles-9978001?jobId=jobstreet-sg-job-9978001§ionRank=748&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Senior Data Scientist ( Electric Vehicles )
[{'position': 'Data Scientist - Growth #JobsThatMatter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': '', 'You will:': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with product and DEs, DAs, and other engineers to deliver features to drive the user growth of products..", 'Qualifications': "Bachelor's degree in Computer Science or a related technical discipline;.Solid experience with data structures and algorithms;.Software development experience through hands on coding in a general purpose programming language;.Experience in one or more of the following areas: Machine Learning, Recommendation Systems, Data Mining or other related areas;.Fast business understanding and collaborative in teamwork;.", 'Preferred Qualifications:': 'Industry experience working with user growth..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-growth-jobsthatmatter-10119518?jobId=jobstreet-sg-job-10119518§ionRank=749&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Researcher - Analytics - Organic & Inorganic'}, {'company_name': 'VOLT'}, {'small_section': ['Singapore', 'SGD\xa090,000 - SGD\xa0117,000', 'Posted on 28-Oct-22']}, {'Researchers - Analytical - Inorganic / Organic': 'International Renewables Business who is well known for Sustainable Solutions.Pioneer roles.New Setup in Singapore.Permanent Opportunities.', 'retained search': '', 'leading International name': '', 'Renewables Industry': '', 'Requirements': '', 'Chemical Engineering or': '', 'Analytical Research covering Organic analysis techniques': '', 'GC-MS, GCxGC, HPLC, LC-MS/MS, GPC, FTIR': '', 'OR': '', 'Inorganic Analys': '', 'techniques : ICP-MS/MS, coulometry, CHN, XRF, XRD, CIC, IC, N/S-': []}, {'Career Level': 'Non-Executive', 'Qualification': "Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200408881M', 'EA No.': '12C5526', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tVolt is an award winning, global workforce solution provider, listed on the NYSE and a Fortune 1000 organisation. Volt propels businesses and careers forward with expert momentum. Volt’s 35,000 employees work across 85 offices worldwide to provide workforce management and talent acquisition solutions to businesses and job placement services. With 70 years of industry leadership and a growing global team of employment strategists, partnerships and proactive approach to business needs, Volt strive to maintain an innovative and highly relevant sector-based portfolio globally.\n\n\n\tFor more opportunities visit our website, www.voltinternational.com.sg\xa0\n\n\tVolt Service Corporation Pte Ltd\n\tCompany Registration No. 200408881M\n\tEA Registration No. 12C5526'}, {'url': 'http://www.jobstreet.com.sg/en/job/researcher-analytics-organic-inorganic-10112246?jobId=jobstreet-sg-job-10112246§ionRank=750&token=0~48419576-d5b1-4592-940b-edf9c0aafd2f&fr=SRP%20Job%20Listing'}]
Researchers - Analytical - Inorganic / Organic
[{'position': 'Operations Analyst #JobsThatMatter'}, {'company_name': 'DSO National Laboratories'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Operations Analyst': '', 'Responsibilities': '', 'In this role, you will:': 'Conduct operations research studies on defence and national security-related issues.Develop mathematical and simulation models and apply them to complex real-world problems.Conduct data analysis and convey findings and recommendations to decision makers.', 'Requirements': 'Master’s / Bachelor’s Degree in Computer Engineering / Computer Science / Mathematics / Statistics / Operations Research.Proficiency in programming languages (e.g., C/C++/Java, Python).Possess strong quantitative, analytic and communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '199701777M', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '16 days', 'Industry': 'R&D'}, {'Company Overview': '\n\tDefence research and development (R&D) is at the heart of what we do at DSO. As Singapore’s largest national defence R&D organisation, DSO is entrusted with the critical mission of developing technological surprises to enhance Singapore’s defence capabilities. From research to systems development, our defence engineers and scientists push the boundaries to develop game changing technologies and solutions that are not available in the market, or not available to Singapore. DSO also invest and explore emerging technologies to ensure the nation’s defence and national security capabilities are future ready. With more than 50 research areas across the domains of air, land, sea, space and cyberspace, DSO shapes the future of defence with our imagination and dare-to-do spirit in the relentless pursuit of the next big idea.'}, {'url': 'http://www.jobstreet.com.sg/en/job/operations-analyst-jobsthatmatter-10056972?jobId=jobstreet-sg-job-10056972§ionRank=752&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Operations Analyst
[{'position': 'Data Scientist - E-Commerce Risk Control'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..At least 3 years with solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-e-commerce-risk-control-10121406?jobId=jobstreet-sg-job-10121406§ionRank=753&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'CyberSecurity Data Scientist - #Urgent'}, {'company_name': 'ENSIGN INFOSECURITY (CYBERSECURITY) LITE ADS'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Ensign is hiring !': '', 'Duties and Responsibilities': 'Familiarize with Ensign’s business domain and objectives to implement cyber security analytics solutions that meet internal business requirements and the needs of industry partners and customers.Develop, evaluate, tune, deploy, maintain and document production-grade data analytics models that provide cyber security insights..Work on large volume of raw, structured and unstructured data from internet traffic, logs and other forms of data sources using Apache Spark, MPP DB, NoSQL, Hadoop, Scala, Python, R, Tableau etc on daily basis..Evaluate potential solutions relating to data analytics and make recommendations to solve business problems.Liaise and work with in-house developers, data engineers, big data architects, visualization engineers and project managers to better understand the requirements of developing, deploying and productizing models.Ensure the analytics models are running in optimal condition and perform trouble-shooting when the models are having issue.Advocate and ensure security best practices.', 'Requirements': 'Degree in Statistics, Data Science, Mathematics, Computer Science, Engineering or any other related quantitative field.Minimum 3 years of experience working in a data science position, preferably in the cyber security industry and has worked with security logs/network data.Experience and expertise in probability and statistical modelling, inclusive of machine learning, experimental design, evaluation and optimization.Proficiency in Scala, Python, R, Java, Spark and SQL, among others.Ability to perform rapid prototyping and proof of concept using visualization and dashboarding tools such as Tableau.Experience with machine learning and deep learning frameworks and tools such as TensorFlow, Keras, Caffe, MxNet, Spark, Hadoop, R, pandas.Solid technical background with hands-on experience in conceptualizing, designing, implementing and deploying statistical or machine learning models in the big data environment (e.g. Hadoop).Excellent client-facing and internal communication skills.Solid organizational skills including attention to detail and multi-tasking.Team-player, result-oriented, proactive, self-driven, requiring minimal supervision.Creative problem-solving skills, highly organized, with ability to handle multiple simultaneous tasks, prioritize and meet tight deadlines.', 'Preferred Skills /Qualities': 'Experience in Cyber Security / Telco industry will be an advantage.Proven ability to handle multiple developmental projects concurrently.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200907753D', 'Company Size': '501 - 1000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays'}, {'Company Overview': '\n\tEnsign InfoSecurity is the largest pure-play cybersecurity service provider in Asia. The company is headquartered in Singapore. We specialise in the provision of these services; cybersecurity advisory and assurance, implementation and management of advanced cybersecurity controls, cybersecurity monitoring, threat hunting, and incident response. Underpinning these competencies is in-house research and development in cybersecurity.'}, {'url': 'http://www.jobstreet.com.sg/en/job/cybersecurity-data-scientist-urgent-10120824?jobId=jobstreet-sg-job-10120824§ionRank=754&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Ensign is hiring !
[{'position': 'Executive (Care Planning & Transformation)'}, {'company_name': 'National Cancer Centre Singapore Pte Ltd'}, {'small_section': ['Bukit Merah', 'Posted on 2-Nov-22']}, {'About Us': '', 'About the Role': '', 'Key Responsibilities': 'Work closely with the supervisor to plan and manage progress of patient care projects/programmes through established metrics and key performance indicators.Assist to recruit and coordinate focus group participants to gain insights and awareness of patient’s priorities and challenges.Participate in workgroups & committees and assist with note-taking to brainstorm ideas, troubleshoot potential issues and discuss various approaches and set parameters for achieving programme/project goals.Collaborate with internal departments and other healthcare and operations teams to roll out programmes across various touch points.Provide administrative support to the department to ensure smooth running of the day-to-day office events such as office supplies, budget, reports, records and databases.', 'Job Requirements': 'Degree in any discipline with at least 2 years of relevant working experience, preferably in event or project management.Strong interpersonal skills with excellent written and verbal communication skills.Meticulous, organized and able to multi-task efficiently.Ability to liaise with stakeholders at all levels and work in a team environment.Proficient in Microsoft Office.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Admin/Human Resources, Clerical/Administrative Support', 'Registration No.': '199801562Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Uniform and Non-Uniform, Others', 'Specific Location': 'Jalan Bukit Merah'}, {'Company Overview': '\n\tThe National Cancer Centre Singapore (NCCS) has evolved over the past 20 years to become one of the leading regional centres for cancer treatment and research. It has pioneered the one-stop multi-disciplinary approach to cancer treatment and is now home to oncologists, surgeons and researchers, dedicated to the care and treatment of a growing number of cancer patients.\n\tToday, NCCS see close to 65 per cent of the public sector oncology cases in Singapore. To deliver\xa0the latest cancer care and treatment, clinicians work closely with researchers who conduct robust cutting-edge clinical and translational research which has received international recognition.\xa0NCCS strives to be a global leading cancer centre, and shares its expertise and knowledge by training the next generation of medical professionals.'}, {'url': 'http://www.jobstreet.com.sg/en/job/executive-care-planning-transformation-10079171?jobId=jobstreet-sg-job-10079171§ionRank=755&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
About Us
[{'position': 'CyberSecurity Data Scientist - #Urgent'}, {'company_name': 'ENSIGN INFOSECURITY (CYBERSECURITY) LITE ADS'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Ensign is hiring !': '', 'Duties and Responsibilities': 'Familiarize with Ensign’s business domain and objectives to implement cyber security analytics solutions that meet internal business requirements and the needs of industry partners and customers.Develop, evaluate, tune, deploy, maintain and document production-grade data analytics models that provide cyber security insights..Work on large volume of raw, structured and unstructured data from internet traffic, logs and other forms of data sources using Apache Spark, MPP DB, NoSQL, Hadoop, Scala, Python, R, Tableau etc on daily basis..Evaluate potential solutions relating to data analytics and make recommendations to solve business problems.Liaise and work with in-house developers, data engineers, big data architects, visualization engineers and project managers to better understand the requirements of developing, deploying and productizing models.Ensure the analytics models are running in optimal condition and perform trouble-shooting when the models are having issue.Advocate and ensure security best practices.', 'Requirements': 'Degree in Statistics, Data Science, Mathematics, Computer Science, Engineering or any other related quantitative field.Minimum 3 years of experience working in a data science position, preferably in the cyber security industry and has worked with security logs/network data.Experience and expertise in probability and statistical modelling, inclusive of machine learning, experimental design, evaluation and optimization.Proficiency in Scala, Python, R, Java, Spark and SQL, among others.Ability to perform rapid prototyping and proof of concept using visualization and dashboarding tools such as Tableau.Experience with machine learning and deep learning frameworks and tools such as TensorFlow, Keras, Caffe, MxNet, Spark, Hadoop, R, pandas.Solid technical background with hands-on experience in conceptualizing, designing, implementing and deploying statistical or machine learning models in the big data environment (e.g. Hadoop).Excellent client-facing and internal communication skills.Solid organizational skills including attention to detail and multi-tasking.Team-player, result-oriented, proactive, self-driven, requiring minimal supervision.Creative problem-solving skills, highly organized, with ability to handle multiple simultaneous tasks, prioritize and meet tight deadlines.', 'Preferred Skills /Qualities': 'Experience in Cyber Security / Telco industry will be an advantage.Proven ability to handle multiple developmental projects concurrently.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200907753D', 'Company Size': '501 - 1000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays'}, {'Company Overview': '\n\tEnsign InfoSecurity is the largest pure-play cybersecurity service provider in Asia. The company is headquartered in Singapore. We specialise in the provision of these services; cybersecurity advisory and assurance, implementation and management of advanced cybersecurity controls, cybersecurity monitoring, threat hunting, and incident response. Underpinning these competencies is in-house research and development in cybersecurity.'}, {'url': 'http://www.jobstreet.com.sg/en/job/cybersecurity-data-scientist-urgent-10120862?jobId=jobstreet-sg-job-10120862§ionRank=756&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Ensign is hiring !
[{'position': 'First VP / VP, Senior System Analyst, Real-Time Data Services, Group Technology'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Technology and Operations ': '', 'Job Responsibilities': 'Provide technical expertise and recommendations in assessing new IT software projects and initiatives to support and enhance our existing applications..Provide\xa0assistance and advice to business users in the effective use of applications and information technology..Work with business users to identify, define and document business needs and objectives, current operational procedures, problems, input and output requirements, and levels of systems access..Define and document business functions and processes, functional requirements. Write technical procedures and documentation for the applications including operations, user guide, etc. Write detailed universally understood processes/steps/requirements for use in development and training.Assist in the creation of the system design and functional specifications for all new development projects..Ensure appropriate standards and procedures are adhered to during the development process to support quality deliverables..Assist the project team in issue resolution to meet the requirements and timelines.Define the training materials, and conduct formal system and user training sessions; facilitate train-the-trainer approach. Assist in training/mentoring other staff on the project\xa0\xa0\xa0\xa0\xa0.Anticipate, analyze, address and resolve any functional or non-functional issues or risks either independently or together with the relevant stakehers and propose alternative solutions as necessary.', 'Job Requirements': 'Bachelor\xa0/ Diploma in Computer Science / IT.At least 10\xa0of technology experience with at least 4 hands-on technical roles in the field and relies on experience and judgment to plan and accomplish goals..Extensive knowledge of data processing, hardware platforms, and enterprise software applications..Technical experience with systems networking, databases, Web development, and user support..Good background in data technologies including streaming, real-time analytics, real-time events processing, decisioning and offer manment.Good working knowledge skills with Microsoft Office Products, MS-Visio, MS-Excel and MS-Project..Experience in the development and implementation of standards, procedures and guidelines to support operational processes..', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/first-vp-vp-senior-system-analyst-real-time-data-services-group-technology-10083936?jobId=jobstreet-sg-job-10083936§ionRank=757&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Data Scientist - E-Commerce Risk Control #JobsThatMatter #WorkNow*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..At least 3 years with solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-e-commerce-risk-control-jobsthatmatter-worknow*-10119705?jobId=jobstreet-sg-job-10119705§ionRank=758&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow, - (Data Analytics) - (R00005646) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 8-Nov-22']}, {'Key Responsibilities:': 'Conduct research on development of data analytic methodologies using techniques such as machine learning, deep learning, artificial neural networks, etc.Summarize and analyze the human factors data collected to date from human factors studies of ambient assisted living for aging population in Asia and finalize and conclude the project with a final report.Assist to supervise one PhD student and 2 FYP students in the Design & Human Factors Lab.Summarize research results for publishing in prestigious journals.Prepare technology disclosure materials for further filing of patents.', 'Job Requirements:': 'PhD in Mechanical, Civil, Electrical and Electronic Engineering or related field.Expertise in project management and constructing report.Knowledge in machine learning and data analytics.Publication track record is an advantage.Proficiency in basics of programming languages such as Matlab and R coding language.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-analytics-r00005646-seekbetter-10144781?jobId=jobstreet-sg-job-10144781§ionRank=760&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist M/F #Seekbetter'}, {'company_name': 'STMicroelectronics Asia Pacific Pte Ltd (Lite ads)'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job description': "Work as a subject matter expert on Artificial Intelligence/Machine Learning, Data and Statistical models to present findings to stakeholders internally or externally..Implement models in machine learning, optimization, Neural Networks, and Artificial Intelligence such as Natural Language, and other quantitative approaches..Demonstrate high level of thought leadership in data science and machine learning..Key drive and contributor with stakeholders to understand business problems definition, analyse via big data and propose solutions.Deliver meaningful insights and predict trends via collection, analysis and interpretation qualitative and quantitative data with statistical theories and methods..Key contributor to fast proofs of concept, prototype and implementation of viable solutions that demonstrate business value.Create and review technical design documentations, contribute to company's intellectual property and patents..", 'Profile': 'PhD or Masters Degree in Computer Science/Mathematics/ Statistics or equivalent..Familiar with Data Engineering techniques to prepare, process and transform data’.Demonstrate strong business understanding to define problems and propose solutions for implementation.Strong understanding and hands-on experience using Data Science and Statistical methods for AI/ML including Deep learning methods, Data Science Programming Language such as Python/R.Prior background and relevant working experience for at least 3 years in semiconductor..Familiar with big data, cloud based AI/ML products and Agile Methodologies.Fluent in English.Ability to guide and lead a team and drive projects..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199404407W', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Accounting / Audit / Tax Services'}, {'Company Overview': '\n\tSTMicroelectronics is a world leader in providing the semiconductor solutions that make a positive contribution to people’s lives, today and into the future.\xa0 Among the world’s largest semiconductor companies and a leading technology innovator: ~7,400 people working in R&D and product design, ~18,000 patents, ~ 9,600 patent families and ~ 550 new patent filings, employing ~46,000 employees worldwide in 11 main manufacturing sites, 80 sales & marketing offices in 35 countries and committing close to 20% in R&D.\n\t\n\t\n\t\tPeople are the foundation of ST and they drive our success. We believe there is a strong correlation between employee\'s commitment and business results. Our engaged employees will make ST even more successful. For this reason, ST has a solid infrastructure to manage the core processes related to people and, one of our top corporate priorities is "People". This corporate priority focuses on employee engagement and recognition, talent management, leadership development.\n\nOur HR Strategy\n\n\t\tOur Human Resources strategy aims to ensure the right level of hiring and retention, to match the company’s evolving requirements in terms of profiles, competencies and the dynamic integration of new people. At ST, we believe that the development of our people is the key factor for ensuring our long term success.\n\n\t\tOur Vision : Everywhere microelectronics make a positive contribution to people\'s lives, ST is there.\n\n\t\tOur Values :\n\nINTEGRITY: we conduct our business with the highest ethical standards, honor our commitments, deliver on our promises, are loyal and fair.\nPEOPLE: we behave with openness, trust and simplicity; ready to share our knowledge, encourage everyone’s contribution, develop people through empowerment, teamwork and training.\nEXCELLENCE: we strive for quality and customer satisfaction and create value for all our partners; we are flexible, encourage innovation, develop our competencies, seek responsibility and are accountable for our actions.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-m-f-seekbetter-10119433?jobId=jobstreet-sg-job-10119433§ionRank=761&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Big Data Senior Project Manager - (220001ED)'}, {'company_name': 'The Great Eastern Life Assurance Co Ltd'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Job Purpose': '', 'The Job': "Own and be responsible for the successful delivery of projects, ensuring they are completed on time, meeting requirements and within allocated budget..Manage project lifecycle, from requirement, design, technical construction, testing, acceptance, training, documentation and implementation, in accordance with the GE's Project Management Process and Methodology..Participate in pre-project activities such as estimation of project efforts, preparation of high level project plan with project timeline and resource requirements, and staffing and organization of project team..Plan, coordinate and communicate project plan, timeline and activities to the project team..Work closely with the group of key business owners and source systems SMEs, IT Risk & compliance, IT Security, QA on the agreed project objectives..Monitor and track progress of projects and stay on top of the projectso ensure smooth execution..Manage and coordinate project deliverables, ensuring their quality and configuration management..Analyse and highlight project risks and develop necessary risk mitigation plans..Analyse and highlight project dependencies to pre-empt project issues.Maintain project issue register to keep close match of the project issues till their resolution..Manage performance of the project team, guide the project team in resolving issues, and resolve conflicts within the project team..Manage customer's expectation by understanding customers' needs and providing realistic expectations and scope of the projects..Manage and work closely with vendors, business partners and data centre involved in projects..Provide periodic update on project progress to project sponsors and escalate project issues not resolvable not project team level..Provide periodic update on project progress to project sponsors and escalate project issues not resolvable not project team level and PSC team..Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..", 'Our Requirements': 'Degree in Computer Science, Computer Engineering, or equivalent..Good knowledge of development methodologies and implementation.Possess experience in managing the entire Software Development Life Cycle (SDLC) using Agile or Waterfall software development practices..Possess experience in managing vendor and contracts for application maintenance supports and services.Candidates with relevant Industry certifications would be preferred..Good interpersonal and communication skills to manage relevant stakeholders.Certified Project Manager, either CITPM or PMP, with at least 10 years of experience in managing IT projects and software/application development lifecycles, Scrum Certified..Strong delivery management experience, with proven track records in managing and steering projects towards smooth execution and on time delivery..Strong problem solving and analytical skills, with passion for making data-driven decisions..Experience in use of project management and collaboration tools is required (E.g. Microsoft Project, Confluence, Jira Software, Kanban Boards, etc.).Knowledge of big data platforms and analytics tools is required E.g. Hortonworks, Hive, Spark, Sqoop, Tableau, Qilk, SAS Vija ... etc.Knowledge of technology, tools and process related to data governance, master data management and data lineage is required..Knowledge of cloud technology Eg. AWS, snowflake ...etc.Excellent in verbal and written communication skills..Strong interpersonal and leadership skills, effective in fostering teamwork and managing high performance project team..A working understanding of Cloud computing, Data Science, and/or Machine Learning.Experience leading cross-functional teams..Familiar with current topics in big data / data analytics such as natural language processing, complex event processing, machine learning, computer vision, deep learning, supervised or unsupervised skills,\xa0OpenCV, tensorflow, dockers container management is desired..Experience or skill for software programing language for Java, Shell scripting, Python or Java Scripts.\xa0.High level of integrity, takes accountability of work and good attitude over teamwork..Takes initiative to improve current state of things and adaptable to embrace new changes..', 'About Great Eastern': '', 'To all recruitment agencies:': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '190800011G', 'Company Size': '2001 - 5000 Employees', 'Industry': 'Insurance'}, {'Company Overview': '\n\tFounded in 1908, Great Eastern is a market leader and a well-established trusted brand in Singapore and Malaysia. With S$82.5 billion in assets and over 4 million policyholders, the Group also operates in Indonesia and Brunei and has a presence in China as well as a representative office in Myanmar.\n\n\tThe Great Eastern Life Assurance Company Limited and Great Eastern General Limited have been assigned the financial strength and counterparty credit ratings of "AA-" by Standard and Poor\'s since 2010, one of the highest among Asian life insurance companies.\n\n\tWe are a LIFE company and our purpose is to empower generations to live healthier and better so that they can live life to the fullest. Be it celebrating life’s simple moments or commemorating life’s major milestones, every day, in many ways, we inspire those around us to live great and celebrate life.\n\n\tPlease note that our career opportunities are only posted on our Career Website (http://grp.gelife.co/findacareer) and on our authorised job platforms which are specifically LinkedIn, JobStreet and eFinancialCareers. We do not initiate any unsolicited calls and all official emails from Great Eastern will be sent from email addresses ending with “@greateasternlife.com”. Should you receive any communications outside from these channels listed, please do not provide any personal information and do reach out to us at [email\xa0protected] or at 6248 2990 for us to assist you and confirm the legitimacy of the content.'}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-senior-project-manager-220001ed-10103335?jobId=jobstreet-sg-job-10103335§ionRank=762&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Job Purpose
[{'position': 'Data Scientist - E-Commerce Risk Control - #WorkNow'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..At least 3 years with solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-e-commerce-risk-control-worknow-10120011?jobId=jobstreet-sg-job-10120011§ionRank=763&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Engineer (AI/ML), Computing and Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job description': '', 'The responsibilities include but are not limited to:': 'Research, develop and evaluate textual analysis algorithms and implementations.Work with team members to develop end-to-end solutions leveraging on textual analysis and data mining for various applications domains, such as healthcare, aerospace, built environment and fintech.Brainstorming technical solutions to address relevant industry problem statements.Assist project leads in the execution and completion of tasks to required standards.', 'Job requirements': 'Master or Bachelor degree in STEM or AI/ML related fields.AI/ML experience in industry and/or academia is highly sought.Strong programming skills in Python (preferred) or R.Knowledge and demonstrable experience in open-source NLP packages such as NLTK, Word2Vec, SpaCy, Gensim, Stanford CoreNLP will be a differential.Smart and hardworking individual who can work under pressure within a tight deadline.A good team player with can-do attitude.Solid communication skills and problem-solving skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-ai-ml-computing-and-intelligence-ihpc-10124054?jobId=jobstreet-sg-job-10124054§ionRank=764&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Research Engineer II (Data Science\xa0and\xa0AI) - R00011099'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 3 hours ago']}, {'Key Responsibilities:\xa0': 'Opportunity to conduct cutting-edge R&D in data science and AI..Implement, set up, test, maintain and showcase demo applications.Integrate research outcomes into prototypes and demos with UI/UX.Manage the infrastructure in the lab for the purpose of demos, visits and meetings.Provide timely IT support to the research teams based on ad hoc needs.', 'Job Requirements:': 'Masters or Bachelor degree in computer science and engineering or related fields.Excellent background in software engineering, UI/UX development, with advanced programming skills.Good R&D ability and experience in data science, AI, machine learning, deep learning or related areas.Good communication skills with strong aptitude to lead and manage AI translational research works.Good experience in IT support.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-ii-data-science-and-ai-r00011099-10147713?jobId=jobstreet-sg-job-10147713§ionRank=765&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Associate, - (Computer Science/Computer Engineering) (R00009411)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 3-Nov-22']}, {'Key Responsibilities:': 'Participate the design and building of the data center testbed.Conduct research on the reliability of the IT equipment in the tropical data center testbed.Perform cost-effectiveness analysis under different temperature setpoints of the data center testbed.Prepare project reports and research papers to present the research findings.', 'Job Requirements:': 'A Master degree in Computer Science, Computer Engineering, Electrical Engineering, Electronic Engineering, or related disciplines.Knowledge and skills in data analytics and reliability analysis.Hands-on experiences are pluses.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-computer-engineering-r00009411-10127491?jobId=jobstreet-sg-job-10127491§ionRank=766&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Analyst - Growth - #JobsThatMatter #UrgentHire #WorkNow*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'You will:': 'Build and governing matrices for fast changing business in an analytical data-driven approach to identify business issues and opportunities;.Prototype analysis pipelines to provide insights, and provide quick responses to business inquiries and events;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendation on appropriate solutions..', 'Qualifications': "Bachelor's degree in Statistics, Applied Mathematics, Computer Science or a related field;.Skilled in data manipulation with SQL, python or other programming-languages/tools;.Experienced in data analyzing, visualization and reporting;.Fast business understanding and collaborative in teamwork..", 'Preferred Qualifications:': 'Experience working with user growth is a plus..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-growth-jobsthatmatter-urgenthire-worknow*-10144137?jobId=jobstreet-sg-job-10144137§ionRank=767&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Lecturer/Senior Lecturer in Data Analytics (R00009474) - #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 28-Oct-22']}, {'Requirements:': 'Applicants should have extensive industry and/or academic experience, a passion for teaching and preferably possess a Masters’ degree in information systems, computer science, statistics, or a closely related discipline, with the relevant professional qualifications..We are keen on applicants with strong industry experience in implementing data analytics and artificial intelligence solutions. Mastery in programming languages such as R, SAS, or Python is necessary. Candidates should be able to deploy statistical as well as machine learning analytical solutions using these tools..Candidates should demonstrate teaching excellence at the undergraduate/graduate level, and are able to engage in curriculum development and course administration for undergraduate and graduate analytics courses..Candidates should have a passion for teaching, excel at teaching and work closely with students. Candidates must have the versatility to teach multiple courses at the undergraduate and graduate levels. Lecturers and Senior Lecturers are expected to excel at teaching and service, work closely with students, and contribute to practice-based research and development of courses that leverage technology-enabled learning. Appointment terms are for three years. As we are expanding our course offerings, we seek versatile individuals who can teach courses at the undergraduate and graduate levels..NTU offers an internationally-competitive salary commensurate with the candidate’s qualifications and experience..', 'Application:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/lecturer-senior-lecturer-in-data-analytics-r00009474-jobsthatmatter-10059144?jobId=jobstreet-sg-job-10059144§ionRank=768&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Requirements:
[{'position': '[Digital] Analytics Engineer / Data Engineer'}, {'company_name': 'Pfizer (Malaysia)'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'ROLE SUMMARY': '', 'ROLE RESPONSIBILITIES': 'Leverage data wrangling techniques to deliver data pipelines that Ingest and integrate data from various information sources and deliver high quality data products that drive analytics and data science applications.Translate data needs into intro programable queries and convert Python based data wrangling code into PySpark/SQL pipelines for scalable pushdown execution.Conduct basic data profiling and quality checks.Fine tune performance on datasets for visualization and other applications.Develop automated and self-monitoring data pipelines including automated QA/QC processes.Work with stakeholders to assist with data-related technical issues and support data infrastructure needs..', 'QUALIFICATIONS': '', 'BASIC QUALIFICATIONS\xa0\xa0': 'Bachelor’s degree in analytics engineering related area (Data Science, Computer Engineering, Computer Science, Information Systems or related discipline).2+ years of work experience as an analyst/analytics engineer for a diverse range of projects.Strong hands-on skills in analytics engineering (e.g., Python, industrialized ETL software).Experience working in a cloud based analytics ecosystem (AWS, Snowflake, etc).Experience with working with various types of data (structured / unstructured).Understanding of data ingestion, data warehousing, and data model concepts.Knowledge of relational and dimensional data structures, theories, and practices.Proficient in SQL, Python.Highly self-motivated to deliver both independently and with strong team collaboration..Ability to creatively take on new challenges and work outside comfort zone..Strong aptitude for learning new technologies and analytics techniques..', 'PREFERRED QUALIFICATIONS\xa0': 'Advanced degree in Data Science, Computer Engineering, Computer Science, Information Systems or related discipline.Experience with Dataiku is a plus.Hands on experience working in Agile teams, processes, and practices.Experience with hands-on skills in containerization (e.g. AWS EKS, Kubernetes).Experience with hands-on skills for data pipeline orchestration (e.g. Airflow).Understanding of data science development lifecycle (e.g CRISP)\xa0.Pharma & Life Science commercial functional knowledge is a plus.Pharma & Life Science commercial data literacy is a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '196400192M', 'Industry': 'Chemical/Fertilizers/Pesticides'}, {'Company Overview': '\n\n\t\tAt Pfizer, we dedicate ourselves to humanity’s quest for longer, healthier, happier lives through innovation in pharmaceutical products. Through that, we aim to become the world’s most valued company to patients, customers, colleagues, and the communities where we work and live. We work as one - with one common commitment to making the world a healthier place to live. If you share this commitment, we invite you to explore our opportunities.\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/%5Bdigital%5D-analytics-engineer-data-engineer-10143660?jobId=jobstreet-sg-job-10143660§ionRank=769&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
ROLE SUMMARY
[{'position': 'Data Analyst'}, {'company_name': 'International SOS'}, {'small_section': ['East', 'SGD\xa04,000 - SGD\xa05,600', 'Posted on 28-Oct-22']}, {'Overall Purpose of the Job': '', 'B. Key Responsibilities': '', 'Required Skills and Knowledge:': 'Ability to use a methodology and process for requirements gathering and development.Solid analytical and troubleshooting skills required.Analytical thinking & problem solving skills.Results driven and self-motivator.Task management and ability to effectively manage multiple high priority projects.Strong written & oral communication skills.Travel Industry Experience with Global Distribution preferred.', 'Required Work Experience:': '4+ years of SQL, MS Server preferred.4+ years of experience working with ETL processes.4+ years of experience working with data quality and records management.Experience with Aurora, DynamoDB a plus.Experience developing ad-hoc queries for operational support and analysis purposes.Strong experience with providing help desk experience in a customer facing role; ability to establish and maintain relationships with Vendors, Clients and team members.Travel data experience preferred.', 'Required Qualifications': 'BA or higher Degree in computer science or related discipline preferred.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '198104581M', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '15 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Expo MRT station'}, {'Company Overview': '\n\tInternational SOS is the world’s leading medical and travel security risk services company.\xa0 We care for clients across the globe, from more than 850 locations in 92 countries.\n\n\n\tOur expertise is unique: More than 11,000 employees are led by 1,400 doctors and 200 security specialists.\xa0 Teams work night and day to protect our members.\xa0 We pioneer a range of preventive programmes strengthened by our in-country expertise.\xa0 We deliver unrivalled emergency assistance during critical illness, accident or civil unrest.\xa0 We are passionate about helping clients put Duty of Care into practice.\xa0 With us, multinational corporate clients, governments and NGOs can mitigate risks for their people working remotely or overseas.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-10061640?jobId=jobstreet-sg-job-10061640§ionRank=770&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Overall Purpose of the Job
[{'position': 'Data Scientist Intern - (BRIC) - 2022 #Urgent*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities:': 'Summer Internship - 09 May 2022 to 29 July 2022 (12 weeks).Off-cycle Internship - 01 August 2022 to 16 December 2022 (20 weeks).Protect users, including and beyond content consumers, creators, advertisers;.Secure platform health and community experience authenticity;.Build infrastructures, platforms and technologies, as well as to collaborate with many cross-functional teams and stakeholders..Build rules, algorithms and machine learning models, to respond to and mitigate business risks in products/platforms. Such risks include and are not limited to abusive accounts, fake engagements, spammy redirection, scraping, fraud, etc.;.Analyze business and security data, uncover evolving attack motions, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries;.Define risk control measurements, quantify, generalize and monitor risk related business and operational metrics, and align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications:': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Computer Science, Statistics, Mathematics, Internet Security or a related technical discipline;.Proficiency in data/statistical analytical tools, such as SQL, R and Python;.Ability to think and communicate critically, rigorously and concisely;.Strong sense of ownership and urgency, proactive and skillful communication, ability to handle high complexity problems and cross-functional alignment while being consistently independent, objective and rational;.Experience in academia or industry leading skills in online social/content platforms, online commercial or financial businesses, state-of-art machine learning theories and applications would be advantageous..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-bric-2022-urgent*-10120092?jobId=jobstreet-sg-job-10120092§ionRank=771&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Engineer Intern (TikTok Data Platform) - 2022 #URGENT'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted 23 hours ago']}, {'Responsibilities': 'Provide end to end solutions to enable business;.Data warehouse modeling design & implementation;.Data pipeline & services development for data products;.Developing and optimizing ETL processes;.Enriching & optimizing technical documents..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree in Computer Science, related engineering discipline, or equivalent practical experience;.Proficiency in SQL with related project experience;.Software development experience in one or more general-purpose programming languages, such as Java/Go/C++/C#/Python;.Good understanding of the Hadoop ecosystem, open-source big data tech stacks like Hive, MapReduce, Spark, etc;.Familiar with large-scale data warehouse architecture design, data model design, and ETL;.Good understanding of streaming pipeline development, open-source OLAP engines, or Machine Learning/Data Mining is a plus;.Strong analytical thinking and exceptional attention to detail;.'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-intern-tiktok-data-platform-2022-urgent-10145894?jobId=jobstreet-sg-job-10145894§ionRank=774&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate (Data Analyst & Machine Learning Specialist) - [R00008084] -#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Able to develop software codes for autonomous simultaneous localization and mapping of moving equipment..Should be able to develop framework for multi accesses edge computing..Train machine learning and deep learning models on a computing cluster to perform visual recognition tasks such as segmentation, detection, self-supervised depth estimation and end-to-end control..Multi sensor fusion based software integration from physical system to virtual environment..Prepare reports and documentations for the research programs, and support data analysis..Test and validate developed autonomous codes against physical systems..Program development for sensor systems and dashboard visualization..Creating lab scale setups and fixtures in tune to vehicle level performance..Formulating process experimental plans both lab level and real field level..Running experiments and troubleshooting systems..Developing potential improvements to the health monitoring system and testing potential solutions..', 'Job Requirements:': 'Master’s degree in computer science engineering/Electronics Engineering. Related degree preferred. Related experience would be given high priority..Experience with signal processing..Strong python programming, software development best practices, debugging and profiling..Knowledge on at least one mainstream deep learning framework such as Pytorch , Tensorflow and CNN..Familiarity with data science tool kit such as Jupyter, pandas, Linux environment..Familiarity of AWS or Azure..Solid understanding of algorithms, linear algebra, machine learning, computer systems/architecture, neural network..Basic Knowledge with sensor system, interface, data conversion and software programming..Effective communication and report writing skills..Experience in use of applicable business software applications..Prior experience and knowledge in Data analysis and Machine learning algorithms development..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-analyst-machine-learning-specialist-%5Br00008084%5D-urgenthire-10134234?jobId=jobstreet-sg-job-10134234§ionRank=775&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Ads Data Scientist #WorkNow #Urgent*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': '', 'About the Role': '', 'What you will do': 'Lead in the ideation, creation, and prototyped deployment of sophisticated custom insights, ad effectiveness meta-analysis, or tooling for large-scale data environments for use by wider measurement teams.Contribute with global teams on data lake designs for regional best practices.Organize and build a data science culture across the organization designed to empower behavior change.', 'Qualifications': 'Proficiency in SQL, HIVE, R, and experience with large-scale data problems where machine learning or Artificial Intelligence methods have been leveraged.Experience with complex systems that require classification and automation.Experience with internet cookie and person-based data environments.Intellectual curiosity for advancements of cryptographic privacy-preserving methods.Excellent external communication and succinct writing skills are a must.Exceptional time and goal-oriented task management skills are a must.Interest in working in a fast-paced growth environment with global talent.Experience in peer training for organizational scale is a strong differentiator.Experience in prototyping work that leads to decision-making is a plus.'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/ads-data-scientist-worknow-urgent*-10119797?jobId=jobstreet-sg-job-10119797§ionRank=776&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist Research #LetsGetToWork'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Design and build advanced analytical solutions and products to deliver superior business outcomes using research and performing quantitative and qualitative analysis on markets, products and competitors.Prove business impact of projects using methods like experimental designs, cohort matching, and causal inference.Understand underlying data sources and their limitations. Create innovative approaches to answer pressing questions, prepare complex data analyses and models that help solve issues, drive the scaling of automated processes and deliver significant measurable impact.Act as an analytics translator, communicating complex data insights through exploratory analysis and research to discover potential bottlenecks to suggest improvement and workflow of internal teams.Liaise with team members and management in understanding their data needs and providing data support..', 'Qualifications': '3-7 years of hands-on mathematical modeling experience in business environment.Proficiency in Python packages such as pandas, seaborn, scikit-learn, dplyr or nltk.Advanced knowledge of statistical and data mining techniques (k-means clustering, regression, decision trees, clustering, neural networks, etc.).Proven experience in working with large datasets and relational databases (Hive, SQL).PhD in quantitative field like Computer Science, Engineering, Statistics, Mathematics or related field required..Distinctive communications skills and ability to communicate analytical and technical content in an easy to understand way to both technical and non-technical audiences..Intellectual curiosity, along with excellent problem-solving and quantitative skills, including the ability to disaggregate issues, identify root causes and recommend solutions.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-research-letsgettowork-10119454?jobId=jobstreet-sg-job-10119454§ionRank=777&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Assistant, - (Computer Science and Data Science) - R00006992 #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities': 'The Research Assistant(RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning. The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data. This includes:.Conduct literature study.Design and implement new algorithms and machine learning models.Collect datasets and conduct experiments on the datasets.Write research papers and present the results at conferences.', 'Job Requirements': 'Bachelor degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal data.Programming skills, and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-and-data-science-r00006992-urgenthire-10137244?jobId=jobstreet-sg-job-10137244§ionRank=778&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Data Scientist (Gaming, $8.5k)'}, {'company_name': 'RecruitFirst Pte. Ltd'}, {'small_section': ['Central', 'SGD\xa07,000 - SGD\xa08,500', 'Posted on 13-Oct-22']}, {'R, Python, SQL, Excel.': 'Experience/ Knowledge in:.Hypothesis Testing (Eg. t-test, Anova, chi-sq).Modeling (Eg. Regression, Decision Trees, Random Forests, Neural Networks, Clustering, Classification, K-cross validiation etc).Big Data frameworks/ technologies (Eg. Spark, Hive etc).Location: Central.Working hours: Office hour.Industry: Gaming.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '13C6342', 'EA No.': '13C6342', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '13 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGrow your company with RecruitFirst!\n\n\n\tThe business environment today is a highly competitive one, which is ever evolving. Having the right human resource business partner with a strong network of consultants and candidates has become key to the success of industry leading businesses.\n\n\n\tRecruitFirst is the fastest growing human resource consultancy in the Asia Pacific. Our mission is Helping People Find Better Jobs, and Organisations Find Better People. We live by this mission by ensuring that the best candidates and employers are connected via the rigorous recruitment processes and extensive database that we are continuously developing.\n\n\n\tBe the first to recruit with us and start realising the value-add that we are able to provide to your organisation!\n\tEnjoy the expansive array of human resource solutions and network which RecruitFirst has to offer.\n\tTogether with our affiliates, we have operations in 8 countries and 10 cities across Asia Pacific – Singapore, Kuala Lumpur, Bangkok, Hong Kong, Shanghai, Beijing, Guangzhou, Taipei, Tokyo and Seoul. This geographical network gives us the strategic advantage of acquiring the best candidates to satisfy the human resource strategies of multi-national companies. In addition, with this large network of consultants, we are also able to provide for all your human resource needs, including, temporary staffing, contract staffing, executive search, payroll services, global placement or management consultancy.\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-gaming-%248.5k-10059640?jobId=jobstreet-sg-job-10059640§ionRank=779&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
R, Python, SQL, Excel.
[{'position': 'Data Scientist Intern, Growth #WorkNow #Seekbetter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with Data Engineers, Data Analysts, Product and other engineers to deliver features to drive the user growth of products..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;.Knowledge of statistical data analysis such as linear models, multivariate analysis, stochastic models, sampling methods..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth-worknow-seekbetter-10118681?jobId=jobstreet-sg-job-10118681§ionRank=780&token=0~de7f27b9-24bf-4407-b2b7-f5ef26659275&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate, - (Computer Science & Data Science) - R00005334 #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'The Research Associate (RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning..The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data..', 'Job Requirements:': 'Master degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal and graph data.Programming skills and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-data-science-r00005334-seekbetter-10142472?jobId=jobstreet-sg-job-10142472§ionRank=782&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': '2023 START Technology Intern Program - Data Science - NYC #UrgentHire'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Student Technology, Agile & Readiness Training (S.T.A.R.T) Program': '', 'Program Highlights:': '', 'Agile project experience:': '', 'Learning & Development:': '', 'Mentorship:': '', 'Career opportunities:': '', 'Program Locations:': 'US: New\xa0York, NY.', 'Primary Responsibilities:': 'Apply\xa0scientific methods\xa0to\xa0find solutions\xa0to\xa0real business problems..Perform data analysis, feature engineering,\xa0and\xa0advanced methods\xa0to\xa0prepare\xa0and\xa0develop decisions\xa0based\xa0on data..Data mining using state-of-the-art methods.Provide insight into observed business outcomes through analytics..Perform data profiling\xa0to\xa0identify\xa0and\xa0understand anomalies\xa0in\xa0data..Automate data analysis\xa0and\xa0streamline analytical processes.Provide recommendations\xa0based\xa0on data trends uncovered when possible.Stays abreast\xa0of\xa0organization\xa0and\xa0management changes\xa0and\xa0has\xa0in-depth knowledge\xa0of\xa0company practices relevant\xa0to\xa0data science products..Grow\xa0and\xa0develop skills across\xa0the\xa03 domain specialties: Machine Learning, Feature Engineering\xa0and\xa0Advanced Analytics capabilities. Stressing expertise in\xa0the\xa0core functional areas: Computer Programming, Math & Analytic Methodology, Distributed computing,\xa0and\xa0communications\xa0of\xa0complex results..', 'Program Eligibility/Qualifications:': 'Enrollment\xa0in\xa0a 4-year undergraduate (U.S.)\xa0degree\xa0program with a\xa0strong\xa0focus on technology-related majors (i.e., Computer Science, Computer Engineering, or a similar major with extensive Data Science, Statistics, or related fields.).Rising junior or senior (U.S.) graduating in Dec 2023or May 2024.Minimum cumulative GPA\xa0of\xa03.0\xa0or\xa0above..Does\xa0not\xa0require\xa0sponsorship\xa0for employment\xa0visa\xa0status\xa0(now\xa0or\xa0in\xa0the\xa0future)\xa0in\xa0the\xa0region\xa0where\xa0applying.', 'Preferred skills:': 'A\xa0great\xa0attitude\xa0and\xa0desire for learning.Excellent problem solving, written\xa0and\xa0oral communication skills.Disciplined self-starter, capable\xa0of\xa0working\xa0independently\xa0or\xa0in\xa0close collaboration.Smart\xa0and\xa0driven individual who\xa0is\xa0passionate about learning\xa0new\xa0technologies.'}, {'Career Level': 'Entry Level', 'Qualification': "Primary/Secondary School/O Level, Higher Secondary/Pre-U/'A' Level, Diploma, Advanced/Higher/Graduate Diploma", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/2023-start-technology-intern-program-data-science-nyc-urgenthire-10145340?jobId=jobstreet-sg-job-10145340§ionRank=783&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Student Technology, Agile & Readiness Training (S.T.A.R.T) Program
[{'position': 'Data Scientist - Model Training #JobsThatMatter #Urgent*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Vision': '', 'Responsibilities': 'Work with other data scientists in the project team to design the data solution and model training plans.Carry out research, report writing and communication with key stakeholders of each project.Use model training platform to do model training/ iteration/ testing, keep automating the training process by raising suggestions and demands to the model training platform.', 'Qualifications': "Bachelor's degree in statistics, sociology, mathematics, or a related field.At least 2 years of experience in data applications or data analysis.Ability to understand the need of enterprise customers, content creators and users, and a desire to drive solutions to their problems.Outstanding skill of communication, collaboration, project management, excellent team player, strong sense of responsibility.Self-driven, passionate about impacting business with data.Advanced English skill."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-model-training-jobsthatmatter-urgent*-10119668?jobId=jobstreet-sg-job-10119668§ionRank=784&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Vision
[{'position': 'Big Data Developer'}, {'company_name': 'Talent Trader Group Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa07,000', 'Posted on 21-Oct-22']}, {'Responsibilities:': 'Design, develop and support the real time data platform.Conceptualize, evaluate\xa0and build proof of concepts on new models, tools and techniques.Collaborate, peer review, cross skill and share expertise with other team members.Performance tuning of the system and work on new ways to increase\xa0efficiency.', 'Requirements:': 'A passion to solve interesting problems in metadata management and Big Data.Strong hands-on experience in Core Java (Ideally have the knowledge of Java 8).Good knowledge in JMS (Active MQ, Kafka, Rabbit MQ).Good knowledge in Apache Camel.Familiar with Linux operation system.Strong knowledge in SQL (Oracle, MySQL, MariaDB).Big Data exposure with Hadoop, HIVE, Spark, Impala, Sqoop, Oozie.', 'APPLY': []}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201230353E', 'EA No.': '13C6305', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tOur business philosophy stems from our belief that Mid management are vital to all organisations.\n\tWe thus focused our specialisation to the placement of these professionals and we are now among Singapore’s leading Mid management recruitment firms.\n\n\tOur understanding of Mid recruitment spans the following areas:\n\n\n\t\tIndustry knowledge\n\n\t\tCandidate psychology\n\n\t\tPre-recruitment analysis\n\n\t\tRecruitment\n\n\t\tPost recruitment maintenance\n\n\n\n\tWe are fully committed to achieving excellence in every assignment through leveraging our vast candidate pool, industry connections and strategic insights.\n\n\tFor candidate who applied for the advertised position is deemed to have consented to us that we may collect, use or disclose your personal information for purpose in connection with the services provided by us.\n\n\tMOM License No. 13C6305\n\n\thttp://talenttradergroup.com/'}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-developer-10087914?jobId=jobstreet-sg-job-10087914§ionRank=785&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Scientist - Model Training #WorkNow #JobsThatMatter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Vision': '', 'Responsibilities': 'Work with other data scientists in the project team to design the data solution and model training plans.Carry out research, report writing and communication with key stakeholders of each project.Use model training platform to do model training/ iteration/ testing, keep automating the training process by raising suggestions and demands to the model training platform.', 'Qualifications': "Bachelor's degree in statistics, sociology, mathematics, or a related field.At least 2 years of experience in data applications or data analysis.Ability to understand the need of enterprise customers, content creators and users, and a desire to drive solutions to their problems.Outstanding skill of communication, collaboration, project management, excellent team player, strong sense of responsibility.Self-driven, passionate about impacting business with data.Advanced English skill."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-model-training-worknow-jobsthatmatter-10120012?jobId=jobstreet-sg-job-10120012§ionRank=786&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Vision
[{'position': 'Senior Education Research Scientist in Office of Education Research, (R00010525)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Requirements for Senior Education Research Scientist': 'PhD in a relevant discipline;.Preferably with 5 years postdoctoral experience or equivalent relevant to Learning Sciences and/or Technology-Enhanced Learning;.Experience in cutting edge scientific research methodologies and addressing intractable challenges in education and involvement in translation work;.Demonstrable track record in the following areas:.Research leadership in a research group or center.High quality publications (i.e. quality and impact of academic publisher, citations and ranking of journal publications etc.).Writing of or contribution towards research proposals which are submitted for peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences);.Attainment of funding through a competitive peer-reviewed process;.Excellent interpersonal and communication skills; and.Experience working with Government stakeholders.Demonstrable track record in the following areas:.Research leadership in a research centre or in a large competitive, peer-reviewed research grant.Supervision of undergraduate and/or graduate students.Experience engaging with diverse stakeholders including Government stakeholders, Community Organizations and the Public.', 'Principal Education Research Scientist': '', 'Responsibilities of Senior Education Research Scientists': 'Take a leading role in the further development of the research programmes and in seeking and pursuing appropriate external funding in the area;.Apply for and conduct quality research and work collaboratively to charge new directions for education, teaching and learning informed by scientific investigation and analyses;.Disseminate the outcomes of the research including in peer-reviewed academic publications of international standing and translation of research findings into NIE and MOE school programmes.Participate fully in the wider research and service activities to OER/NIE;.Take responsibility for, manage and conduct administrative and management tasks;.Mentor junior faculty and research staff;.Supervise students by research and/or dissertation (i.e. supervise M.A. / M.Sc. students and / or co-supervise Ed.D. students).Provide administrative and service support to the office and/or NIE as assigned by the people manager.', 'Closing Date': '', '(OER SERS: OER) ': 'Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research interests and achievements;.1 to 3 of your best publications;.Name of 3 referees;.Cover letter addressing how you meet the requirements of this position (optional);.Any other documents that demonstrate your qualifications.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-education-research-scientist-in-office-of-education-research-r00010525-10070207?jobId=jobstreet-sg-job-10070207§ionRank=787&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Requirements for Senior Education Research Scientist
[{'position': 'Research Associate / (Computer Science & Engineering/Software Engineering)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Designing and developing scalable algorithms for software vulnerability data augmentation and software vulnerabilities category.Writing research papers of high quality based on research results.Building deployable tools based on the research results.', 'Job Requirements:': 'Master degree in Computer Science & Engineering and Software Engineering.Excellent background and research experience in static vulnerability analysis, machine learning and data augmentation.Research experience in vulnerability analysis and static analysis tools is a plus.Publication record in top-tier venue related to cyber security, and machine learning is a plus.Excellent background in algorithms.Excellent background in software engineering with Advanced Programming Skills (Python, C/C++, Java).Good communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-engineering-software-engineering-10072693?jobId=jobstreet-sg-job-10072693§ionRank=788&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Product Data Analyst, Data Analysis #JobsThatMatter #Seekbetter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'About Tiktok': '', 'About the Team': '', 'Responsibilities:': 'Perform analysis on product usage product performance data..Identify factors affecting product usage, performance and growth, derive meaningful insights to guide to better product and decision making for our business leaders..Work with cross functional partners (Product Managers/Operations/Engineering etc.) for product optimization and bring value to the business..Design A/B experiments to optimize and drive future product developments..Perform market activity analysis and any other analytics that would help guide product and business decision making..Construct specialized data models based on product needs and business requirements..', 'Qualifications:': '', 'Minimum Qualifications': "Bachelor's degree in Statistics, Mathematics or any other relevant fields..Past projects involving Analytics of any Internet or large scale B2C products..Excellent communication skills with ability to communicate conclusions effectively to both technical and non-technical audiences..Strong user affinity with solid understanding of product usage and performance..Available and able to participate in a 4 month structured overseas training program..", 'Preferred Qualifications': 'Proficiency in Tableau, or similar data visualization tools..Proficiency in SQL, Python..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/product-data-analyst-data-analysis-jobsthatmatter-seekbetter-10144667?jobId=jobstreet-sg-job-10144667§ionRank=789&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
About Tiktok
[{'position': 'Research Fellow (Mathematical AI for Molecular Data Analysis)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Perform molecular data analysis, including molecular dynamics analysis, quantum mechanism analysis, geometric and topological modeling.Data analysis with machine learning and deep learning models.', 'Job Requirements': 'PhD in Mathematics, computer sciences, bioinformatics, computational physics/chemistry/biology, or other related areas.Previous experience on topological data analysis, machine learning and molecular data analysis is preferred.Have good training on computation, algorithm design and modeling.Research areas on applied topology, computational geometry/topology, molecular dynamics, bioinformatics, data analysis, and machine learning.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-mathematical-ai-for-molecular-data-analysis-10055552?jobId=jobstreet-sg-job-10055552§ionRank=790&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Asst., - (Bioinformatics Support) [R00005704]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Day-to-day operation of the genome sequencing laboratory’s IT infrastructure.Providing technical support, which includes managing instrument’s raw data and subsequent post-processing, configuring and maintaining sequencing instruments, supporting the wet-lab team, and troubleshooting technical issues.Providing analytical support, which includes benchmarking new methods/protocols or bioinformatics tools, providing technical assessment on new advancements in genomics, and providing data analysis recommendations to other bioinformatics team members.', 'Job Requirements:': 'Bachelor’s degree with minimum 3 years of experience in a bioinformatics role with relevant technical, user support, or project experience.Demonstrated hands-on experience in the management and handling of next-gen sequencing instrument data (Illumina, Oxford Nanopore, and/or PacBio) and subsequent data processing.Strong understanding of genomics and bioinformatic concepts needed to support the analysis of next-gen sequencing data.Demonstrated hands-on experience in bioinformatics data analysis, e.g., sequence alignment, genome assembly, metagenomics analysis.Strong understanding of basic IT infrastructure knowledge, e.g., operating system, networking, data storage.Competence in R, Perl, Python or other scripting language appropriate for bioinformatic analyses.Experience in using high-performance computing is a plus.Experience in wet-lab molecular biology techniques is a plus.Strong project management skills.Strong analytical skills and meticulous attitude.Able to work independently or in a team with minimal supervision.Good communication, writing and presentation skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-asst.-bioinformatics-support-%5Br00005704%5D-10073083?jobId=jobstreet-sg-job-10073083§ionRank=791&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Product Data Analyst, Data Analysis #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'About Tiktok': '', 'About the Team': '', 'Responsibilities:': 'Perform analysis on product usage product performance data..Identify factors affecting product usage, performance and growth, derive meaningful insights to guide to better product and decision making for our business leaders..Work with cross functional partners (Product Managers/Operations/Engineering etc.) for product optimization and bring value to the business..Design A/B experiments to optimize and drive future product developments..Perform market activity analysis and any other analytics that would help guide product and business decision making..Construct specialized data models based on product needs and business requirements..', 'Qualifications:': '', 'Minimum Qualifications': "Bachelor's degree in Statistics, Mathematics or any other relevant fields..Past projects involving Analytics of any Internet or large scale B2C products..Excellent communication skills with ability to communicate conclusions effectively to both technical and non-technical audiences..Strong user affinity with solid understanding of product usage and performance..Available and able to participate in a 4 month structured overseas training program..", 'Preferred Qualifications': 'Proficiency in Tableau, or similar data visualization tools..Proficiency in SQL, Python..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/product-data-analyst-data-analysis-urgenthire-10144788?jobId=jobstreet-sg-job-10144788§ionRank=792&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
About Tiktok
[{'position': 'Data Analyst'}, {'company_name': 'Newbridge Alliance Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 20-Oct-22']}, {'Job scope': 'Making sure of data from different sources, understand the relationship and limitation between each..Deliver accurate and insightful reports with metrics that will assist the business team to evaluate results and performance.Responsible for trend analysis and advise on insights to senior management.Maintenance of databases to ensure high-quality data.Support development work to maintain the integrity of data and dataflows and data analytics capabilities with the company.', 'Requirement': 'Strong SQL technical skills in extracting & manipulating data.Strong experience in Power BI, data modeling & warehousing expertise.Python programming skills or other similar programming languages.Analytical and conceptual thinking skills.At least 3 years in working with data assets with the purpose of delivering useful info for senior management to make business decisions..', 'Good to have\xa0': 'Experience with working with cloud platforms.Understanding of OLAP and ETL.Understanding of data governance, quality & control.Building and deploying of learning/statistical models.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Sales/Marketing, E-commerce', 'Registration No.': '201622755N', 'EA No.': '20S0283', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '24 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tA part of the larger CGP Group, Newbridge Alliance provides businesses with the digital solutions they need to excel in an increasingly shifting market. Based in Singapore with a key focus on the Far East and Greater China, we have worked with clients across the globe to access the right leadership to stay ahead of the digital curve.\n\n\tThrough strategic and future-oriented executive search, we help businesses to find the best leaders of tomorrow across the digital-led sectors through our access to the talent businesses need. Additionally, our consulting services provide leaders across Asia and beyond with the means to drive real change.\n\n\tCornerstone Global Partners (CGP) is an Asia-centric recruitment solutions firm with a global reach through offices in China, Hong Kong and Singapore, along with network offices in 40 other countries around the globe. We provide services which include traditional C-level to mid-level executive search, contract staffing, market entry/outbound investment consultancy and organizational design solutions through our industry-specialized recruiting team.\n\n\tEA Licence number: 20S0283'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-10083638?jobId=jobstreet-sg-job-10083638§ionRank=793&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Job scope
[{'position': 'Research Associate (Microbiology) [LKCMedicine] (R00008139)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-microbiology-%5Blkcmedicine%5D-r00008139-10053068?jobId=jobstreet-sg-job-10053068§ionRank=794&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
[{'position': 'Senior Data Scientist'}, {'company_name': 'Unravel Carbon Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'About Unravel Carbon': '', 'About\xa0the\xa0role': '', 'What\xa0you\xa0will\xa0work\xa0on': 'Continuously improve our carbon engine, which\xa0is\xa0responsible for calculating carbon emissions across\xa0all\xa0scopes for our customers, using transactional data provided by them,\xa0and\xa0our proprietary data set\xa0of\xa0carbon emission factors..Lead our efforts\xa0to\xa0build a system that leverages our various data sets\xa0to\xa0automatically find decarbonization solutions for our customers..Collaborate with carbon data analysts, data engineers\xa0and\xa0sustainability experts\xa0to\xa0expand and maintain our data set\xa0of\xa0carbon emission factors..', 'About\xa0you': 'You\xa0have\xa07+\xa0years\xa0of\xa0experience\xa0in\xa0data science roles,\xa0preferably\xa0using Python as\xa0the\xa0main programming\xa0language..You\xa0have\xa0built NLP systems that power products that delight customers..You\xa0are\xa0able\xa0to\xa0own\xa0the\xa0entire lifecycle\xa0of\xa0a data science project.\xa0You\xa0don’t\xa0need\xa0to\xa0be\xa0an expert on every aspect\xa0of\xa0it,\xa0but\xa0you\xa0must\xa0be\xa0a quick learner\xa0to\xa0pick things up\xa0and\xa0go deep when needed..You\xa0have\xa0a\xa0strong\xa0product mindset,\xa0and\xa0enjoy\xa0working\xa0cross-functionally..You\xa0use solid engineering practices,\xa0and\xa0write maintainable code..You\xa0thrive\xa0in\xa0a fast-paced\xa0environment..You\xa0enjoy mentoring others,\xa0and\xa0introduce\xa0and\xa0promote best practices across\xa0the\xa0team..', 'Bonus points\xa0if': 'You\xa0have\xa0experience with data-intensive applications..You\xa0have\xa0worked with MongoDB (or other non-relational databases), Airflow\xa0and/or\xa0Apache Spark..You\xa0have\xa0worked with MLOps tools, such as Metaflow or MLflow.You’ve worked on recommender or forecasting systems..You\xa0have\xa0a Master\xa0or\xa0PhD\xa0degree\xa0in\xa0Applied Computing, Computational Linguistics, Machine Learning\xa0or\xa0a related field..'}, {'Career Level': 'Senior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '202133106R', 'Industry': 'Computer / Information Technology (Software)'}, {'Company Overview': 'ABOUT UNRAVEL CARBONUnravel enables companies to assess their carbon footprint by tracking their digital financial footprint with its proprietary carbon emission factor model; making it easy, fast and convenient to become climate positive.We aim to accelerate the participation of all companies, big and small, in the global fight against climate change. And we want to do it the 21st century way—autonomous, painless, and beautiful.Unravel consists of a team of software engineers, data scientists, founders and climate experts with a passion to solve the world’s most pressing issue—climate change.Collectively, our leadership team has launched and invested in multiple companies, and are now combining their experience and knowledge here at Unravel.Unravel was founded in 2021 with headquarters in Singapore.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-scientist-10119205?jobId=jobstreet-sg-job-10119205§ionRank=795&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
About Unravel Carbon
[{'position': 'Data Migration Application Engineer (Ang Mo Kio) - Up to $6500 + Bonus'}, {'company_name': 'P-Serv Pte Ltd'}, {'small_section': ['Ang Mo Kio', 'SGD\xa04,500 - SGD\xa06,500', 'Posted on 31-Oct-22']}, {'Ang Mo Kio': 'Ang Mo Kio.Database (ORACLE to MSSQL).', 'Database (ORACLE to MSSQL)': 'Basic up to $6500 + Bonus.', 'Basic up to $6500 + Bonus': 'Reputable Engineering Company in Singapore.', 'Reputable Engineering Company in Singapore': '', 'Overview': '', 'Responsibilities': 'Plan, design, test & conduct Data Migration in accordance to specifications & service level. Where relevant, perform the necessary programming & configuration..Manage Data migration program, scripts changes through established change request process & provide status reports to the relevant parties..', 'Location: ': '', 'Working Hours: ': '', '(': '', 'Night work may required with transport and nigh work allowances given': '', ')': '', 'Salary Range: ': '', 'Requirements': 'Data migration from ORACLE to MSSQL.Experience in ETL tools such as SSIS etc..Possess Oracle, PL/SQL programming knowledge. Typically 3 or more years’ experience with substantial project work in software development..Possess relevant system development / maintenance experience using Java, PL/SQL related technologies.Possess initiative and disposition with a strong commitment and orientation towards results and high quality standards.Strong problem-solving skills and ability to think out of the box.Diploma / Degree in Computer Science / Computer Engineering / Information Technology related field, or IT equivalent.', 'Apply Now': '', '8907 5795': '', 'P-Serv Pte Ltd': '', 'EA License No: 90C3494': '', 'LOKE JUN SHENG (JASON) | Registration No. R2092011': '', '“By sending us your personal data and curriculum vitae (CV), you are deemed to consent to P-Serv Pte Ltd and its affiliates to collect, use and disclose your personal data for the purposes set out in the Privacy Policy available at https://www.p-serv.com.sg/privacy-policy. You acknowledge that you have read, understood, and agree with the Privacy Policy.”': []}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200701282M', 'EA No.': '90C3494', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '7 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tP-Serv is one of Singapore’s most established HR solutions providers. We are the local leader in providing business process outsourcing solutions in projects related to customer service management, collections management and payroll administration. We also provide temporary and contract placements that fits the business needs and requirements of our clients.\n\n\t\tFounded in 1990 and acquired by Kelly Services Singapore (Now PERSOLKELLY Singapore) in 2007, we have a proven track record across various different industries and have established long-term partnerships with some of Singapore’s finest local companies and key government agencies.\n\n\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to P-Serv Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.p-serv.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\tPlease visit www.p-serv.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-migration-application-engineer-ang-mo-kio-up-to-%246500-bonus-10118333?jobId=jobstreet-sg-job-10118333§ionRank=796&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Ang Mo Kio
[{'position': 'Research Engineer (computer vision and deep learning)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-computer-vision-and-deep-learning-10128597?jobId=jobstreet-sg-job-10128597§ionRank=797&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
[{'position': 'VP, Data Scientist, Human Capital Analytics, Group Human Resources - (WD33341) #Immediate'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Who you are:': '', 'You’re no doubt a data whiz': '', 'you’re known to be both a problem-solver and an opportunity-explorer.': '', 'you have the necessary hard, and soft, skills to succeed.': '', 'Your role involves:': 'Work amongst a team of data scientists in partnering with business intelligence developers, visualisation and insights experts, and HR business specialists to assess our organisation’s human capital needs and identify opportunities to apply data analytics..Improving the way we design our end-to-end employee journey through experimentations..Defining analytical strategy, problem statements and hypotheses to address identified opportunities, including analytical approaches, data and technology requirements..Developing predictive models and performing statistical analyses to identify key areas of risk and predict risk events, across a range of banking functions..Designing and implementing tracking and feedback mechanisms to allow for capturing of actions and the impact of data-driven decisions on business outcomes..', 'Your background:': 'You have the track record:.You have at least 5-8 years of hands-on experience with analytical tools and techniques, and of which, past 5 years of relevant experience being in an analytical function building and implementing various statistical models, working with large amounts of data and articulating business questions, data extraction and use of statistical approaches to arrive at an answer..You’ve built and operationalised the analytical capability of a business or organisation..You have the basics covered:.Able to translate business problems into mathematical formulations? Check..Understand mathematical and Artificial Intelligence (AI) Machine Learning (ML) modelling techniques? Check..Proficient in data manipulation and analysis? Check..Programming experience in R, Python, Spark or other statistical software? Check..Other programming languages can include SQL, Hadoop, Java, Hive, and/or MariaDB? Check..Experience using ‘Git’ as a version control tool, preferably with the ability to work in Linux environment? Check..', 'Ideally, you should have:': 'Experience working with unstructured datasets, and knowledge in text mining and text analysis..Deep interest and aptitude in data, metrics, analysis and trends and applied knowledge of statistics, measurements and model evaluation..HR domain knowledge and/or People analytics-related experience is a plus..'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Admin/Human Resources, Human Resources', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-data-scientist-human-capital-analytics-group-human-resources-wd33341-immediate-10127974?jobId=jobstreet-sg-job-10127974§ionRank=799&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Who you are:
[{'position': 'Scientist (AI), Computing & Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Responsibilities\xa0': 'Build world-class capabilities and excellence in Physics-based AI to be recognized by international research communities.Work with scientists with both AI and physics background in IHPC to develop fundamental physics-based AI framework and algorithms, and\xa0publish high impact papers to advance science.Execute programmes to ensure timely delivery of project milestones with high-quality outcomes\xa0.', 'Requirements': 'PhD degree in Computer Science/Electrical & Electronics Engineering/Computer Engineering or equivalent.Research experience in one or more areas of AI, such as Machine Learning, Deep Learning, Computer Vision, Graph Neural Networks, Generative Adversarial Networks, Statistical Learning..Strong track record of research in AI and Scientific Computing.Strong problem solving and analytical skills.Strong communication and presentation skills.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-ai-computing-intelligence-ihpc-10124273?jobId=jobstreet-sg-job-10124273§ionRank=800&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Assistant (Computer Science/Engineering/Electrical), - (R00008286)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Development of graph-based reasoning networks for facial landmark detection.Development of spatial temporal graph-based reasoning network to improve the accuracy of video facial landmark detection.Development of stabilization methods for video facial landmark detection.Development of graph neural network theory.Development of sequence modeling theory.Development of deep learning methods and theory.Development of computer vision methods\u200b.', 'Job Requirements:': '\u200bBachelor degree or above in Computer Science/Engineering, or Electrical/Electronic Engineering.Strong mathematical background and related project experience.Top-tier AI venue publications are very much preferred.Minimum 2 years of related work experience.Deep understanding of the theory of Machine Learning, Deep Learning, Computer Vision.Experience in at least one Deep Learning framework such as Tensorflow, Pytorch and Programming Languages such as Python, Matlab, R and/or C/C++.Demonstrated project experience related to graph-based reasoning and facial landmark detection will be an advantage.Good written and oral communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-engineering-electrical-r00008286-10072675?jobId=jobstreet-sg-job-10072675§ionRank=802&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Security Data Scientist, Creator Platform #JobsThatMatter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': '', 'Qualifications': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/security-data-scientist-creator-platform-jobsthatmatter-10119057?jobId=jobstreet-sg-job-10119057§ionRank=803&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Post Doctoral Fellow, Laboratory of Systems Biology & Data Analytics, GIS'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Postdoctoral fellows: Machine Learning\xa0and\xa0Mathematical Analysis of Spatial Transcriptomics Data (Genome Institute of\xa0Singapore)': '', 'Requirements': 'PhD in mathematics, computer science, statistics, engineering, machine learning, signal processing, computer\xa0vision, computational genomics,\xa0or\xa0a related field.Experience with analysis\xa0and\xa0interpretation of genomic data.Strong\xa0programming skills.Quantitative intuition,\xa0and\xa0some mathematical maturity.Strong\xa0publication record.Strong\xa0communication skills.The ability to\xa0work\xa0closely with clinicians\xa0and\xa0experimental biologists.', 'The above eligibility criteria are\xa0not\xa0exhaustive. A*STAR may include additional selection criteria\xa0based\xa0on its prevailing recruitment policies. These policies may be amended\xa0from\xa0time to time without notice. We regret that only shortlisted\xa0candidates\xa0will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/post-doctoral-fellow-laboratory-of-systems-biology-data-analytics-gis-10125944?jobId=jobstreet-sg-job-10125944§ionRank=804&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Postdoctoral fellows: Machine Learning and Mathematical Analysis of Spatial Transcriptomics Data (Genome Institute of Singapore)
[{'position': 'AVP / Senior Associate, - Data Scientist, ITT-TM Ops, Technology & Operations - (WD41501)'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Business Function': '', 'Responsibilities:': 'Work with large and complex financial datasets to build\xa0end-to-end\xa0data science solutions.\xa0.Deploy machine learning products into production and perform sub-system integration as required..Refactor and document code into reusable libraries, APIs, and tools..Automate CI/CD pipeline for model training, testing and deployment..Assist organizational adoption of industry leading ML ecosystem (feature/eval store, model zoo).Optimize machine learning algorithm efficiency (GPU distributed computing, concurrent programming).', 'Requirements:': 'Experience building scalable machine learning system architectures (microservice, distributed) and big-data pipelines in production..Good understanding of the data science production life cycle with demonstrable experience working with structured, semi-structured and unstructured data..Excellent software skills (Python, SQL, bash) and knowledge in design patterns and code optimization..Good grasp of Machine Learning models and concepts, their mathematical underpinnings, and trade-offs (model selection, tuning, problem formulation, drift, semi-supervised learning).Experience using NLP techniques (NER, Sentiment Analysis, Topic Modelling, transformers).Experience using machine learning frameworks (TensorFlow, Pytorch, Spark, Hydra).Familiar with software development best practices and tools (Agile, TDD, Jira, Jenkins, Git).', '\xa0\xa0Good-to-have:': 'Familiar with Linux operation system..Financial domain expertise (Treasury & Markets).\xa0Experience with statistical modelling and time series analysis..', '\xa0Professional Qualification\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0': 'A Bachelor’s degree in Data Science or Computer Science (or equivalent experience).3 – 8 years of data science/ software engineering exposure.Have experience in applying machine learning models.Able to perform unix / linux scripting..Writing of documents that clearly explain how algorithms should be implemented, verified and validated..', 'Apply Now': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/avp-senior-associate-data-scientist-itt-tm-ops-technology-operations-wd41501-10126633?jobId=jobstreet-sg-job-10126633§ionRank=805&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Business Function
[{'position': 'Senior Vice President (SVP), Senior Data Scientist, Analytics Centre of Excellence, Transformation Group - (WD41958)'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Who we are': '', 'Responsibilities:': 'The hired data scientist will play an active role in supporting the bank to build advance analytic solutions by working with the business owners/sponsors, and other data scientists to develop advance analytics solutions..The successful candidate will lead the efforts to propose advanced analytics to drive business value, including: understand the business domain and data; build end-to-end advanced analytical solutions to and deploy to production system; build the CICD practice to manage models for quick experiments and feedback loop; communicate analytics result and machine learning model details with business and stakeholders; lead and mentor junior data scientist, help them learn and grow..Analyse and identify the business problem with impact and feasibility for AI/ML solution.Develop the analytic approach and propose the solution with business impact and data/technical feasibility.Work with solution architect and tech team to ensure overall solution design is suitable for production infrastructure and dependent applications.Work with business to ensure user is able to fully leverage on the AI solution for better outcome, implement the change management / user education if necessary.Work with business and end user to design the action, decision, insight and interpretation from the model output..Responsible for the technical design, methodology, development quality, deployment and management of the models develop by the team.Responsible for the end-to-end solution development from data, model development to operation deployment of solution and user acceptance.Lead / involve in developing enterprise capability in Data/ML Operation, specialized technical area or AI/ML solution design.Build strong data team, mentor and coach data scientist. Engage, educate and develop business understanding of AI/ML solution and ability to design / improve process / product using data and AI.\xa0.Be the champion of data community, lead by example to be part of the community and build the data / AI culture such as sharing, learning, publishing, innovation and contributing/using of techniques, tooling, best practice, and reusable code / data assets..', 'Requirements:': 'PhD or Master in Computer Science, Mathematics, Statistics, Business Analytics, or related field..10+ years of experience in industry and/or academia with demonstrated track record of technical research, design, development and implementation AI/ML solution to production\xa0.Expert level in Python, PySpark, SQL and familiarity with other related technology such as MLflow, Kubernetes, Hadoop, Hive, AWS/GCP.\xa0.Mastery of various feature engineering and modelling techniques and their applications in specific situations.Mastery in Machine learning framework, solution design, development and production leveraging enterprise CICD and SDLC process..Expert working with large amount of data, creating data pipelines for processing, wrangling and feature engineering in both development and production environment..Experience building and implementing data intensive / real time\xa0machine learning solutions..Excellent problem-solving skills and strategic thinker. Ability to communicate complex analysis/models across a diverse team. Good interpersonal skill and able to influence the decision making of data science and IT.Proficient with code management tools such Git, Bitbucket, Jira and confluence.Demonstrate competency and applying skills such as problem solving, business needs analysis, design thinking, computational thinking, computational modelling, system thinking, change management and analytic consulting..', 'Apply Now': []}, {'Career Level': 'Senior Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-vice-president-svp-senior-data-scientist-analytics-centre-of-excellence-transformation-group-wd41958-10127911?jobId=jobstreet-sg-job-10127911§ionRank=806&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Who we are
[{'position': 'Data Scientist-Algorithm Strategy #JobsThatMatter #WorkNow'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Improve the recommendation strategy of short video service..Understand user behavior in depth and optimize user experience such as creation and browsing.Optimize the index system of recommendation strategy and do attribution analysis on abnormal indicators..Analyze business data in different markets, formulate targeted recommendation strategies, and evaluate strategic benefits..Study special topics such as ecological growth of short video content..', 'Qualifications': 'Have user empathy, can quickly understand user needs, and can be associated with effective data indicators..Excellent ability to analyze and solve problems, full of passion for solving challenging problems..Excellent learning ability and logical thinking ability; Have good expression and communication skills..Understanding the principle of machine learning and recommendation algorithms is preferred..Experience in data analysis of Internet companies is preferred..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-algorithm-strategy-jobsthatmatter-worknow-10120013?jobId=jobstreet-sg-job-10120013§ionRank=807&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Scientist (Quantum Information and Measurement) (SRI), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Main Responsibilities': 'Undertake\xa0directed and\xa0independent research in the area of quantum photonics..Develop\xa0quantum state generation and squeezed light technology..Construct quantum platforms for algorithm, sensing and metrology..Collaborate with other researchers at an international level on high impact quantum programs..Contribute\xa0to, or lead in, submitting research proposals to funding bodies as appropriate..Assist with\xa0supervision of research students and outreach activities..', 'Requirements': 'A PhD degree or equivalent in physical sciences or engineering.Experienced in experimental quantum physics..Expertise in topics related to optical, material, atomic and quantum physics..Expertise in quantum information theory..Knowledge in computer programming in Python, Mathematica, Matlab or other equivalent languages..Ability\xa0to work unsupervised and collaboratively with a team..Resourceful in problem solving and critical thinking..Meticulous\xa0and analytical in experimental work..Good\xa0presentation skills (written and verbal)..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-quantum-information-and-measurement-sri-imre-10127087?jobId=jobstreet-sg-job-10127087§ionRank=808&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Main Responsibilities
[{'position': 'Part Time Lecturer, - R00001119 #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Qualifications': '', 'Teaching Hours': []}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/part-time-lecturer-r00001119-jobsthatmatter-10071800?jobId=jobstreet-sg-job-10071800§ionRank=809&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Qualifications
[{'position': 'Analyst, Regulatory & Information Analytics'}, {'company_name': 'Maybank'}, {'small_section': ['Central', 'Posted on 28-Oct-22']}, {'Responsibilities': 'Support routine regulatory reports generation and data requests\xa0.Ensure reports are accurate and comply with regulatory reporting requirements.Collaborate with business users to identify business/ regulatory information needs\xa0.Enrich and maintain the datamart for reporting needs and in sync with business changes.Examine datasets for data quality issues.Streamline and improve work processes.', 'Requirements': 'Degree in Accountancy, Business, Finance, IT, or equivalent.Other degree qualifications with relevant working experience can be considered.1 to 2 years’ experience in supporting regulatory reporting preferred.Strong critical thinking and problem solving skills.Able to adapt to shifting priorities and handle multiple assignments with limited resources.Good interpersonal communication skillsets.A team player with a positive attitude, professionalism, and a strong work ethic with high level of integrity.SAS work related exposure.'}, {'Career Level': 'Entry Level', 'Qualification': 'Not Specified', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': 'S60FC1376L', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': "Maybank is a Qualifying Full Bank (QFB) in Singapore. For the convenience of our customers, all Maybank's 22 Branches and more than 35 ATMs are strategically located in both the business districts and suburban estates. Maybank is also part of atm5 - Singapore's only shared ATM network combining the reach of more than 130 locations of the six QFBs.\nMaybank is committed to bringing seamless banking and a wider spectrum of value-added financial services to our valued customers. By harnessing the latest technological advances to increase our network's effectiveness, our customers are able to conduct their banking transactions at any time and anywhere in the world, via the traditional as well as electronic channels.\nMaybank remains strongly committed to the Singapore operations, and our 32-storey headquarters, Maybank Tower, is the physical manifestation of this. As a QFB, Maybank Singapore will explore strategic alliances with the other QFBs for mutual benefit, and for the benefit of our customers who can expect to see a Bank that is closer to them - a Bank that understands their unique requirements."}, {'url': 'http://www.jobstreet.com.sg/en/job/analyst-regulatory-information-analytics-10059912?jobId=jobstreet-sg-job-10059912§ionRank=810&token=0~4fa21b6c-656b-4c30-b5fd-7f0bfb835813&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'AVP / Senior Associate, Data Scientist, ITT-TM Ops, Technology & Operations - (WD41501)'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Business Function': '', 'Responsibilities:': 'Work with large and complex financial datasets to build\xa0end-to-end\xa0data science solutions.\xa0.Deploy machine learning products into production and perform sub-system integration as required..Refactor and document code into reusable libraries, APIs, and tools..Automate CI/CD pipeline for model training, testing and deployment..Assist organizational adoption of industry leading ML ecosystem (feature/eval store, model zoo).Optimize machine learning algorithm efficiency (GPU distributed computing, concurrent programming).', 'Requirements:': 'Experience building scalable machine learning system architectures (microservice, distributed) and big-data pipelines in production..Good understanding of the data science production life cycle with demonstrable experience working with structured, semi-structured and unstructured data..Excellent software skills (Python, SQL, bash) and knowledge in design patterns and code optimization..Good grasp of Machine Learning models and concepts, their mathematical underpinnings, and trade-offs (model selection, tuning, problem formulation, drift, semi-supervised learning).Experience using NLP techniques (NER, Sentiment Analysis, Topic Modelling, transformers).Experience using machine learning frameworks (TensorFlow, Pytorch, Spark, Hydra).Familiar with software development best practices and tools (Agile, TDD, Jira, Jenkins, Git).', '\xa0\xa0Good-to-have:': 'Familiar with Linux operation system..Financial domain expertise (Treasury & Markets).\xa0Experience with statistical modelling and time series analysis..', '\xa0Professional Qualification\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0': 'A Bachelor’s degree in Data Science or Computer Science (or equivalent experience).3 – 8 years of data science/ software engineering exposure.Have experience in applying machine learning models.Able to perform unix / linux scripting..Writing of documents that clearly explain how algorithms should be implemented, verified and validated..', 'Apply Now': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/avp-senior-associate-data-scientist-itt-tm-ops-technology-operations-wd41501-10127801?jobId=jobstreet-sg-job-10127801§ionRank=812&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Business Function
[{'position': 'Research Scientist (Mathematics/Computer Science/Electrical) [R00004445] #JobsThatMatter- #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Research Scientist (Mathematics/Computer Science/Electrical Engineering)': '', 'Job Responsibilities': 'Identify and procure relevant targets and devices for research targets in project scope.Device preparation and test bed setup (hardware and software) for investigation of secure boot process.Application of analysis techniques to assess the vulnerability of the secure boot process.Implement end to end exploits.Report and document the finding with recommendations for mitigation.Disseminate the finding in publications at top venues like CHES, USENIX, TIFS etc.Collaborate with other team members in different research projects.Train junior members/interns of the team.', 'Job Requirements': 'PhD in mathematics, computer science, electrical engineering, or related disciplines, with strong track record in research and development (publications in international journals and conferences).Experienced in security evaluation and have understanding of crypto- graphic algorithms (symmetric and asymmetric). Coding background in C/Java/Assembly/Python/VHDL for analysis is required.Experience in working with embedded/IoT devices or android devices for vulnerability assessment.Previous lab experience in developing prototypes, FPGA design, manipulating oscilloscopes, writing device drivers and communication interfaces, which are used in analysis of implemented designs.Knowledge of side-channel or fault attacks is a plus.Good writing and communication skills.Creative, curious, self-motivated and a team player with good analytical and problem-solving skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-mathematics-computer-science-electrical-%5Br00004445%5D-jobsthatmatter-jobsthatmatter-10137838?jobId=jobstreet-sg-job-10137838§ionRank=813&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Research Scientist (Mathematics/Computer Science/Electrical Engineering)
[{'position': 'VP/AVP, - Senior Data Scientist - Risk Management Group (RMG) - (WD40506)*'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Business Function': '', 'Responsibilities': 'To develop machine learning models to support risk decision making process..To identify, analyse, and interpret trends or patterns in structured and unstructured data..To conduct research, validate and build statistical/machine learning models in areas such as forecasting and classification..To develop proof of concept/ prototypes for predictive risk management..', 'Requirements': 'At least 5 years of working experience doing data analytics via\xa0coding (Python, R)\xa0..At least a Bachelor’s degree in statistics, analytics, applied mathematics, computer science or a related technical field.\xa0.Proficient in data analytics, machine learning, and other relevant statistical techniques..Programming experience to manipulate data and draw insights from large datasets (Python, R , Scala, etc)..Knowledge in using statistical/machine learning tools and packages for analysing complex datasets..Strong ability to collect, organize, analyse, and disseminate information with attention to detail and accuracy..Good oral and written communication skills..', 'What you will get:': 'Opportunity to drive innovation in digital banking and make an impact..Hands-on experience with big data in finance..Lots of learning opportunities in machine learning and financial risk management..An environment that values teamwork, transparency and respect..', 'Apply Now': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-avp-senior-data-scientist-risk-management-group-rmg-wd40506-*-10127863?jobId=jobstreet-sg-job-10127863§ionRank=814&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Business Function
[{'position': 'Research Fellow (Prof Lam Kong Peng Lab)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Responsibilities:\xa0': 'Conducting laboratory experiments.Communicating scientific results to a variety of audiences in written and oral formats.Delivering quality results within tight deadlines, and.Upholding high standards of research integrity and laboratory safety.', 'Requirements:': 'PhD in immunology, molecular biology or related field.strong track record of publications.Demonstrate the ability to work efficiently in teams.Proficiency in verbal and written communication of ideas and data is desired for grant applications and manuscript preparation.'}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-prof-lam-kong-peng-lab-10128557?jobId=jobstreet-sg-job-10128557§ionRank=815&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'VP/AVP, Senior Data Scientist - Risk Management Group (RMG) - (WD40506)*'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Business Function': '', 'Responsibilities': 'To develop machine learning models to support risk decision making process..To identify, analyse, and interpret trends or patterns in structured and unstructured data..To conduct research, validate and build statistical/machine learning models in areas such as forecasting and classification..To develop proof of concept/ prototypes for predictive risk management..', 'Requirements': 'At least 5 years of working experience doing data analytics via\xa0coding (Python, R)\xa0..At least a Bachelor’s degree in statistics, analytics, applied mathematics, computer science or a related technical field.\xa0.Proficient in data analytics, machine learning, and other relevant statistical techniques..Programming experience to manipulate data and draw insights from large datasets (Python, R , Scala, etc)..Knowledge in using statistical/machine learning tools and packages for analysing complex datasets..Strong ability to collect, organize, analyse, and disseminate information with attention to detail and accuracy..Good oral and written communication skills..', 'What you will get:': 'Opportunity to drive innovation in digital banking and make an impact..Hands-on experience with big data in finance..Lots of learning opportunities in machine learning and financial risk management..An environment that values teamwork, transparency and respect..', 'Apply Now': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-avp-senior-data-scientist-risk-management-group-rmg-wd40506-*-10127655?jobId=jobstreet-sg-job-10127655§ionRank=817&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Business Function
[{'position': 'Senior Data Engineer (Data Engineering) #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What to Expect': 'Design and build resilient and efficient data pipelines for both batch and real-time streaming data.Architect and design data infrastructure on cloud using industry standard Infrastructure-as-Code tools.Execute projects with an Agile mindset.Build software frameworks to solve data problems at scale.Collaborate with product managers, software engineers, data analysts and data scientists to build scalable and data-driven platforms and tools.Be put in the driving seat as an engineering leader.', 'How to Succeed': 'Bachelor’s Degree in Computer Science or have equivalent professional experience.Have more than 4 years of experience in a technical role.Experience with data processing tools such as Spark, Beam, Flink.Experience with the cloud (e.g. AWS, GCP, Azure).Experience implementing batch and streaming data pipelines.Experience writing efficient SQL.In-depth knowledge of both SQL and NoSQL databases, including performance tuning and troubleshooting.Familiar with DevOps tools such as Git, Docker, Terraform.Experience in the public sector is a bonus.Previous technical leadership experience is a bonus.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-engineer-data-engineering-jobsthatmatter-10052794?jobId=jobstreet-sg-job-10052794§ionRank=818&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
What to Expect
[{'position': 'Senior Data Engineer - (Data Engineering) #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What to Expect': 'Design and build resilient and efficient data pipelines for both batch and real-time streaming data.Architect and design data infrastructure on cloud using industry standard Infrastructure-as-Code tools.Execute projects with an Agile mindset.Build software frameworks to solve data problems at scale.Collaborate with product managers, software engineers, data analysts and data scientists to build scalable and data-driven platforms and tools.Be put in the driving seat as an engineering leader.', 'How to Succeed': 'Bachelor’s Degree in Computer Science or have equivalent professional experience.Have more than 4 years of experience in a technical role.Experience with data processing tools such as Spark, Beam, Flink.Experience with the cloud (e.g. AWS, GCP, Azure).Experience implementing batch and streaming data pipelines.Experience writing efficient SQL.In-depth knowledge of both SQL and NoSQL databases, including performance tuning and troubleshooting.Familiar with DevOps tools such as Git, Docker, Terraform.Experience in the public sector is a bonus.Previous technical leadership experience is a bonus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-engineer-data-engineering-jobsthatmatter-10052846?jobId=jobstreet-sg-job-10052846§ionRank=819&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
What to Expect
[{'position': 'DevOps Engineer (Artificial Intelligence Platforms) #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Who we are': '', 'What you will be working on:': '', 'The role includes:': 'Managing the development, deployment, orchestration and maintenance of data pipelines for our Data Science products.Providing DevOps architecture implementation and operational support.Architecture and planning for cloud deployments (Private and Public cloud).Developing and managing processes, automation, best practices, documentation.Development and operation of continuous integration and deployment pipelines..', 'What it is like working here': 'Rapid Prototyping - Instead of spending too much time debating ideas we prefer testing them. This identifies potential problems quickly, and more importantly, conveys what is possible to others easily..Reliable Productization - To scale an idea, a prototype or a Minimum Viable Product to a software product, we scrutinize and commit to its usability, reliability, scalability and maintainability..Ownership - In addition to technical responsibilities, this means having ideas on how things should be done and taking responsibility for seeing them through. Building something that you believe in is the best way to build something good..Continuous Learning - Working on new ideas often means not fully understanding what you are working on. Taking time to learn new architectures, frameworks, technologies, and even languages is not just encouraged but essential..', 'To do so, you will:': 'Effectively prioritize and execute tasks in a high-pressure environment.Develop and maintain internal engineering productivity tools and environments.Perform independent research into product and environment issues as required.Monitoring automation to effectively detect/predict/prevent issues in the environment and code base.Future-proofing the technical environments and ensuring extreme high levels of automation, availability, scalability and resilience.Hands-on coding and mentoring, working in highly collaborative teams and building quality environments.Have knowledge in and/or continuously learn lots of different open source technologies and configurations.', 'What we are looking for:': '', 'To succeed, you will need to possess some of the following:': 'Excellent problem solving and methodical troubleshooting skills.Strong knowledge and experience in DevOps automation, containerization and orchestration using tools eg. Ansible, Airflow, Docker, Kubernetes, Terraform, Artifactory/Nexus Sonatype.Cloud computing deployment and management experience in AWS, GCP.Strong scripting skills e.g. Python, Bash, JavaScript, Scala, Rust, Go.Strong understanding of Apache Spark/Flink, Hadoop, distributed file systems and resource scaling/scheduling, streaming message queues (RabbitMQ, Kafka).Strong understanding of virtualization and networking concepts.Experience with patch maintenance, regression testing and security incident response.Experience with interactive workloads, machine learning toolkits and how they integrate with cloud computing e.g. Databricks, KX.Experience with highly scalable distributed systems.Experience with on-premise deployments, government application and networking infrastructure/routing.Breadth of knowledge - OS, networking, distributed computing, cloud computing.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/devops-engineer-artificial-intelligence-platforms-jobsthatmatter-10052642?jobId=jobstreet-sg-job-10052642§ionRank=820&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Who we are
[{'position': 'VP/AVP, - Senior Data Scientist - Consumer Banking Group (CBG) - (WD36996)*'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Business Function': '', 'Responsibilities': 'Drive customer acquisition and engagement across DBS products through effective use of analytics resulting in portfolio growth and increased market share..Drive product business strategy by providing recommendation through data analytics.Deliver timely and accurate analysis/modelling, insights as 2in1 box with products to achieve business outcome.Drive cognitive and automated banking initiatives through Machine learning models development and automation of control towers/alerts.Utilizing Data Driven Operation Model (DDOM) to maximize value from data and drive business management and shared KPI with products partners..Identify opportunities and develop strategies to drive retail customers engagement for financial planning opportunities..', 'Requirements': 'Minimum 3\xa0years of experience.', 'Non-technical\xa0': 'Excellent in storyboarding, strategical thinking, presentation.\xa0.Strong analytical skills, highly numerate and proactive.Good interpersonal and communication skill, stakeholder engagement.With at least 3 years of relevant working experience, preferably with data management and analytics in the banking industry.Ph.d/Master Degree in Banking/Finance, Business,\xa0Mathematics/Statistics, Computer or related disciplines.', 'Technical\xa0': 'Proficient in SAS/python/SQL Programming.Preferred knowledge in Business Intelligence tools and data science.Experience to manipulate and handle large dataset.', 'Apply Now': []}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-avp-senior-data-scientist-consumer-banking-group-cbg-wd36996-*-10127643?jobId=jobstreet-sg-job-10127643§ionRank=821&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Business Function
[{'position': 'Research Fellow, - (Molecular Biology & Biomolecular Interactions) (R00010518)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Description:': 'Hands-on data collection for users in Biacore T200 instrument in BMI facility.Providing training and advice for users in other biophysical equipment in the BMI (protein-protein and protein-drug interactions).For the PPP, handling and conceptualizing some complex protein production projects for diverse customers. Hands-on operations of the PPP are currently handled by three staff.Liaise with users (internal and external) and contact vendors for repairs and other equipment-related issues.Attending to safety issues of individual laboratories.Provide a yearly budget for Core, BMI and PPP facilities.', 'Job Requirements:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-molecular-biology-biomolecular-interactions-r00010518-10072410?jobId=jobstreet-sg-job-10072410§ionRank=822&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Fellow (Computational Biologist, Chen Jinmiao Lab), SIgN'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Description': '', 'Job Requirements:': 'PhD in any of the following fields: computational biology, bioinformatics, biostatistics, computer science/engineering, mathematics, data science, statistics or related fields..Programming skills using any of the following: R/Python/Perl/shell script/C++/Matlab/Java or similar.Experience in analysis of single-cell omics, spatial omics, or NGS data.Experience/ability to develop new computational methods/databases.Background in AI, deep learning, machine learning, data mining, image processing & computer vision\xa0Database design, implementation and management, web-portal development.Self-motivated with drive\xa0to succeed and engage in critical thinking.Able to work under supervision and autonomously/independently.Good team player, with good interpersonal skills.Interest or background in biology or willing to learn.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computational-biologist-chen-jinmiao-lab-sign-10128393?jobId=jobstreet-sg-job-10128393§ionRank=823&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Fellow - (Plant Population Genomics) [R00006271]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': '', 'Job Requirements': 'PhD in population genetics, plant genetics, genomics or related fields.Prior lab experience in DNA extraction.Proficiency in Linux, analysis of high-throughput sequencing data, population SNP analysis.The School of Biological Sciences seeks a diverse and inclusive workforce and is committed to equality of opportunity. We welcome applications from all and recruit on the basis of merit, regardless of age, race, gender, religion, marital status and family responsibilities, or disability..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-plant-population-genomics-%5Br00006271%5D-10135903?jobId=jobstreet-sg-job-10135903§ionRank=824&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Scientist M/F #WorkNow'}, {'company_name': 'STMicroelectronics Asia Pacific Pte Ltd (Lite ads)'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Job description': "Work as a subject matter expert on Artificial Intelligence/Machine Learning, Data and Statistical models to present findings to stakeholders internally or externally..Implement models in machine learning, optimization, Neural Networks, and Artificial Intelligence such as Natural Language, and other quantitative approaches..Demonstrate high level of thought leadership in data science and machine learning..Key drive and contributor with stakeholders to understand business problems definition, analyse via big data and propose solutions.Deliver meaningful insights and predict trends via collection, analysis and interpretation qualitative and quantitative data with statistical theories and methods..Key contributor to fast proofs of concept, prototype and implementation of viable solutions that demonstrate business value.Create and review technical design documentations, contribute to company's intellectual property and patents..", 'Profile': 'PhD or Masters Degree in Computer Science/Mathematics/ Statistics or equivalent..Familiar with Data Engineering techniques to prepare, process and transform data’.Demonstrate strong business understanding to define problems and propose solutions for implementation.Strong understanding and hands-on experience using Data Science and Statistical methods for AI/ML including Deep learning methods, Data Science Programming Language such as Python/R.Prior background and relevant working experience for at least 3 years in semiconductor..Familiar with big data, cloud based AI/ML products and Agile Methodologies.Fluent in English.Ability to guide and lead a team and drive projects..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199404407W', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Accounting / Audit / Tax Services'}, {'Company Overview': '\n\tSTMicroelectronics is a world leader in providing the semiconductor solutions that make a positive contribution to people’s lives, today and into the future.\xa0 Among the world’s largest semiconductor companies and a leading technology innovator: ~7,400 people working in R&D and product design, ~18,000 patents, ~ 9,600 patent families and ~ 550 new patent filings, employing ~46,000 employees worldwide in 11 main manufacturing sites, 80 sales & marketing offices in 35 countries and committing close to 20% in R&D.\n\t\n\t\n\t\tPeople are the foundation of ST and they drive our success. We believe there is a strong correlation between employee\'s commitment and business results. Our engaged employees will make ST even more successful. For this reason, ST has a solid infrastructure to manage the core processes related to people and, one of our top corporate priorities is "People". This corporate priority focuses on employee engagement and recognition, talent management, leadership development.\n\nOur HR Strategy\n\n\t\tOur Human Resources strategy aims to ensure the right level of hiring and retention, to match the company’s evolving requirements in terms of profiles, competencies and the dynamic integration of new people. At ST, we believe that the development of our people is the key factor for ensuring our long term success.\n\n\t\tOur Vision : Everywhere microelectronics make a positive contribution to people\'s lives, ST is there.\n\n\t\tOur Values :\n\nINTEGRITY: we conduct our business with the highest ethical standards, honor our commitments, deliver on our promises, are loyal and fair.\nPEOPLE: we behave with openness, trust and simplicity; ready to share our knowledge, encourage everyone’s contribution, develop people through empowerment, teamwork and training.\nEXCELLENCE: we strive for quality and customer satisfaction and create value for all our partners; we are flexible, encourage innovation, develop our competencies, seek responsibility and are accountable for our actions.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-m-f-worknow-10116013?jobId=jobstreet-sg-job-10116013§ionRank=826&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Lecturer/Senior Lecturer in Data Analytics, - [R00009474]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 27-Oct-22']}, {'Requirements:': 'Applicants should have extensive industry and/or academic experience, a passion for teaching and preferably possess a Masters’ degree in information systems, computer science, statistics, or a closely related discipline, with the relevant professional qualifications..We are keen on applicants with strong industry experience in implementing data analytics and artificial intelligence solutions. Mastery in programming languages such as R, SAS, or Python is necessary. Candidates should be able to deploy statistical as well as machine learning analytical solutions using these tools..Candidates should demonstrate teaching excellence at the undergraduate/graduate level, and are able to engage in curriculum development and course administration for undergraduate and graduate analytics courses..Candidates should have a passion for teaching, excel at teaching and work closely with students. Candidates must have the versatility to teach multiple courses at the undergraduate and graduate levels. Lecturers and Senior Lecturers are expected to excel at teaching and service, work closely with students, and contribute to practice-based research and development of courses that leverage technology-enabled learning. Appointment terms are for three years. As we are expanding our course offerings, we seek versatile individuals who can teach courses at the undergraduate and graduate levels..NTU offers an internationally-competitive salary commensurate with the candidate’s qualifications and experience..', 'Application:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/lecturer-senior-lecturer-in-data-analytics-%5Br00009474%5D-10046566?jobId=jobstreet-sg-job-10046566§ionRank=828&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Requirements:
[{'position': 'Data Engineer Intern, Growth #JobsThatMatter #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': 'Build data pipelines and reports to portray business status, based on a deep understanding of our fast changing business with data-driven approaches;.Extract information and signals from a broad range of data and build hierarchies to accomplish analytical and mining goals for “Packaged Business Capability” such as growth, gaming and search;.Continually improve the integrity of data pipelines to provide a comprehensive data service..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Data Science or a related technical discipline from a university;.Experience in SQL and an additional object-oriented programming language (e.g., Python, Java, or Scala);.Experience in issue tracking and problem-solving on data pipelines;.Strong analytical thinking and exceptional attention to details..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-intern-growth-jobsthatmatter-immediate-10143955?jobId=jobstreet-sg-job-10143955§ionRank=829&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow (Communication/Information Science/Computer Science/Social Media Data Analytics) (R00002032)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Conduct, and manage student assistants to compile, systematic literature review.Analyze national level quantitative surveys.Conduct content analysis, and statistical analysis.Design and conduct user experience experiments in the lab and analyze experimental data.Support multiple peer-reviewed publications as secondary author and technical expert.Manage and document datasets.Assist in administrative duties, e.g. writing ethics reviews, press releases, annual reports.', 'Job Requirements': 'PhD in Communication, Information Science, Computer Science, Social Media Data Analytics, or closely related area from reputable universities.Solid mathematical, statistical background.Experience with social media analytics.Ability to publish peer-reviewed publications in international journals, prioritize work and meet deadlines within the framework of an agreed program as well as to coordinate with collaborators, administrators and service providers.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-communication-information-science-computer-science-social-media-data-analytics-r00002032-10046457?jobId=jobstreet-sg-job-10046457§ionRank=830&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Scientist (AI research)'}, {'company_name': 'Michael Page International Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa010,000 - SGD\xa015,000', 'Posted on 12-Oct-22']}, {'Data Scientist': '', 'data modeling processes': '', 'algorithms and predictive models': '', 'custom analysis': '', 'Client Details': '', ' organisation in Web3': '', 'Description': '', 'qualified Data Scientist': 'Improve and optimize search engine and recommendations system.Work as strategic partner to define priorities and develop project roadmaps with internal stakeholders.Using tools like Python, R, SQL, and others to drive efficient data exploration and modelling.Build a statistically rigorous solutions to large-scale web and data infrastructure problems.', 'Profile': '', "Bachelor's degree": '', ' 3 years of experience in quantitative analysis & statistics methods, ': '', '2 years of experience in big data technologies': '', 'Job Offer': 'Flexible working arrangement.Chance to work in overseas office.Equity + Bonus payout.'}, {'Career Level': 'Senior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199804751N', 'EA No.': '90C4069', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tMichael Page International is a leading professional recruitment consultancy specialising in the recruitment of permanent, contract and temporary positions on behalf of the world¦s top employers. Now, after more than 40 years in the recruitment market, we have secured our position as leaders in international recruitment and hiring. We currently have 140 offices that create a network that spans 36 countries around the world, with strong opportunities for more growth within Asia Pacific.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-ai-research-10057938?jobId=jobstreet-sg-job-10057938§ionRank=831&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Data Scientist
[{'position': 'Research Associate (Artificial Intelligence) - (R00008267)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.Help prepare the proposal and progress report.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': '', 'Coding Skills:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical, Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-artificial-intelligence-r00008267-10073177?jobId=jobstreet-sg-job-10073177§ionRank=832&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Associate, - (Computer Science/Signal Processing) (R00005575)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:\xa0': 'Development of algorithms for malware and vulnerability analysis for mobile applications.Implement customized analysis tools for detection and defense of mobile security attacks.Write research papers of high quality based on research results.Build deployable systems based on the research results.', 'Job Requirement:': 'Master’s degree in Computer Science, Signal Processing or related areas.Expertise in software engineering, software programming, computer security and testing.Research experience in software testing, mobile testing, and related areas.Excellent background in software engineering with Advanced Programming Skills (Python, C/C++, Java).Good communication skills.Ability to conduct research and work independently and within teams.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-signal-processing-r00005575-10076060?jobId=jobstreet-sg-job-10076060§ionRank=833&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Sourcing Analyst (Crocs Trading)'}, {'company_name': 'Crocs Singapore Pte Ltd'}, {'small_section': ['Central', 'Posted on 29-Oct-22']}, {'JOB SUMMARY:': '', 'KEY RESPONSIBILITIES:': '', 'Data Management and Analytics': '', 'Reporting and Visualization': '', 'Project Management:': '', 'RPA (Robotic Process Automation):': '', 'JOB REQUIREMENTS:\xa0\xa0': 'Bachelor or above degree, with major in Engineering / business administration/Data Science/IT.Advance level knowledge in PowerBI, Tableau, Excel (Macros), Powerpoint and low code languages like Python and R. Knowledge of ERPs or Product Lifecycle Management systems will be an advantage..Knowledge of Maths and data modeling skills.Project management experience and qualification (preferably PMP).Demonstrate deep knowledge of Data management, Visualization, Analysis and Reporting.Minimum 3-years’ experience in a similar role preferably in Supply Chain, Operations or Procurement domain.Excellent communicative, interpersonal, analytical and problem-solving skills.Ability to deal with ambiguity and be a creative problem solver.Passion for Crocs/Hey Dude.Ambitious spirit and able to operate in a fast-paced environment with multiple priorities and pressing deadlines.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Services, Logistics/Supply Chain', 'Registration No.': '201005805R', 'Company Size': '51 - 200 Employees', 'Industry': 'General & Wholesale Trading', 'Benefits & Others': 'Dental, Medical, Casual (e.g. T-shirts), Staff Discounts, Regular Hours (Office Staff)', 'Specific Location': 'Buona Vista'}, {'Company Overview': '\n\nIn 2002, Crocs introduced the world to one of the most unique brands anyone had ever seen: we were different and it made some people uncomfortable. Now, hundreds of millions of shoes later, we make the whole world comfortable. We believe that great style shouldn’t be stressful, serious or pretentious. It should embrace and enhance who you are. We want to lead the industry with great footwear that feels good, looks good and provides superior value to customers. Join us for a bright, bold and colorful future.\xa0\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/sourcing-analyst-crocs-trading-10065906?jobId=jobstreet-sg-job-10065906§ionRank=834&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
JOB SUMMARY:
[{'position': 'Computer Vision Research Scientist, - Intelligent Creation #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted 20 hours ago']}, {'Responsibilities': 'Conduct fundamental research on computer vision, deep learning and AI problems, including but not limited to the deep learning for 3D object/human modeling, graphics, object and human interaction recognition, computer vision, self-supervised learning, multi-modality learning;\xa0.Research on long-term research goals;.Publish impactful research work on top conferences and journals;.', 'Qualifications': 'Work experience in a university, industry, or government lab(s), in a role with primary emphasis on AI research;.Hold a Ph.D. degree in computer science, electrical engineering, statistics, applied mathematics, data science or other related disciplines;.First-author publications at peer-reviewed AI conferences (e.g. CVPR, ECCV, ICCV, NeurIPS, ICML, SIGGRAPH) and journals (e.g., TPAMI, JMLR).Knowledge in one of the differentiable programming frameworks, e.g., PyTorch, TensorFlow, JAX;.Track record of high impact research;.(Preferred) Received best paper or equivalent awards in the aforementioned conferences;.(Preferred) Winner of international academic competitions..'}, {'Career Level': 'Entry Level', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/computer-vision-research-scientist-intelligent-creation-immediate-10146653?jobId=jobstreet-sg-job-10146653§ionRank=836&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Analyst/Data Scientist/Data Engineer, Group Internal Audit'}, {'company_name': 'Keppel Corporation. Limited.'}, {'small_section': ['Central', 'Posted on 14-Oct-22']}, {'Job Description': 'Works closely with the internal auditors to identify the opportunities, profile, analyse and present the data discovery output for analytics.Problem-solve computational and analytical challenges b investigating the data, understanding the root causes and coming up with alternative measurement strategies.Use of various programming tools to formulate algorithms and scripts for the review of data.Develop codes that a production-ready and reusable, adhering to proper documentation guidelines.Prototype, build & maintain value-adding data visualization using Business Intelligence tools.Derive, hypothesis and perform data iterations to promote effectiveness of data analysis and to proactively identify meaningful data insights for auditors/ stakeholder recocommendations.Design and implement monitoring platforms for continuous monitoring and predictive analysis.Participate in audit assignments to build up business processes and industry knowledge.', 'Job Requirements': 'Bachelor / Master’s Degree in a quantitative discipline (Computer Science, Computer Engineering, Statistics or Information Technology).Knowledge in machine learning, programming tools, network, databases and operating systems.Meticulous, highly analytical, process-driven self-starter with the ability to work independently and as a team member.Good interpersonal skills, able to work in diverse environment and build good working relationships with business counterparts, able to work collaboratively as part of a team.Creative, with good problem solving skills.Proficiency in using query languages and programming tools such as SQL, Python and R Programming.Experience with data visualization tools, such as Tableau and Microsoft Power BI.Knowledge in accounting, finance and risk management will be preferred.Structured and motivated individual with good time management to manage or prioritise multiple timelines.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '196800351N', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '26 days', 'Industry': 'Environment/Health/Safety'}, {'Company Overview': "With a global footprint in more than 20 countries, Keppel Corporation leverages its international network, resources and talents to grow its key businesses. It aims to be a global company at the forefront of our chosen industries, shaping the future for the benefit of all our stakeholders - Sustaining Growth, Empowering Lives and Nurturing Communities.The Keppel Group of Companies includes Keppel Offshore & Marine, Keppel Infrastructure, Keppel Telecommunications & Transportation (Keppel T&T) and Keppel Land, among others.Keppel Offshore & Marine is the leader in offshore rig design, construction and repair, ship repair and conversion and specialised shipbuilding. Its Near Market, Near Customer strategy is bolstered by a global network of 20 yards and offices in the Asia Pacific, Gulf of Mexico, Brazil, the Caspian Sea, Middle East and the North Sea regions.Keppel Infrastructure will drive the Group's strategy to invest in, own and operate competitive energy and related infrastructure. Keppel Infrastructure, while tapping the expertise and technology of its engineering business, will grow its power and gas, environmental and energy efficiency businesses.Keppel T&T is a leading service provider in the Asia-Pacific and Europe with businesses in logistics and data centres.Keppel Land contributes to changing cityscapes across Asia as a choice developer with a sterling portfolio of award-winning residential developments, integrated townships and investment-grade commercial properties. Reputed for its quality and innovation hallmark, Keppel Land is committed to develop properties that harmonise with the urban and natural landscape for desirable live-work-play environments and with enduring value for the community."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-data-scientist-data-engineer-group-internal-audit-10066998?jobId=jobstreet-sg-job-10066998§ionRank=837&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Associate, (Data Analyst and Machine Learning Specialist) (R00008084) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Key Responsibilities:': 'Able to develop software codes for autonomous simultaneous localization and mapping of moving equipment..Should be able to develop framework for multi accesses edge computing..Train machine learning and deep learning models on a computing cluster to perform visual recognition tasks such as segmentation, detection, self-supervised depth estimation and end-to-end control..Multi sensor fusion based software integration from physical system to virtual environment..Prepare reports and documentations for the research programs, and support data analysis..Test and validate developed autonomous codes against physical systems..Program development for sensor systems and dashboard visualization..Creating lab scale setups and fixtures in tune to vehicle level performance..Formulating process experimental plans both lab level and real field level..Running experiments and troubleshooting systems..Developing potential improvements to the health monitoring system and testing potential solutions..', 'Job Requirements:': 'Master’s degree in computer science engineering/Electronics Engineering. Related degree preferred. Related experience would be given high priority..Experience with signal processing..Strong python programming, software development best practices, debugging and profiling..Knowledge on at least one mainstream deep learning framework such as Pytorch , Tensorflow and CNN..Familiarity with data science tool kit such as Jupyter, pandas, Linux environment..Familiarity of AWS or Azure..Solid understanding of algorithms, linear algebra, machine learning, computer systems/architecture, neural network..Basic Knowledge with sensor system, interface, data conversion and software programming..Effective communication and report writing skills..Experience in use of applicable business software applications..Prior experience and knowledge in Data analysis and Machine learning algorithms development..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-analyst-and-machine-learning-specialist-r00008084-urgenthire-10128550?jobId=jobstreet-sg-job-10128550§ionRank=839&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Engineer, Centre for Frontier AI Research, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Research Engineer (AI for Hardware)': '', 'Requirement': 'Master/Bachelor degree in Computer Science/Electrical & Electronics Engineering/Computer Engineering or equivalent.Solid programming skills in Python or C/C++.Experience in both areas of AI and computer architecture..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-centre-for-frontier-ai-research-ihpc-10124230?jobId=jobstreet-sg-job-10124230§ionRank=840&token=0~fe65bf4b-5b86-418c-a786-08b96b69dab2&fr=SRP%20Job%20Listing'}]
Research Engineer (AI for Hardware)
[{'position': 'Security Data Scientist - Creator Platform*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Responsibilities': 'Build account security rules and data mining models, to forecast, detect, respond and mitigate TikTok account security risks and incidents, which include and are not limited account take-over, account authentication/authorization leaks and account service abuse..Analyze business and security data, uncover evolving attacking motions, watch over vulnerabilities and identify opportunities for active and passive defense solutions..Collaborate and align with XFN stakeholders on quantitative security goals, promote data-driven security practices across ByteDance/TikTok community..Define account security measurements and operational metrics. Quantify, generalize and monitor account security reports and user feedbacks..', 'Qualifications': "Bachelor's degree in Statistics, Applied Mathematics, Computer Science or a related field..Minimum 3 years of experience in solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Experience in one InfoSec domain: system/application security, integrity, risk and fraud..Fast business learning abilities and good team collaboration skills.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/security-data-scientist-creator-platform*-10115549?jobId=jobstreet-sg-job-10115549§ionRank=842&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Finance Analyst (Tech MNC / Data / SQL / UP7K+)'}, {'company_name': 'Adecco Personnel Pte Ltd.'}, {'small_section': ['Singapore', 'SGD\xa06,000 - SGD\xa07,500', 'Posted on 27-Oct-22']}, {'The Opportunity': "Adecco is partnering our client, one of the world's Tech MNCs.We are looking for a Finance Analyst.The role will start out as a contract.Candidates who are immediately available/ able to start work within short notice will be preferred.", 'The Talent': 'Degree in a quantitative field of study preferred.3-5 years of experience in strategy consulting, corporate finance or similar commercial analytical role.Sound business judgement and problem solving, and analytical skills.Advanced proficiency in spreadsheets/ modelling..Familiarity with, and/or enthusiasm for SQL and working with large volumes of complex data.', 'Job Description': 'With strong analytical skills and presentation skills, you will distill crisp insights on complex, ambiguous topics, helping the APAC management team make better business decisions.Provide management with clear insights and recommendations into drivers of revenue, market trends, risks, and opportunities leading to revenue enhancing sales & product actions..Engage in deep dive analyses to understand business performance, and provide concise summaries and recommendations to management..Support critical financial planning processes such as revenue forecasting, sales target setting, revenue calls preparation, and sales performance evaluations..Work with cross-functional teams to develop business cases / strategic plans backed by relevant analyses and insights.', 'Next Step': '', 'Send your resume to [email\xa0protected]': 'All shortlisted candidates will be contacted.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198500164K', 'EA No.': '91C2918', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tThe Adecco Group is the world’s leading HR solutions partner. We provide more than 700,000 people with permanent and flexible employment every day. With more than 34,000 employees in 60 countries, we transform the world of work one job at a time.\n\n\t\tAdecco is Singapore’s leading HR solutions partner. For more than 34 years, Adecco provides a comprehensive array of HR solutions and consulting services which includes mid to staff level talent acquisition, contract recruitment, outsourcing, field sales and marketing as well as payroll services. Our teams are specialized in accounting & finance, administration, banking, engineering, healthcare & life sciences, human resources, IT&T, retail & events, sales & marketing, supply chain & logistics and other corporate functions.\n\n\n\t\tSpeak with an Adecco consultant to find out how we may be able to help you in your career and life goals.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/finance-analyst-tech-mnc-data-sql-up7k-10057185?jobId=jobstreet-sg-job-10057185§ionRank=843&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
The Opportunity
[{'position': 'E-commerce Data Analyst - #Immediate #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted 19 hours ago']}, {'Responsibilities:': 'Overall responsible for data support of e-commerce overseas operation module;.Daily output and follow up the data output of the whole operation and each module;.Operation core index design, data dashboard design landing, core index data abnormal monitoring;.Data analysis and follow-up of operation activities in overseas countries;.In depth analysis of business, user, commodity and other data, and provide to the operation team to support the operation strategy;.Follow up the local operation work overseas, support the operation effect and give the follow-up optimization suggestions;.Cooperate with product / operation / R & D, promote the implementation of optimization scheme, and bring about the actual improvement and growth of business;.Responsible for all kinds of a / b experiment design and analysis;.Analysis of the overall overseas market and business operation of a certain country..', 'Qualifications:': 'Bachelor degree or above, major in mathematics, statistics, computer is preferred; or major in science or engineering or engaged in data statistics, analysis, modeling related working areas after graduation;.Proficient in SQL, can use Python or R for data analysis;.At least 3 years of working experience in e-commerce business and analysis is preferred;.Overseas business experience or analytical experience is preferred;.Able to write requirement documents in English and communicate with global staff;.Have a strong learning ability and curiosity; ability to pick up domain knowledge in new areas quickly; Can lead a small project team to support business;.Have a strong ability to work under pressure, have the courage to overcome difficulties and accept challenges..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/e-commerce-data-analyst-immediate-urgenthire-10146738?jobId=jobstreet-sg-job-10146738§ionRank=844&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'VP/AVP, Senior Data Scientist - Consumer Banking Group (CBG) - (WD36996)'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Business Function': '', 'Responsibilities': 'Drive customer acquisition and engagement across DBS products through effective use of analytics resulting in portfolio growth and increased market share..Drive product business strategy by providing recommendation through data analytics.Deliver timely and accurate analysis/modelling, insights as 2in1 box with products to achieve business outcome.Drive cognitive and automated banking initiatives through Machine learning models development and automation of control towers/alerts.Utilizing Data Driven Operation Model (DDOM) to maximize value from data and drive business management and shared KPI with products partners..Identify opportunities and develop strategies to drive retail customers engagement for financial planning opportunities..', 'Requirements': 'Minimum 3\xa0years of experience.', 'Non-technical\xa0': 'Excellent in storyboarding, strategical thinking, presentation.\xa0.Strong analytical skills, highly numerate and proactive.Good interpersonal and communication skill, stakeholder engagement.With at least 3 years of relevant working experience, preferably with data management and analytics in the banking industry.Ph.d/Master Degree in Banking/Finance, Business,\xa0Mathematics/Statistics, Computer or related disciplines.', 'Technical\xa0': 'Proficient in SAS/python/SQL Programming.Preferred knowledge in Business Intelligence tools and data science.Experience to manipulate and handle large dataset.', 'Apply Now': []}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-avp-senior-data-scientist-consumer-banking-group-cbg-wd36996-10127676?jobId=jobstreet-sg-job-10127676§ionRank=845&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Business Function
[{'position': 'Manager (Biomedical)'}, {'company_name': 'National Cancer Centre Singapore Pte Ltd'}, {'small_section': ['Outram', 'Posted on 31-Oct-22']}, {'About Us': '', 'About the Role': '', 'Some of the Key Responsibilities Include': "Collaborate with internal & external stakeholders to develop equipment specifications, operational policies & procedures, evaluate RFP offers, maintain & budget medical equipment, and ensure that the planning & coordination of FF&E comply with the project requirements.Conduct ITQs, RFPs & quotation analysis for medical equipment, and identify, formulate & execute cost reduction including negotiating service terms and prices with medical equipment vendors.Carry out commissioning & troubleshooting of biomedical equipment and systems to verify cyber-security compliance, patient safety and system performance against manufacturer's specifications.Manage medical equipment service contracts and preventive maintenance, and participate in Centre’s committee & cluster projects, where required.", 'Job Requirements': 'Degree in any discipline with at least 8 years of working experience in healthcare operations of which 2 years in Managerial position is preferred.Good track record in leading and implementing complex projects or strategic procurement will be an added advantage.Excellent team player yet with strong individual focus, highly analytical and strategic mind set.Strong interpersonal, and verbal and written communications skills.Proficient in Microsoft Office.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '8 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Biomedical', 'Registration No.': '199801562Z', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '21 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical, Uniform and Non-Uniform, Others', 'Specific Location': 'Outram'}, {'Company Overview': '\n\tThe National Cancer Centre Singapore (NCCS) has evolved over the past 20 years to become one of the leading regional centres for cancer treatment and research. It has pioneered the one-stop multi-disciplinary approach to cancer treatment and is now home to oncologists, surgeons and researchers, dedicated to the care and treatment of a growing number of cancer patients.\n\tToday, NCCS see close to 65 per cent of the public sector oncology cases in Singapore. To deliver\xa0the latest cancer care and treatment, clinicians work closely with researchers who conduct robust cutting-edge clinical and translational research which has received international recognition.\xa0NCCS strives to be a global leading cancer centre, and shares its expertise and knowledge by training the next generation of medical professionals.'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-biomedical-10120575?jobId=jobstreet-sg-job-10120575§ionRank=846&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
About Us
[{'position': 'Research Associate, - (Computer Science & Data Science), - R00005334'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'The Research Associate (RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning..The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data..', 'Job Requirements:': 'Master degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal and graph data.Programming skills and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-data-science-r00005334-10135204?jobId=jobstreet-sg-job-10135204§ionRank=847&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Assistant, - (Microbiology - Wastewater Surveillance) (R00009549)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Key Responsibilities:\xa0': 'Implement methods for detection and quantification of human pathogens in wastewater leveraging platform technologies, including but not limited to PCR (dd, q, microfluidic) and next generation sequencing.', 'Job Requirements:\xa0': 'BS in biology, microbiology, or other related disciplines.Competent in basic microbiology.Able to handle chemicals and microbes competently and safely, up to Biosafety Level 2.Laboratory experience in carrying out PCR or qPCR independently is required.Possess the ability to follow standard molecular biology protocols, including nucleic acid extraction.Candidate must be extremely reliable and able to operate as part of a team with a fixed schedule..Experience with molecular assay development, optimisation and/or validation preferred.Experience in one or more of the following platform technologies preferred i.e, ddPCR, microfluidic PCR, next generation sequencing, nanopore sequencing, microarrays, lateral flow assay.Vaccinations as recommended by NTU Biosafety and Singapore MOH.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-microbiology-wastewater-surveillance-r00009549-10070295?jobId=jobstreet-sg-job-10070295§ionRank=848&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'VP, System Analyst - Data, Enterprise & Wholesale Bank Analytics'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'About UOB': '', 'About the Department': '', 'Technology and Operations ': '', 'Job Responsibilities': '', 'end-to-end software development in the data analytics domain': '', 'ou will be expected to work in Enterprise & Wholesale Bank Analytics Team': '', 'Key responsibilities include:': '', 'Job Requirements': '', 'Functional skillsets': '', 'Technical skillsets': '', 'At least, 2 to 3 technical certifications in any of the below technologies:': '', 'Experience or certification in the below technologies will be an added advantage:': '', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-system-analyst-data-enterprise-wholesale-bank-analytics-10061453?jobId=jobstreet-sg-job-10061453§ionRank=849&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Research Scientist in Centre for Research in Child Development (OER) [NIE]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'SGD\xa03,700 - SGD\xa04,000', 'Posted on 29-Oct-22']}, {'Research Scientist in Centre for Research in Child Development (OER) [NIE]': '', 'Overview': 'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention.Candidates with appropriate qualifications and relevant research experience are encouraged to apply. Successful applicants will work with a team of researchers at CRCD. We invite applications for the position of Research Scientist to join our efforts..', 'Requirements': 'PhD in a relevant discipline (e.g. developmental psychology, developmental science,\xa0 child development, educational psychology, linguistics, early intervention, or special education).Minimum 2 years of post-PhD experience (Research Scientist).Demonstrated ability to lead a research team;.Demonstrable track record in the following areas:.High quality publications (please provide samples and information on the\xa0 quality and impact of your work based on citations and ranking of journal publications);.Planning and writing research projects that are funded through competitive peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences);.Proficiency in the design and testing of instruments is desirable;.Excellent interpersonal and communication skills (spoken and written English);.Ability to work collaboratively within a team environment..', 'Responsibilities of Research Scientists': 'Collaborate with colleagues to design and implement the centre’s research programme.Take a leading role in the development of research projects and programmes and in seeking and pursuing appropriate external funding;.Disseminate the outcomes of research in peer-reviewed publications of international standing;.Manage and conduct administrative and management tasks associated with your programme of research;.Participate in research of strategic importance to NIE;.Participate in the wider research and service activities of NIE;.', 'Closing Date': 'Review of applicants will continue until the position is filled..', 'Other Information': 'Queries regarding the position should be directed to\xa0.', 'Application': 'Interested applicants should complete and submit the following documents:.Cover letter addressing how you meet each of the requirements of this position;.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research expertise, interests, and future directions;.1 to 3 of your best publications;.Name of at least 3 referees;.Any other documents that demonstrate your qualifications.', 'Note to applicants:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-in-centre-for-research-in-child-development-oer-%5Bnie%5D-10053299?jobId=jobstreet-sg-job-10053299§ionRank=851&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Research Scientist in Centre for Research in Child Development (OER) [NIE]
[{'position': 'Data Scientist Intern, - Growth #URGENT*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Responsibilities': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with Data Engineers, Data Analysts, Product and other engineers to deliver features to drive the user growth of products..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;.Knowledge of statistical data analysis such as linear models, multivariate analysis, stochastic models, sampling methods..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth-urgent*-urgenthire-10113533?jobId=jobstreet-sg-job-10113533§ionRank=853&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Lead, Data Scientist M/F, - #JobsThatMatter, #Urgent'}, {'company_name': 'STMicroelectronics Asia Pacific Pte Ltd (Lite ads)'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job description': "Work\xa0as a technical lead\xa0of\xa0Data Scientist across all Backend Sites, driving operational excellence..Work\xa0as a subject matter expert on Artificial Intelligence/Machine Learning, Data\xa0and\xa0Statistical models\xa0to\xa0present findings\xa0to\xa0stakeholders internally or externally..Implement models\xa0in\xa0machine learning, optimization, Neural Networks,\xa0and\xa0Artificial Intelligence such as Natural\xa0Language,\xa0and\xa0other quantitative approaches..Demonstrate high level\xa0of\xa0thought leadership\xa0in\xa0data science\xa0and\xa0machine learning..Key drive\xa0and\xa0contributor with stakeholders to understand business problems definition, analyze via big data and propose solutions.Deliver meaningful insights\xa0and\xa0predict trends via collection, analysis\xa0and\xa0interpretation qualitative\xa0and\xa0quantitative data with statistical theories\xa0and\xa0methods..Key contributor to fast proofs of concept, prototype\xa0and\xa0implementation\xa0of\xa0viable solutions that demonstrate business value.Create\xa0and\xa0review technical design documentations, contribute\xa0to\xa0company's intellectual property\xa0and\xa0patents..", 'Profile': 'PhD or Masters Degree\xa0in\xa0Computer Science/Mathematics/ Statistics or equivalent..Familiar with Data Engineering techniques\xa0to\xa0prepare, process\xa0and\xa0transform data..Demonstrate strong business understanding\xa0to\xa0define problems\xa0and\xa0propose solutions for implementation..Strong understanding and hands-on experience using Data Science and Statistical methods for AI/ML including Deep learning methods, Data Science Programming\xa0Language\xa0such as Python/R..Prior background\xa0and\xa0relevant working experience for\xa0at\xa0least\xa03\xa0years\xa0in\xa0semiconductor..Familiar with big data, cloud based AI/ML products\xa0and\xa0Agile Methodologies.Fluent\xa0in\xa0English.Self driven, able\xa0to\xa0guide\xa0and\xa0lead a team\xa0and\xa0drive projects..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199404407W', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Accounting / Audit / Tax Services'}, {'Company Overview': '\n\tSTMicroelectronics is a world leader in providing the semiconductor solutions that make a positive contribution to people’s lives, today and into the future.\xa0 Among the world’s largest semiconductor companies and a leading technology innovator: ~7,400 people working in R&D and product design, ~18,000 patents, ~ 9,600 patent families and ~ 550 new patent filings, employing ~46,000 employees worldwide in 11 main manufacturing sites, 80 sales & marketing offices in 35 countries and committing close to 20% in R&D.\n\t\n\t\n\t\tPeople are the foundation of ST and they drive our success. We believe there is a strong correlation between employee\'s commitment and business results. Our engaged employees will make ST even more successful. For this reason, ST has a solid infrastructure to manage the core processes related to people and, one of our top corporate priorities is "People". This corporate priority focuses on employee engagement and recognition, talent management, leadership development.\n\nOur HR Strategy\n\n\t\tOur Human Resources strategy aims to ensure the right level of hiring and retention, to match the company’s evolving requirements in terms of profiles, competencies and the dynamic integration of new people. At ST, we believe that the development of our people is the key factor for ensuring our long term success.\n\n\t\tOur Vision : Everywhere microelectronics make a positive contribution to people\'s lives, ST is there.\n\n\t\tOur Values :\n\nINTEGRITY: we conduct our business with the highest ethical standards, honor our commitments, deliver on our promises, are loyal and fair.\nPEOPLE: we behave with openness, trust and simplicity; ready to share our knowledge, encourage everyone’s contribution, develop people through empowerment, teamwork and training.\nEXCELLENCE: we strive for quality and customer satisfaction and create value for all our partners; we are flexible, encourage innovation, develop our competencies, seek responsibility and are accountable for our actions.'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-scientist-m-f-jobsthatmatter-urgent-10117646?jobId=jobstreet-sg-job-10117646§ionRank=854&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Research Associate (Computer Science/Engineering), - (R00004075) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Research Associate (Computer Science/Engineering/Electronic Engineering)': "Research on different deep-learning and machine-learning based algorithms and applications.Implement the algorithms and experiments for the application level.Analyze the complexity of different algorithms and perform evaluation on different application-level metrics.Collaborate with other team member(s) for more efficient outcome delivery.Perform administrative works assigned by the PI to ensure the smoothness of the project.Master's degree or above in Computer Science/Engineering or Electronic Engineering at a top-tier university.Experience in deep learning, machine learning, design automation, embedded systems, real-time systems, computer architecture, computer-aided design, etc or related fields.Good spoken and written English.Entry level candidates are welcome to apply.Experienced applicants are preferred."}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software, Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Singapore'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-engineering-r00004075-urgent-10127628?jobId=jobstreet-sg-job-10127628§ionRank=855&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Research Associate (Computer Science/Engineering/Electronic Engineering)
[{'position': 'Research Fellow - (Data Science / Blood Sugar Dynamics/Diabetes) (R00010120)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Description:': 'Conduct cross-disciplinary research in monitoring of diabetic condition in healthy and affected individuals. This involves analysis of the continuously measured blood sugar concentration dynamics in diabetics, pre- and none-diabetic individuals. Correlation of these measurements with food nutritional composition and the individuals’ psychological and physical life-stress levels.\xa0 Collaborate with metabolic disease researchers from NTU LKC School of Medicine and TTS Hospital Singapore..Take part in current initiatives in SG health care and digital wellbeing. This project is specifically focused on providing advice for elderly people with type 1 and 2 diabetes and pre-diabetic condition and development of personal data-based dietary recommendations assisting with the decision making process such as insulin injections, food type and nutrition, exercises.\xa0 Collaborate with Temasek Centre for Applied Nutrition Services & Glycemic Index Research Unit. \xa0.', 'Job Requirements:': 'PhD in biology, bioinformatics, metabolic diseases, nutrition, or related fields. This position also welcomes applicants with qualifications at MSc or BSc level (to be offered at Research Associate or Project Officer, respectively), if the right experience, technical qualifications, and expertise is met..Prior research experience..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-science-blood-sugar-dynamics-diabetes-r00010120-10046337?jobId=jobstreet-sg-job-10046337§ionRank=856&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Computer Vision Research Scientist, Data Monetization Technology #WorkNow*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Conduct cutting-edge research in the fields of computer vision and machine learning..Ensure technologies get successfully applied to products..Incubate new products with computer vision and machine learning technologies..', 'Qualifications': 'Ph.D. degree in Computer Science, Computer Engineering or other relevant majors..Rich research experience in but not limited to the following areas (as main authors of published papers at CVPR, ICCV, ECCV, ICML, NeurIPS, and ICLR).Image/video search.Image/video classification/understanding.Object detection, segmentation, and tracking.Representation learning (multi-modality, pre-training, vision transformer, etc.).OCR.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/computer-vision-research-scientist-data-monetization-technology-worknow*-10119849?jobId=jobstreet-sg-job-10119849§ionRank=858&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate (Computer Science/IT) - [R00007075]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Co-evaluate business needs and objectives.Identify opportunities for data acquisition.Build data systems and pipelines.Build algorithms and prototypes.Analyze and organize raw data.Interpret trends and patterns.Conduct data analysis, working independently or with data analysts, and report on results.Prepare data for prescriptive and predictive modeling.Combine raw information from different sources.Explore ways to enhance data quality and reliability.Develop analytical tools and programs.Collaborate with data scientists and architects.', 'Job Requirements': 'Master in Computer Science, IT, or similar field.Previous experience as a data engineer or in a similar role.Technical expertise with data models, data mining, and segmentation techniques.Knowledge of programming langus\xa0 (e.g. Java and Python).Hands-on experience with SQL database design.Great numerical and analytical skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-it-%5Br00007075%5D-10141422?jobId=jobstreet-sg-job-10141422§ionRank=859&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate / (Data Analyst & Machine Learning Specialist) R00008084'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'\xa0': '', 'Key Responsibilities:\xa0': 'Able to develop software codes for autonomous simultaneous localization and mapping of moving equipment.\xa0.Should be able to develop framework for multi accesses edge computing..Train machine learning and deep learning models on a computing cluster to perform visual recognition tasks such as segmentation, detection, self-supervised depth estimation and end-to-end control..Multi sensor fusion based software integration from physical system to virtual environment..Prepare reports and documentations for the research programs, and support data analysis..Test and validate developed autonomous codes against physical systems..Program development for sensor systems and dashboard visualization..Creating lab scale setups and fixtures in tune to vehicle level performance..Formulating process experimental plans both lab level and real field level..Running experiments and troubleshooting systems..Developing potential improvements to the health monitoring system and testing potential solutions..', 'Job Requirements:\xa0': 'Master’s degree in computer science engineering/Electronics Engineering. Related degree preferred. Related experience would be given high priority..Experience with signal processing..Strong python programming, software development best practices, debugging and profiling..Knowledge on at least one mainstream deep learning framework such as Pytorch , Tensorflow and CNN..Familiarity with data science tool kit such as Jupyter, pandas, Linux environment..Familiarity of AWS or Azure..Solid understanding of algorithms, linear algebra, machine learning, computer systems/architecture, neural network..Basic Knowledge with sensor system, interface, data conversion and software programming..Effective communication and report writing skills..Experience in use of applicable business software applications..Prior experience and knowledge in Data analysis and Machine learning algorithms development..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-analyst-machine-learning-specialist-r00008084-10072601?jobId=jobstreet-sg-job-10072601§ionRank=860&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
[{'position': 'Research Associate, (Computer Science & Data Science) - R00005334- #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Key Responsibilities:': 'The Research Associate (RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning..The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data..', 'Job Requirements:': 'Master degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal and graph data.Programming skills and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-data-science-r00005334-jobsthatmatter-10138348?jobId=jobstreet-sg-job-10138348§ionRank=861&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow, - (Computer Science/Vision/Graphics) (R00010451)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Key Responsibilities:\xa0': 'Contribute to design and development of the perception system of our autonomous mobile robot project..Support collaboration with academia and help translate state of the art academic research results in mobile robotics and machine learning to production ready systems..Contribute to the development of internal infrastructure for managing the training, testing/quality assurance, and deployment of both machine learning models and software modules for the perception system..Provide support and leadership in system architecture design for autonomous mobile robot systems..Represent Continental-NTU Corp Lab in national and international initiatives..Carry out project planning, tracking, and reporting..', '\xa0': '', 'Job Requirements:\xa0': 'Must hold\u202fa PhD degree in computer science, computer vision, computer graphics, robotics, video game programming, or machine learning..Proven track record in research excellence as evidenced by published in at least one of the following conferences as an author, SIGGRAPH, CVPR, ICCV, ECCV, ACCV, WACV, BMVC, ICCP, ISMAR, NeurlPS, ICLR, ICRA, IROS, RSS, or in major CV/CG/Robotics/Machine learning journals..Must be passionate about generating new ideas, solving problems, and building working systems..Must be self-motivated, proven collaborators, good communicators, attentive to details, and keen to learn..Ideally have practical experience working in an academic or industrial research environment.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-vision-graphics-r00010451-10070232?jobId=jobstreet-sg-job-10070232§ionRank=862&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Associate [Software Engineering-Artificial Intelligence] - [R00007506]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Key Responsibilities:\xa0': "Conducting research in cutting edge AI domains (mainly related to reinforcement learning) and software/hardware testing.Developing and integrating AI algorithms into the real development progress.Participating in co-operation with Continental's development team.Preparing academic publications such as pattern and research paper.Contributing to writing and presenting seasonal and annual report.", 'Job Requirements:\xa0': "Master's degree in Artificial Intelligence, Computer Science, Software Engineering, Electrical Engineering.Strong background and research experience in artificial intelligence, software engineering, automatic testing, Hardware Design.Excellent background and experience in programming language, especially python.Good communication and report-writing skills.Strong responsibility for research and work."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-%5Bsoftware-engineering-artificial-intelligence%5D-%5Br00007506%5D-10053139?jobId=jobstreet-sg-job-10053139§ionRank=864&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Engineer'}, {'company_name': 'Newbridge Alliance Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 20-Oct-22']}, {'Job scope\xa0': "Advise senior management on best practices for scalable pipelines, queries, and data models.Create pipelines to process data from source systems into platforms leveraging on cloud tool set..Support data structures.Engineers API's for data from these structures.Deliver testable, maintainable, and modern data solutions.Identify, design, and implement internal process improvements in data delivery.At least 2 years experience as a data engineer, DevOps or software engineer.", 'Requirement': 'Experience in DBT and data processing frameworks such as Spark with programming languages such as Java or Scala, and SQL..Experience in relational databases such as MySQL, PostgreSQL, SQL Server, and cloud-based warehouses to data platforms..Knowledge of data structures and data modeling.', 'Good to have\xa0': 'Experience in eCommerce or online retails industry.Cloud infrastructure experience.Understanding of good data governance.DevOps background and AI/ML fundamentals..'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Sales/Marketing, E-commerce', 'Registration No.': '201622755N', 'EA No.': '20S0283', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '24 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tA part of the larger CGP Group, Newbridge Alliance provides businesses with the digital solutions they need to excel in an increasingly shifting market. Based in Singapore with a key focus on the Far East and Greater China, we have worked with clients across the globe to access the right leadership to stay ahead of the digital curve.\n\n\tThrough strategic and future-oriented executive search, we help businesses to find the best leaders of tomorrow across the digital-led sectors through our access to the talent businesses need. Additionally, our consulting services provide leaders across Asia and beyond with the means to drive real change.\n\n\tCornerstone Global Partners (CGP) is an Asia-centric recruitment solutions firm with a global reach through offices in China, Hong Kong and Singapore, along with network offices in 40 other countries around the globe. We provide services which include traditional C-level to mid-level executive search, contract staffing, market entry/outbound investment consultancy and organizational design solutions through our industry-specialized recruiting team.\n\n\tEA Licence number: 20S0283'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10083763?jobId=jobstreet-sg-job-10083763§ionRank=865&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Job scope
[{'position': 'Big Data Engineer (Ads Data) - 2023 Start'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted 19 hours ago']}, {'Responsibilities': [], 'Why Join Us': '', 'About the Team': 'Translate business requirements into technical implementations and responsible for building batch and real-time data warehouse;.Design, build and launch real-time/batch data models/pipelines in production;.Build up data marts and own data quality for business areas;.Support existing real-time/batch systems in production, solve on-call issues;.Define and manage SLA for all data sets in business areas;.Support daily project management, assist junior engineers in business and technical problems..', 'Qualifications': 'Final year or Entry level with a background in Software Development, Computer Science, Computer Engineering, or a related technical discipline.Experience working with big data technologies such as Hadoop, Hive, Spark, etc.;.Experience with schema design and dimensional data modelling;.Experience in custom ETL design, implementation and maintenance;.Proficient in at least one programming language such as Python, Java or C++;.Good communication skills, including the ability to identify and communicate data driven insights..'}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-engineer-ads-data-2023-start-10146754?jobId=jobstreet-sg-job-10146754§ionRank=868&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Vice President (SVP), - Senior Data Scientist, Analytics Centre of Excellence, Transformation Group - (WD41958)'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Who we are': '', 'Responsibilities:': 'The hired data scientist will play an active role in supporting the bank to build advance analytic solutions by working with the business owners/sponsors, and other data scientists to develop advance analytics solutions..The successful candidate will lead the efforts to propose advanced analytics to drive business value, including: understand the business domain and data; build end-to-end advanced analytical solutions to and deploy to production system; build the CICD practice to manage models for quick experiments and feedback loop; communicate analytics result and machine learning model details with business and stakeholders; lead and mentor junior data scientist, help them learn and grow..Analyse and identify the business problem with impact and feasibility for AI/ML solution.Develop the analytic approach and propose the solution with business impact and data/technical feasibility.Work with solution architect and tech team to ensure overall solution design is suitable for production infrastructure and dependent applications.Work with business to ensure user is able to fully leverage on the AI solution for better outcome, implement the change management / user education if necessary.Work with business and end user to design the action, decision, insight and interpretation from the model output..Responsible for the technical design, methodology, development quality, deployment and management of the models develop by the team.Responsible for the end-to-end solution development from data, model development to operation deployment of solution and user acceptance.Lead / involve in developing enterprise capability in Data/ML Operation, specialized technical area or AI/ML solution design.Build strong data team, mentor and coach data scientist. Engage, educate and develop business understanding of AI/ML solution and ability to design / improve process / product using data and AI.\xa0.Be the champion of data community, lead by example to be part of the community and build the data / AI culture such as sharing, learning, publishing, innovation and contributing/using of techniques, tooling, best practice, and reusable code / data assets..', 'Requirements:': 'PhD or Master in Computer Science, Mathematics, Statistics, Business Analytics, or related field..10+ years of experience in industry and/or academia with demonstrated track record of technical research, design, development and implementation AI/ML solution to production\xa0.Expert level in Python, PySpark, SQL and familiarity with other related technology such as MLflow, Kubernetes, Hadoop, Hive, AWS/GCP.\xa0.Mastery of various feature engineering and modelling techniques and their applications in specific situations.Mastery in Machine learning framework, solution design, development and production leveraging enterprise CICD and SDLC process..Expert working with large amount of data, creating data pipelines for processing, wrangling and feature engineering in both development and production environment..Experience building and implementing data intensive / real time\xa0machine learning solutions..Excellent problem-solving skills and strategic thinker. Ability to communicate complex analysis/models across a diverse team. Good interpersonal skill and able to influence the decision making of data science and IT.Proficient with code management tools such Git, Bitbucket, Jira and confluence.Demonstrate competency and applying skills such as problem solving, business needs analysis, design thinking, computational thinking, computational modelling, system thinking, change management and analytic consulting..', 'Apply Now': []}, {'Career Level': 'Senior Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-vice-president-svp-senior-data-scientist-analytics-centre-of-excellence-transformation-group-wd41958-10122304?jobId=jobstreet-sg-job-10122304§ionRank=870&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing'}]
Who we are
[{'position': 'Senior Scientist (Green Chemistry), ISCE2'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Requirements:': 'Lead a new division in Green Chemistry in ISCE2.Deliver scientific peaks of excellence in chemistry with a specific focus on sustainability.Position green chemistry in Singapore as a globally leading hub.Lead proposals and secure competitive grants (both internal within A*STAR and external), and in collaboration with other research institutes/institutes of higher learning (IHLs).Engage public agencies, and/or industries for research collaborations.nitiate large proposals and translate research outcomes (new products or processes for commercialization) with industries and public agencies.Develop new Intellectual Properties (IP), present scientific findings at international conferences and publish in top-tiered journals.Set up and maintain state-of-the-art research equipment and facilities.Mentor and coach scientists and engineers to achieve scientific excellence.Conduct outreach to recruit talents from IHLs.PhD in Chemistry.8 years of research and preferably and 3 years of supervising teams.Excellent scientific publication record with high citation indices in top journals of Chemistry.Good track record in securing research grants.Recognition for scientific excellence by international communities, e.g. advisory/editorial boards, awards/prizes, plenary/keynote/invited lectures, conference committees.Experience in managing different stakeholders to deliver technology translation outcomes..Good track record in generating intellectual properties (patents, know-how).Strong communicator in presentation and writing.Inspirational mentor and coach to researchers.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Manager', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Internship', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-scientist-green-chemistry-isce2-10127597?jobId=jobstreet-sg-job-10127597§ionRank=872&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Job Requirements:
[{'position': 'VP, Data Scientist, Human Capital Analytics, Group Human Resources - (WD33341)'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Who you are:': '', 'You’re no doubt a data whiz': '', 'you’re known to be both a problem-solver and an opportunity-explorer.': '', 'you have the necessary hard, and soft, skills to succeed.': '', 'Your role involves:': 'Work amongst a team of data scientists in partnering with business intelligence developers, visualisation and insights experts, and HR business specialists to assess our organisation’s human capital needs and identify opportunities to apply data analytics..Improving the way we design our end-to-end employee journey through experimentations..Defining analytical strategy, problem statements and hypotheses to address identified opportunities, including analytical approaches, data and technology requirements..Developing predictive models and performing statistical analyses to identify key areas of risk and predict risk events, across a range of banking functions..Designing and implementing tracking and feedback mechanisms to allow for capturing of actions and the impact of data-driven decisions on business outcomes..', 'Your background:': 'You have the track record:.You have at least 5-8 years of hands-on experience with analytical tools and techniques, and of which, past 5 years of relevant experience being in an analytical function building and implementing various statistical models, working with large amounts of data and articulating business questions, data extraction and use of statistical approaches to arrive at an answer..You’ve built and operationalised the analytical capability of a business or organisation..You have the basics covered:.Able to translate business problems into mathematical formulations? Check..Understand mathematical and Artificial Intelligence (AI) Machine Learning (ML) modelling techniques? Check..Proficient in data manipulation and analysis? Check..Programming experience in R, Python, Spark or other statistical software? Check..Other programming languages can include SQL, Hadoop, Java, Hive, and/or MariaDB? Check..Experience using ‘Git’ as a version control tool, preferably with the ability to work in Linux environment? Check..', 'Ideally, you should have:': 'Experience working with unstructured datasets, and knowledge in text mining and text analysis..Deep interest and aptitude in data, metrics, analysis and trends and applied knowledge of statistics, measurements and model evaluation..HR domain knowledge and/or People analytics-related experience is a plus..'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Admin/Human Resources, Human Resources', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-data-scientist-human-capital-analytics-group-human-resources-wd33341-10122372?jobId=jobstreet-sg-job-10122372§ionRank=873&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Who you are:
[{'position': 'Senior/ Professional Officer, (Software Engineering for ML/DL/AI) - [498101] #Urgent'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities': 'Design and teach labs & practice modules..Mentor students in Capstone Projects and the Integrated Work Study Programme (IWSP)..Lead or co-lead innovation projects with industry..Manage labs and equipment to support academic programmes and applied research..Ensure safety in labs.', 'Job Requirements': 'A Postgraduate Degree in Computer Science, Data Science, or a related field, or equivalent levels of industry experience..Proven working experience related to Machine Learning or AI, with good knowledge of industry practices and technological applications in the field. Familiarity with practical ML, including standard frameworks and libraries..Basic to advanced level competence in programming languages such as C/C++, Python and Java. Should be able to handle OOP..Good grasp and understanding of data structures, data modelling and software architecture as well as a firm competence in mathematics..Motivation to be involved in applied research and academic project work, with demonstrated ability in developing software solutions to technical problems..Proven supervisory skills and the ability to work well with others..Demonstrated proficiency to keep abreast of developments in the field, and pursue professional certification programs. Possession of industrial certifications in relevant areas will be an advantage..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-professional-officer-software-engineering-for-ml-dl-ai-%5B498101%5D-urgent-10120988?jobId=jobstreet-sg-job-10120988§ionRank=875&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Research Fellow (Computer Science/Computer Engineering/Electronic Engineering) (R00010858)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Key Responsibilities:\xa0': 'Develop high performance deep learning and machine learning algorithms for BCI systems.Conduct experiments to validate deep learning BCI engine for novel applications in motor, cognition, emotion domains..Write high-quality research papers to be published in top-tier journals and conferences..Assist in supervising other research staff and students..', 'Job Requirements:\xa0': 'PhD in Computer Science, Computer Engineering, Electronic Engineering, or related disciplines from a top-tier university..Strong analytical and programming skills and proficient in programming languages (e.g., Python, C/C++, MATLAB etc.).Strong publication track record..Experience in BCI, deep learning, and pattern recognition is a merit..Good communication and English writing skills..Excellent teamwork and experience with supervising students.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-computer-engineering-electronic-engineering-r00010858-10070654?jobId=jobstreet-sg-job-10070654§ionRank=877&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow, (Char and activated carbon) - [R00007916]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Responsibilities': 'Coordinate the project execution and communication among the collaborating parties.Work synergistically with PI and Co-I in experimental designs, conducting experiments, troubleshooting and data analysis.Provide expertise on modification and application of char generated from the pyrolysis of waste/biomass for different potential areas which include purification/adsorption processes, catalytic conversion, and electrochemistry reactions.Design and conduct the screening, testing, usage, and optimization of char and activated carbon in different applications (sorbent, catalysis, electrochemistry, etc.).Perform characterization of materials applied and the modified char/activated carbon produced.Provide training to research associate/assistant on the relevant skills for the proposed project.Summarise the findings in this project and produce the progress reports, final report and scientific recommendations.', 'Job Requirements': 'Ph.D. degree in Chemical Engineering, Environmental Engineering, Electrochemistry, Analytical Chemistry, or a relevant field.Experience in production, testing, modification and application of char and activated carbon.Extensive knowledge in various applications of char/activation and carbon characterization is desired.Good record of peer-reviewed papers is advantageous.Scientific article, proposal and report writing skills are required.Good interpersonal skills.Good English writing and communication skills.Excellent teamwork awareness.Productive, hard-working and dedicated to the completion of any task assigned.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Chemical Engineering', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-char-and-activated-carbon-%5Br00007916%5D-10071266?jobId=jobstreet-sg-job-10071266§ionRank=878&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Assistant - (R00008322) #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Research Assistant (Geodesy)': '', 'Job Responsibilities': 'Analyze and interpret geodetic and remote sensing data from regional observing networks and satellites to further our understanding of natural hazards and respond to disasters, with focus on South and Southeast Asia.Support the research work of other team members, for example by gathering training data sets for machine learning projects or by coding up new algorithms for disaster mapping.If interested, carry out independent research work and write up the results for publication and presentation at conferences.If interested, support public engagement activities by helping to write blog and social media posts about the research work of the group.', 'Job Requirements': 'B.Sc. in Earth science, remote sensing, geodesy, natural hazards, computational modelling, computer science, data science, or a related field.Background knowledge of Earth science and natural hazards is ideal, although we will also consider candidates with a strong background in computer science or data analysis.Experience programming with Python or MATLAB would be a strong plus.Experience working with GIS systems would be a strong plus.Evidence of excellent English language and communication skills.Evidence of independence in research and team spirit.Enthusiasm to engage in the research work of our group, and a passion for making Southeast Asia a safer and more sustainable place for all communities in the region.Only candidates with existing permission to freely work in Singapore will be considered.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-r00008322-jobsthatmatter-10071702?jobId=jobstreet-sg-job-10071702§ionRank=879&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Research Assistant (Geodesy)
[{'position': 'Data Scientist, Trust and Safety #LetsGetToWork *#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Responsibilities': [], 'Overview': 'Support strategic planning and execution for long term business plans through in-depths research, industry studies and the study of market trends..Design and establish indicator systems for safety and risks of the platform, monitor and optimize risk coverage in each link, measure the performance of content safety strategies and facilitate decision-making..Build and enhance risk detection models or toolings to strengthen enforcement and automation of trust and safety policies.Derive and drive quantitative projects from start to finish, including developing analytical frameworks, distilling actionable insights and working with XFN partners to drive business impact..', 'Qualifications': 'Working level competency in one or more programming languages including SQL, Python and R is required..Sound understanding of ML models and how they can be leveraged to act upon a range of content and safety risks..Minimum 2+ years work experience in quantitative analysis with relevant degree / experience..Experience working on consumer-facing products, with a keen sense of malicious and inappropriate activities that occur on social media..Ability to solve problems using quantitative approaches and communicate complex concepts and analytical results to drive business impact..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-trust-and-safety-letsgettowork-*-urgenthire-10113546?jobId=jobstreet-sg-job-10113546§ionRank=880&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Assistant [Computer Science and Data Science] - (R00006992) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 3-Nov-22']}, {'Key Responsibilities': 'The Research Assistant(RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning. The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data. This includes:.Conduct literature study.Design and implement new algorithms and machine learning models.Collect datasets and conduct experiments on the datasets.Write research papers and present the results at conferences.', 'Job Requirements': 'Bachelor degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal data.Programming skills, and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-%5Bcomputer-science-and-data-science%5D-r00006992-urgenthire-10128998?jobId=jobstreet-sg-job-10128998§ionRank=881&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Scientist (Advanced Optical Technologies), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['West', 'Posted on 2-Nov-22']}, {'Job description': 'Design\xa0and\xa0fabrication of novel optical fluorescent concentrators.Stereolithography resin 3D printing of smooth structures with fine features.Development of fluorescent resin composite materials for stereolithography.Optical characterization of concentrators.Work\xa0closely with companies\xa0and\xa0bring technology to commercialization.Assist in writing of reports, papers,\xa0and\xa0technology disclosures.', 'Job requirements': 'Ph.D in Material Science, Chemistry, Physics, Electrical Engineering,\xa0or\xa0other relevant disciplines.Good\xa0publication record in related field.Strong\xa0background in optics\xa0and\xa0photonics.Experience in stereolithography, resin 3D printing, wet chemistry\xa0and\xa0solution processing techniques.Willing to\xa0apply\xa0for competitive funding.Good\xa0team player with\xa0good\xa0communication skills.', 'The above eligibility criteria are\xa0not\xa0exhaustive. A*STAR may include additional selection criteria\xa0based\xa0on its prevailing recruitment policies. These policies may be amended\xa0from\xa0time to time without notice. We regret that only shortlisted\xa0candidates\xa0will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-advanced-optical-technologies-imre-10125640?jobId=jobstreet-sg-job-10125640§ionRank=882&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Data Analyst Internship, - (6months) - Intellectual Property Rights(IPR) Protection Team #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'Job Responsibilities': 'Conduct research and collect data inputs for algorithms to identify risky products on the platform..Assist with designing and refining algorithms to quantify risks and predictive analysis..Investigate anomalies and propose solutions..Assist with the design and implementation of the Risk Dashboard..Assist with the rollout and presentation of the dashboard to stakeholders.', 'Qualifications': 'English working proficiency.Pursuing a Bachelor or Masters in Law/ Business/ e-Commerce/ Computer Science/ Software Engineering/ Economics/ Statistics/ Mathematics/ Operations/ Research/ Related Fields..Data analytical skillset - SQL, Excel.Experience with data visualization software is a plus..Attention to detail, good at problem-solving..Passionate about technology, good at problem-solving..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-internship-6months-intellectual-property-rights-ipr-protection-team-immediate-10144018?jobId=jobstreet-sg-job-10144018§ionRank=883&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Analyst'}, {'company_name': 'Kerry Consulting Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa011,000 - SGD\xa012,500', 'Posted on 20-Oct-22']}, {'Description': '', 'Responsibilities': '', 'Skills and experiences required': 'Min. Degree in Business/Finance or related disciplines.At least 3 years of relevant experience working on Securities, Pricing, Index, Portfolio and Fund Data Operations in Financial Institutions.Good understanding of Front Office, Trade Lifecycle and Operations processes.Experience in Data Analysis and change management.Familiar with data management frameworks and possess strong analytical skills.Prior experience using Aladdin/ Fundipedia/ Goldensource is desirable.Knowledge of R & Python programming skills is a plus.', 'To Apply': '', '[email\xa0protected]': []}, {'Career Level': 'Non-Executive', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200307397W', 'EA No.': '16S8060', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tHeadquartered in Singapore since 2003, Kerry Consulting is Singapore\'s leading Search & Selection firm. Our consulting team is the most experienced, and amongst the largest, in the ASEAN region.\n\n\t\tWe provide services to many of the world\'s leading companies and financial institutions. We are committed to creating positive long term outcomes for both our clients and our candidates. Our focus is on "Returning the Human to Resourcing".\n\n\n\tTo find out more, please visit our website at www.kerryconsulting.com\n\n\tLicence No: 16S8060\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-10083526?jobId=jobstreet-sg-job-10083526§ionRank=885&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Research Scientist, - [R00002765] #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'SGD\xa04,000 - SGD\xa04,500', 'Posted on 28-Oct-22']}, {'Research Scientist (Electrical and Electronic Engineering/Computer Science)': '', 'Job Responsibilities': 'Efficient software and hardware implementation, and benchmarking of post-quantum cryptographic primitives.Studying vulnerabilities and side-channel attacks for these designs.Preparing reports and scientific papers based on the findings.', 'Job Requirements': 'Possess PhD in the Electrical and Electronic Engineering/Computer Science.Experience in optimized software and hardware implementations with background in cryptography.Excellent teamwork and verbal, written communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-%5Br00002765%5D-urgent-10060761?jobId=jobstreet-sg-job-10060761§ionRank=886&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Research Scientist (Electrical and Electronic Engineering/Computer Science)
[{'position': 'Assistant Professor in Economics and Data Science -#UrgentHire #Immediate'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Nanyang Technological University, Singapore': '', 'School of Social Sciences': '', 'Tenure-track Assistant Professor in Economics and Data Science': '', 'Emoluments': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-professor-in-economics-and-data-science-urgenthire-immediate-10138766?jobId=jobstreet-sg-job-10138766§ionRank=888&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Nanyang Technological University, Singapore
[{'position': 'Head\xa0of\xa0Data\xa0and\xa0Analytics\xa0Singapore #WorkNow'}, {'company_name': 'Citibank N.A.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities:': "Analytics leader with experience in analytics and information management across multi-product relationships for customers and households.Must demonstrably understand the data sources and analytic techniques that are used at scale by large consumer finance institutions, but also have significant experience leading and innovating in the areas of customer recognition, cross-channel servicing and marketing, digital acquisitions and attribution, and client retention through a series of appropriate business intelligence, analysis, models and strategies, implemented either internally in our decision systems, or externally at third-party providers such as the credit bureaus and database marketing companies/DSPs.Significant influence and execution skills in ambiguous contexts, and should be able to articulate a regional strategy that stakeholders will accept, including colleagues in the areas of information technology, operations, marketing, finance, credit, fraud, and authorizations, in order to build next-generation data platforms and analytics solutions that improve the customer experience and create sustainable business growth outcomes.Passion for analytics as a craft and the people who practice it.Be a practitioner and an advocate for the value of analytics in refining business outcomes and must have a demonstrated ability to work within the company and across industries to identify and source talent, design required training to cover analytics skills gaps, and grow and promote analytics talent.Appropriately assess risk when business decisions are made, demonstrating particular consideration for the firm's reputation and safeguarding Citigroup, its clients and assets, by driving compliance with applicable laws, rules and regulations, adhering to Policy, applying sound ethical judgment regarding personal behavior, conduct and business practices, and escalating, managing and reporting control issues with transparency, as well as effectively supervise the activity of others and create accountability with those who fail to maintain these standards..", 'Qualifications:': "15+ years of experience, including 8-10+ years' managerial experience.Experience working within financial services and analytics.Experience working directly with business partners to ensure optimal design and delivery of consumer facing solutions.Management experience.Excellent customer focus.Excellent team player; ability to lead, partner and negotiate with cross functional team to successfully deliver client needs.", 'Education:': 'Bachelors/University degree, Master’s degree preferred; managerial experience.'}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200309485K', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\n\t\tCiti is more than a global financial services company. It’s an engine for progress. Join us, and you’ll have the chance to get involved in progress in all its shapes and forms, right across the world. From the micro to the macro, from Australia to Zambia, the work we do has real positive impact. Wherever you are and whatever you do, progress starts here.\n\n\nMission: Citi's mission is to serve as a trusted partner to our clients by responsibly providing financial services that enable growth and economic progress. Our core activities are safeguarding assets, lending money, making payments and accessing the capital markets on behalf of our clients. We are Citi, the global bank – an institution connecting millions of people across hundreds of countries and cities.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/head-of-data-and-analytics-singapore-worknow-10126225?jobId=jobstreet-sg-job-10126225§ionRank=890&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Scientist, Engineering Mechanics, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Requirements': 'PhD in mechanical engineering or related field.Strong background in computational design and optimization, including (but not limited to) topology optimization, shape optimization, and generative design.Knowledge of user centred design, human-cyber-physical-systems, and human decision-making is a plus.Good coding skills for scientific computing.Possess good publication track record.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-engineering-mechanics-ihpc-10128331?jobId=jobstreet-sg-job-10128331§ionRank=892&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Job Requirements
[{'position': 'Senior Data Engineer (Data Engineering) #Worknow #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What to Expect': 'Design and build resilient and efficient data pipelines for both batch and real-time streaming data.Architect and design data infrastructure on cloud using industry standard Infrastructure-as-Code tools.Execute projects with an Agile mindset.Build software frameworks to solve data problems at scale.Collaborate with product managers, software engineers, data analysts and data scientists to build scalable and data-driven platforms and tools.Be put in the driving seat as an engineering leader.', 'How to Succeed': 'Bachelor’s Degree in Computer Science or have equivalent professional experience.Have more than 4 years of experience in a technical role.Experience with data processing tools such as Spark, Beam, Flink.Experience with the cloud (e.g. AWS, GCP, Azure).Experience implementing batch and streaming data pipelines.Experience writing efficient SQL.In-depth knowledge of both SQL and NoSQL databases, including performance tuning and troubleshooting.Familiar with DevOps tools such as Git, Docker, Terraform.Experience in the public sector is a bonus.Previous technical leadership experience is a bonus.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-engineer-data-engineering-worknow-jobsthatmatter-10052918?jobId=jobstreet-sg-job-10052918§ionRank=893&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
What to Expect
[{'position': 'Project Officer - R00005373'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Project Officer (Aviation/Statistics/Data Science/Engineering Science in Statistics)': '', 'Key Responsibilities:': 'Produce a regional air traffic statistics report for ASEAN; to produce a coherent traffic simulation from submissions of flight plans from Member States, to report work in an international high-level meeting.Work on subprojects of a larger CONOPS study.Develop a plan.Conduct experiments using simulators.Analyse data.Liaise with the sponsor.Deliver project reports regarding operational feasibility assessment.', 'Job Requirements:': "Bachelor's in Aviation, Statistics, Data Science, Engineering / Science (in Statistics) field or any relevant fields.Experience in air traffic control.Working knowledge of air traffic manment, perspectives of airlines and ANSPs.Strong understanding of statistics and data analysis.Meticulous, independent and a good team player.Proficiency in English."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-r00005373-10070684?jobId=jobstreet-sg-job-10070684§ionRank=894&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Project Officer (Aviation/Statistics/Data Science/Engineering Science in Statistics)
[{'position': 'IT Senior Data Mgt Engineer'}, {'company_name': 'Soitec Microelectronics Singapore Pte. Ltd.'}, {'small_section': ['Pasir Ris', 'SGD\xa04,500 - SGD\xa06,000', 'Posted on 29-Oct-22']}, {}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200609193H', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Semiconductor/Wafer Fabrication', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Sports (e.g. Gym), Parking, Vision, Flexible Benefits Scheme, Smart Casual'}, {'Company Overview': "\n\tSoitec is the world's leading supplier of engineered substrates that are enabling a new generation of consumer electronic devices. The Group designs and manufactures innovative semiconductor materials especially silicon-on-insulator (SOI) wafers based on its SmartCut™ technology. These substrates are then patterned and cut into chips to make circuits for electronic components. Soitec offers unique and competitive solutions for miniaturizing chips, improving their performance and reducing their energy usage.\n\n\n\tIn meeting the technical and economic challenges of mainstream electronics, Soitec is helping to speed up the mobile and digital revolutions. Its products are used to manufacture chips that go into smart phones, tablets, computers, IT servers and data centers as well as electronic components in cars, connected devices, and industrial and medical equipment.\n\n\n\tSoitec's technologies, projects and industrial capacity make it one of the crown jewels of France's industrial sector. The company was founded 25 years ago in Grenoble's high-tech ecosystem and now has a presence throughout the world.\n\n\n\tSoitec's mission is to innovate and industrialize advanced engineered substrate for mobile, high-performance and advanced microelectronic applications."}, {'url': 'http://www.jobstreet.com.sg/en/job/it-senior-data-mgt-engineer-10029634?jobId=jobstreet-sg-job-10029634§ionRank=896&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
[{'position': 'Research Fellow (Computer Science/Electrical & Electronic Engineering/Physics/Mathematics) (R00006390)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key Responsibilities:\xa0': 'Conduct research in the areas of Machine Learning, Knowledge Graphs, Algorithm Design, Data Mining, Question-Answering, and Recommendation.Design and implement scalable algorithms and machine learning methods.Perform empirical study on real-world knowledge graph datasets.Publish top-tier conferences and journals.Design prototypes and demos.', 'Job Requirements:': 'PhD in Computer Science, Electrical & Electronic Engineering, Physics, Mathematics or a related discipline.Good programming skills in e.g., C++, Java, Python, etc.Research experience in data analytics, machine learning, deep learning, knowledge graphs, social networks, algorithm design, recommendation, question-answering, and network embedding.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-electrical-electronic-engineering-physics-mathematics-r00006390-10046492?jobId=jobstreet-sg-job-10046492§ionRank=897&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist, E-Commerce Risk Control #JobsThatMatter #Urgent*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..Solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-e-commerce-risk-control-jobsthatmatter-urgent*-urgenthire-10108742?jobId=jobstreet-sg-job-10108742§ionRank=898&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Site Reliability Engr., - Applied Machine Learning #URGENT'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'About Tiktok': '', 'About the Role': '', 'Qualifications': '', 'Minimum Qualifications': 'Bachelor’s degree in Computer Science or equivalent with 3+yrs relevant experience..Proven experience in analyzing and troubleshooting distributed systems..Prior experience designing and maintaining large-scale systems..Experience programming in at least one of the following languages: Python or C/C++..', 'Preferred Qualifications': 'Ability to thrive in a fast-paced environment.\xa0.Strong understanding of code optimizing and routine tasks automation..Proficiency in at least one machine learning framework: TensorFlow, PyTorch, MXNet or PaddlePaddle..Solid background of algorithms and data structures..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/site-reliability-engr.-applied-machine-learning-urgent-10144730?jobId=jobstreet-sg-job-10144730§ionRank=899&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist, E-Commerce Risk Control*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..Solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-e-commerce-risk-control*-urgenthire-10108537?jobId=jobstreet-sg-job-10108537§ionRank=900&token=0~05e376a0-96f6-44c5-b582-6fa4173d6aab&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Principal Research Scientist Information Technology - [R00007762] #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Requirements:\xa0': "\u200bA PhD in IT, Computer Engineering, or any other relevant field.12 of experience after PhD , preferably in cybersecurity research or IoT system architecture, including at least 5 of project manment experience. Applicants with a master's and a minimum of 16 working experience will be considered.A proven track record of international publications in relevant fields.Familiar with IoT, virtualization and distributed systems.Experience in international research collaboration, security information and event manment (SIEM), malware analysis, machine learning, cyber systems (CPS), or security architectures/frameworks is a plus.Proficient in technical reporting/presentations, have good verbal communication skills and be ability to work independently and in a team to realize the proposed works."}, {'Career Level': 'Manager', 'Qualification': 'Professional Certificate/NiTEC', 'Years of Experience': '12 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-principal-research-scientist-information-technology-%5Br00007762%5D-urgenthire-10128467?jobId=jobstreet-sg-job-10128467§ionRank=903&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Job Requirements:
[{'position': 'Scientist (Advanced Optical Technologies) (Excitonics), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['West', 'Posted on 3-Nov-22']}, {'The candidate should:': 'Hold a PhD degree in Materials Science, Electrical Engineering, Physics or related fields..Have a strong background in excitonic materials and devices..Be experienced in the fabrication and testing of light-emitting devices..Or/and, be experienced in the probing of photophysics of luminescent materials or devices..Be able to communicate and work effectively in a team..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-advanced-optical-technologies-excitonics-imre-10127782?jobId=jobstreet-sg-job-10127782§ionRank=904&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
The candidate should:
[{'position': 'Research Engineer I, (Health App Developer/Data Analyst) (R00009266)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Responsibilities': 'Project management in ensuring all key deliverables are met.Design, build and maintain mobile health app (iOS and/or Android platform) for the elderly and connect it with existing wearables via Bluetooth Low Energy. Data Storage feature from mobile app to wearable is required.Conduct quantitative/ big data analysis using health app/wearables data and surveys.Specific duties include but are not limited to ensuring the quality and performance of the applications / platforms, identifying and fixing application bugs, maintaining the core code, and implementing updates to the application/platform.Work with team to conduct feasibility study with end-users and refine app based on collected data/feedbacks.Work with team to write journal publications, conference papers, and reports.', 'Job Requirements': 'Bachelor’s degree in Computer Science, Software Engineering, Information Technology, Computer Engineering, Computational Social Science, Communication, or related fields, and relevant work experience.Applicants with relevant work experience in app development are preferred..Interest in research for mobile health app/wearable technology.Familiarity with iOS programming languages (such as Swift, Objective-C, C#) and/or Experience with data analysis will be a bonus.Has a keen interest in developing mobile app for the elderly community. Candidate should be comfortable with communicating with elderly.Good analytical, organizational and interpersonal skills.Good communication and writing skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-i-health-app-developer-data-analyst-r00009266-10046620?jobId=jobstreet-sg-job-10046620§ionRank=905&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Scientist - E-Commerce Risk Control - #WorkNow*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..At least 3 years with solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-e-commerce-risk-control-worknow*-urgenthire-10109450?jobId=jobstreet-sg-job-10109450§ionRank=906&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Specialist, Data Scientist #WorkNow #JobsThatMatter'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Senior Specialist, Data Scientist': '', 'Overview': '', 'Overview\xa0of\xa0the\xa0role:': '', 'Job\xa0Role:': "Defines, develops, maintains\xa0and\xa0delivers strategic data science products that demonstrate\xa0the\xa0value\xa0and\xa0effectiveness\xa0of\xa0the\xa0organization..Will be responsible for\xa0the\xa0leadership\xa0and\xa0direction\xa0of\xa0the\xa0projects\xa0to\xa0develop analytic products..Develop\xa0and\xa0communicate insights leveraging\xa0the\xa0scientific method. Roles may specialize into 3 domain specialties : model science, feature science\xa0and\xa0Insight science capabilities..Accountable for developing\xa0and\xa0guiding more junior members\xa0and\xa0communicating findings, approaches\xa0and\xa0insights\xa0from\xa0data products..Responsible for guiding own\xa0work\xa0for deployment\xa0and\xa0support..Leads\xa0and\xa0partners with others\xa0to\xa0deliver meaningful insights in complex business situations..Establishes relationships\xa0to\xa0obtain data\xa0and\xa0subject knowledge needed\xa0to\xa0support advanced analytics..Conducts studies\xa0to\xa0provide additional facts needed\xa0to\xa0make informed decisions with regard\xa0to\xa0organizational\xa0and\xa0functional effectiveness with data decisioning..Develops consultative partnerships with internal teams\xa0to\xa0understand their strategic objectives, key performance indicators and reporting requirements..Extracts business insights to guide direction\xa0of\xa0learning activities\xa0and\xa0drive organizational efficiencies, effectiveness\xa0and\xa0outcomes..Maintains knowledge\xa0of\xa0company's total computing\xa0environment\xa0and\xa0planned changes\xa0in\xa0order\xa0to\xa0develop meaningful data science products..Collaborates/Supervises leaders/Individuals\xa0to\xa0deliver on complex projects aligned with organizational strategies\xa0and\xa0business priorities. Provides training in technical tools\xa0and\xa0skills, as well as specific applications\xa0and\xa0their business functions\xa0to\xa0maximize their contribution..Grow\xa0and\xa0develop skills across\xa0the\xa03 domain specialties: model science, feature science\xa0and\xa0Insight science capabilities..Stressing expertise in\xa0the\xa0core functional areas: Computer Programming, Math & Analytic Methodology, Distributed computing\xa0and\xa0communications\xa0of\xa0complex results..Contributes\xa0to\xa0the\xa0achievement\xa0of\xa0area objectives.", 'Skills:': "Senior finance professional in quantitative discipline with expertise in machine-learning..Proven track record\xa0of\xa0applying machine-\xa0and\xa0deep-learning frameworks\xa0to\xa0practical business challenges in capital markets..Excellent knowledge\xa0of\xa0capital markets, products\xa0and\xa0concepts with a focus on fixed income products,\xa0money\xa0markets,\xa0and\xa0quantitative methods..Fluency\xa0in\xa0Python, SQL, Git. Proficiency\xa0in\xa0deep learning frameworks like tensorflow / keras..Familiarity with Google Cloud ecosystem, Bloomberg ecosystem, QuantLib\xa0are\xa0a plus..Team player, innovator, out\xa0of\xa0the\xa0box thinker..Master's\xa0degree\xa0or\xa0PhD (Computer Science, Math, Physics, Engineering).At\xa0least 5\xa0years\xa0of\xa0relevant\xa0work\xa0experience.Applied Machine Learning experience - modeling\xa0and\xa0implementation.Thorough understanding\xa0of\xa0various statistical\xa0and\xa0machine learning algorithms.Proficient\xa0in\xa0Python with open source libraries such as TensorFlow\xa0and\xa0data engineering pipelines such as Apache Spark.Excellent analytical\xa0and\xa0big-data skills.Academic/Research background, a plus.Previous experience\xa0at\xa0next-gen analytics\xa0or\xa0big-data fintech companies strongly preferred.", 'Qualification:': '', 'Employer Description:': '', 'EEO Statement:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-specialist-data-scientist-worknow-jobsthatmatter-10111970?jobId=jobstreet-sg-job-10111970§ionRank=908&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Senior Specialist, Data Scientist
[{'position': '(Senior) Research Fellow/Scientist (Translational Biophotonics Laboratory), IBB'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job\xa0description:\xa0': 'Develop novel optical and/or electronic imaging and spectroscopy systems, including hardware implementation, software interface and data/image processing for medical and agri-food technology applications.Work closely with scientists from various backgrounds and clinicians from hospital clusters in Singapore to develop technologies and conduct translational research\xa0.Present analysis results and project solutions to technical leads and senior leaders as necessary\xa0.Ensure deliverables are completed on-time.', 'Requirements:\xa0': 'Ph.D in engineering, physics and/or photonics.Applicants with relevant project experience will be\xa0considered.Experience/skills in optical/photonics system development for\xa0spectroscopy\xa0imaging applications.Good knowledge in software interfacing with hardware instruments, such as LabVIEW, Python or MATLAB\xa0.Skills in data or image processing using Python, MATLAB or other programming languages\xa0is advantageous.Good oral and written communication skills.Able to work in a multidisciplinary team, demonstrate initiative and work independently with strong interpersonal skills.Good publication record in international journals.Interest for translational research.Interest/experience in product commercialization is advantageous\xa0.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-fellow-scientist-translational-biophotonics-laboratory-ibb-10124109?jobId=jobstreet-sg-job-10124109§ionRank=909&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Job description:
[{'position': 'Senior Research Scientist B, - R00008964-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 6-Nov-22']}, {'Senior Research Scientist B (Electrical & Electronics Engineering/Material Science/Physics/Chemistry)': '', 'Job Responsibilities': 'To develop III-V compound semiconductor-based LDs and its integration with external switches.Formulate and execute DOEs for process development/process optimization.Sourcing of required equipment/tool for the fabrication of LDs and its testing.Design of Epi-layer design, Layout, process steps and recipes for the fabrication of LDs.Prepare the run-sheets for the full fabrication of LDs up to the level of packaging.Work with the Fab manager/module leaders for the smooth flow of LD fabrication.Contribute to research reports for project deliverables, new project proposal drafting and etc....Perform other duties related to optical devices and its integration or assigned by higher management.Preparing process documentations with the standard of ISO 9001:2015 or ISO 9001:2018.', 'Job Requirements': 'PhD with 4 years of relevant experience in either Electrical & Electronics Engineering/ Material Science/Physics/Chemistry or Other related field.Strong technical knowledge with hands-on experience in III-V compound semiconducting materials and its optical devices (e.g. Junction diodes, Transistors, Switches, and etc…).Skills to initiate and design mask layout as necessary for new device geometries.Knowledge in developing new processes to improve the overall performance of LDs and Qualify processed wafers for engineering and new product development programs.Capability to work with process team to develop improved processes for the fabrication of LDs and switches.Knowledge in monitoring engineering process and analyze process and device data.Skills to analyze and correlate processed data with device performance.Participate in Engineering team meetings, Program Status meetings and Design Review meetings as necessary.', 'We regret to inform that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-b-r00008964-jobsthatmatter-10139150?jobId=jobstreet-sg-job-10139150§ionRank=910&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Senior Research Scientist B (Electrical & Electronics Engineering/Material Science/Physics/Chemistry)
[{'position': 'Senior Data Scientist #Worknow'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Senior Data Scientist': '', 'Overview': "Participate on a team\xa0to\xa0apply\xa0scientific method\xa0to\xa0find solutions\xa0to\xa0real business problems..Perform data analysis, feature engineering\xa0and\xa0advanced methods\xa0to\xa0prepare\xa0and\xa0develop decisions\xa0from\xa0data..Leverage simple\xa0to\xa0advanced data techniques\xa0to\xa0support\xa0the\xa0team\xa0to\xa0deliver data analytic products for\xa0the\xa0firm..Performs analytics\xa0in\xa0support\xa0of\xa0the\xa0identification\xa0and\xa0understanding observed business outcomes..Collaborates with others\xa0to\xa0deliver on hypothesis testing\xa0and\xa0developing\xa0the\xa0mathematics\xa0to\xa0describe\xa0the\xa0business opportunity..Communicates effectively with analytics staff..Develops analytics, prepares\xa0and\xa0delivers both informational\xa0and\xa0decision-seeking presentations..Stays abreast\xa0of\xa0organization\xa0and\xa0management changes\xa0and\xa0has\xa0in-depth knowledge\xa0of\xa0company practices relevant\xa0to\xa0data science products..Maintains knowledge\xa0of\xa0company's total computing\xa0environment\xa0and\xa0planned changes\xa0in\xa0order\xa0to\xa0develop meaningful data science products..Contributes\xa0to\xa0the\xa0achievement\xa0of\xa0team objectives.", 'Qualifications:': "Bachelor's\xa0degree\xa0in\xa0a related discipline\xa0or\xa0at\xa0least 5\xa0years\xa0of\xa0equivalent\xa0work\xa0experience required.1-3\xa0years\xa0of\xa0related experience required;.Experience\xa0in\xa0the\xa0securities\xa0or\xa0financial services industry\xa0is\xa0a plus\xa0or\xa0participation\xa0in\xa0Technology Leadership..", 'Employer Description:': '', 'EEO Statement:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-scientist-worknow-10112915?jobId=jobstreet-sg-job-10112915§ionRank=911&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Senior Data Scientist
[{'position': 'Research Scientist - [R00002765]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'SGD\xa04,000 - SGD\xa04,500', 'Posted on 26-Oct-22']}, {'Research Scientist (Electrical and Electronic Engineering/Computer Science)': '', 'Job Responsibilities': 'Efficient software and hardware implementation, and benchmarking of post-quantum cryptographic primitives.Studying vulnerabilities and side-channel attacks for these designs.Preparing reports and scientific papers based on the findings.', 'Job Requirements': 'Possess PhD in the Electrical and Electronic Engineering/Computer Science.Experience in optimized software and hardware implementations with background in cryptography.Excellent teamwork and verbal, written communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-%5Br00002765%5D-10055099?jobId=jobstreet-sg-job-10055099§ionRank=912&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Research Scientist (Electrical and Electronic Engineering/Computer Science)
[{'position': 'Data Scientist Research (Behavioral) #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': 'Lead technical research on bridging the understanding between human and machine learning..Build the library of elementary concepts that serve as factors to form content.Interpretation of natural signals (image, audio, text, video) into structured computational signals for ML models to process like the human brain.Identify patterns that indicate intentions, and verify them with experiments.Incorporate a variety of statistical and machine learning techniques - such as logistic regression, clustering, mixed modeling, decision trees and neural networks - on multi-modal datasets.Understand underlying data sources and their limitations. Create innovative approaches to answer pressing questions, prepare complex data analyses and models that help solve issues, drive the scaling of automated processes and deliver significant measurable impact.Communicate with machine learning engineers and product partners to understand business needs and provide analytical solutions.Act as an analytics translator, communicating complex data insights through exploratory analysis and research to discover potential bottlenecks to suggest improvement and workflow of internal teams.', 'Qualifications': 'Advanced degree in social, behavioral, human-centric interaction or cognitive sciences (Linguistics, Sociology, Anthropology, Psychology) or other research-oriented disciplines within Humanities. Experience in quantitative fields (Computer Science, Engineering, Statistics, Mathematics or related fields) is a plus, Ph.D. is a plus..Proven experience in working with large datasets and relational databases (Hive, SQL).3-7 years of hands-on behavioral/ cognitive research experience in a business environment.Experience in statistics and experimental design and data mining techniques (k-means clustering, regression, decision trees, clustering, neural networks, etc.).Experience in programming computational and statistical algorithms for large data sets..Proficiency in Python packages such as pandas, seaborn, scikit-learn, dplyr or nltk.Distinctive communications skills and ability to communicate analytical and technical content in an easy-to-understand way to both technical and non-technical audiences..Intellectual curiosity, along with excellent problem-solving and quantitative skills, including the ability to disaggregate issues, identify root causes and recommend solutions.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-research-behavioral-urgenthire-10109497?jobId=jobstreet-sg-job-10109497§ionRank=913&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow (Computer Science) - (R00008247)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Key Responsibilities:': 'Conduct research and development in Artificial Intelligence, Machine Learning and Deep Learning as applied to Computer Vision and Anomaly Detection.Generate Intellectual property in the form of Technical disclosures and patents.Publish research papers.Provide research leadership as well as mentorship to the project team.Manage research project.', 'Job Requirements:': 'PhD in Computer Science or related disciplines.At least one year of experience in machine learning and deep learning or related areas.Good knowledge of Pytorch and Tensorflow.Good spoken and written English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-r00008247-10053170?jobId=jobstreet-sg-job-10053170§ionRank=914&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Scientist (Aural & Language Intelligence Department), I2R'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Description:': '', 'Job Requirement:': 'PhD in NLP, computational linguistics, machine learning\xa0or\xa0related fields.Proficient programming skills (C++ experience preferred), familiarity with Linux.Strong\xa0analytical\xa0and\xa0critical thinking skills,\xa0good\xa0team player with\xa0good\xa0communication\xa0and\xa0interpersonal skills.Publications at top AI/NLP/ML venues are a must.', 'The above eligibility criteria are\xa0not\xa0exhaustive. A*STAR may include additional selection criteria\xa0based\xa0on its prevailing recruitment policies. These policies may be amended\xa0from\xa0time to time without notice. We regret that only shortlisted\xa0candidates\xa0will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-aural-language-intelligence-department-i2r-10125221?jobId=jobstreet-sg-job-10125221§ionRank=915&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Assistant - (Data Science/Machine Learning) - (R00007081) - #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Research Assistant (Data Science/Machine Learning/Computational Fluid Dynamics) (R00007081)': '', 'Job Responsibilities': 'Participate in programming and soft development related works on energy systems design, modeling, and optimization using algorithms and artificial intelligence (AI) techniques.Assist in applying data science and machine learning techniques for energy stor material selection and formulation.Conduct data collection, data analysis, and database maintenance.Support in Computational Fluid Dynamics (CFD) studies and other related topics.', 'Job Requirements': 'Bachelor’s in Computer Science, Electrical Electronic Engineering, Mechanical Engineering, Mathematics, or Physics.Experience with machine learning, data analytics, and software development.Familiar with python or C++ development, experience with MySQL is a plus.Experience or knowledge in CFD, chemistry, or energy system modeling is preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-data-science-machine-learning-r00007081-urgent-10135303?jobId=jobstreet-sg-job-10135303§ionRank=916&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Research Assistant (Data Science/Machine Learning/Computational Fluid Dynamics) (R00007081)
[{'position': 'Research Fellow, - (Artificial Intelligence) (R00010346)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Job Description:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.', 'Job Requirements:': 'Research and Comprehensive Skills:.Coding Skills:.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-r00010346-10070257?jobId=jobstreet-sg-job-10070257§ionRank=917&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Senior Research Scientist, (Electrical Engineering) #LetsGetToWork'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Key Responsibilities:': 'Lead the technical development of advanced data-driven methods for smart meter data analytics for smart home applications..Design artificial intelligence (AI) based models for residential load demand forecasting, solar PV power forecasting, and prosumer behaviour modelling and knowledge extraction..Perform testing and demonstration of the algorithms and deliverables..Communicate with the industry collaborators for progress reporting and potential commercialization of deliverables..Assist the PI for project management, including time schedule and milestone management..Coordinate with other research teams in this project for internal and external communication and collaboration..', 'Job Requirements:': 'PhD degree in Electrical Engineering..At least 5 years research and/or industry working experience..Expert knowledge in power system data analytics, especially on forecasting and knowledge extraction..Comprehensive experience in industry-funded research projects..Familiar with commercialization of research deliverables..Excellent project management skills..Excellent publication record in top-tier journals..Excellent verbal and written communication skills in English..Strong analytical and conceptual abilities..Able to work independently and in a team to realize proposed research work..'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-electrical-engineering-letsgettowork-10061122?jobId=jobstreet-sg-job-10061122§ionRank=918&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow (Machine Learning and Human Machine Interaction) - [R00008643] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on im/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-machine-interaction-%5Br00008643%5D-jobsthatmatter-10051653?jobId=jobstreet-sg-job-10051653§ionRank=919&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Ethics & Compliance - Data Analyst'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': '', 'Responsibilities:': "Responsible for using data analysis, data mining and visualisation for investigation work and training programs;.In-depth understanding of the company's compliance processes by using internal tools to monitor compliance status, and provide daily data support for the department, ability to partnership with cross-functional teams such as internal audit, risk control, human resources, finance;.Participate in and support major projects of the investigation department, and put forward effective suggestions and feedback to ensure the smooth development of investigation actions;.Participate in the development of Ethics Office projects such as designing and developing BI dashboards to present analytics insights and set anomaly alerts according to monitoring rules..", 'Qualifications': '', 'Qualifications:': "Bachelor's Degree and/or Masters, majors in mathematics, statistics, computer science, related majors are preferred;.3+ years of strong industry experience in big data analysis, experience in forensics/consulting/risk data mining is preferred;.Proficiency in excel, data visualisation tools such as SQL database software, Power BI, Tableau;.Experience in coordinating cross-functional and cross-regional execution. Strong communication, critical thinking and quick learning are preferred;.Demonstrated leadership and self-direction. Willingness to both teach others and learn new techniques.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/ethics-compliance-data-analyst-10133233?jobId=jobstreet-sg-job-10133233§ionRank=920&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate (Data Analyst & Machine Learning Specialist) - [R00008084]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Key Responsibilities:': 'Able to develop software codes for autonomous simultaneous localization and mapping of moving equipment..Should be able to develop framework for multi accesses edge computing..Train machine learning and deep learning models on a computing cluster to perform visual recognition tasks such as segmentation, detection, self-supervised depth estimation and end-to-end control..Multi sensor fusion based software integration from physical system to virtual environment..Prepare reports and documentations for the research programs, and support data analysis..Test and validate developed autonomous codes against physical systems..Program development for sensor systems and dashboard visualization..Creating lab scale setups and fixtures in tune to vehicle level performance..Formulating process experimental plans both lab level and real field level..Running experiments and troubleshooting systems..Developing potential improvements to the health monitoring system and testing potential solutions..', 'Job Requirements:': 'Master’s degree in computer science engineering/Electronics Engineering. Related degree preferred. Related experience would be given high priority..Experience with signal processing..Strong python programming, software development best practices, debugging and profiling..Knowledge on at least one mainstream deep learning framework such as Pytorch , Tensorflow and CNN..Familiarity with data science tool kit such as Jupyter, pandas, Linux environment..Familiarity of AWS or Azure..Solid understanding of algorithms, linear algebra, machine learning, computer systems/architecture, neural network..Basic Knowledge with sensor system, interface, data conversion and software programming..Effective communication and report writing skills..Experience in use of applicable business software applications..Prior experience and knowledge in Data analysis and Machine learning algorithms development..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-analyst-machine-learning-specialist-%5Br00008084%5D-10071817?jobId=jobstreet-sg-job-10071817§ionRank=921&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Open Rank Tenured/Tenure Track Faculty Position in Information Systems R00010347'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'About the School:': '', 'About the Division:': '', 'Requirements:': 'Candidates for the Assistant Professor position should have some record of publication in top-tier journal, or evidence of a strong pipeline of papers under review at top-tier journals..Candidates for the Associate Professor position should have an established record of excellence in research and teaching..Candidates for the Full Professor position must demonstrate significant achievements in research and teaching and, in particular, the leadership impact of these scholastic achievements. They must have made substantial contributions to their profession and have international visibility..', 'Key Benefits:': '', 'Application:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/open-rank-tenured-tenure-track-faculty-position-in-information-systems-r00010347-10070739?jobId=jobstreet-sg-job-10070739§ionRank=922&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
About the School:
[{'position': 'Research Fellow - R00004943 - #LetsGetToWork'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Assist research project under the direction of Principal Investigator or senior research staff, and present significant progress towards the deliverables.Lead sub-projects and coordinate collaboration works.Participate in writing scientific publications and grants. Review and curation of literature.Collaborate with other team members and supervise junior members.Assist in general operation of laboratory including ordering supplies and maintenance.Train new laboratory personnel, students, and short-term visiting scientists.Comply with all laboratory safety standards and guidelines.', 'Job Requirements:': 'PhD in Chemistry, Materials Science, Biomedical Science and related fields with specialization in nanotechnology, nanofabrication, nanocharacterization, nanobiotechnology, nanobiosensors, and biomaterials.Experience on biochemistry, bioanalysis, single molecular detection, molecular cloning, protein engineering, membrane proteins.Experience on cleanroom fabrication, photolithography, electron-beam lithography, reactive ion etching, thin-film deposition, basic cell culture and fluorescence microscopy imaging are highly desired.Experience in immunostaining, cell transfection, live cell imaging, super-resolution microscopy, MATLAB, and membrane reconstruction are highly desired.Good track records with at least 1 first author scientific publication in reputable journals.Highly motivated and dedicated to the development of the project.Excellent laboratory, planning, and leadership skills.Ability to integrate well into a team of researchers with different backgrounds, and the ability to learn new techniques.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-r00004943-letsgettowork-10072710?jobId=jobstreet-sg-job-10072710§ionRank=923&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist - Analytics*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': '', 'Qualifications': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-analytics*-urgenthire-10108524?jobId=jobstreet-sg-job-10108524§ionRank=924&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist - (TikTok) - 2023 Start #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Qualifications': 'Design analysis framework according to the business objectives, and indicator system to evaluate business performance..Build data indicator reports, monitor indicator changes, and perform attribution analysis of changes;.In-depth analysis of user data, mining the optimization space of product experience and recommendation strategies, and producing executable data insights; cooperating with product managers and algorithm engineers to promote the implementation of optimization;.Through rigorous AB experimental design and causal inference analysis, quantitatively verify business assumptions and evaluate optimized benefits;.Research on ecological topics such as content evolution, creator ecology, and social networks..Entry level candidates with a background in Software Development, Computer Science, Computer Engineering, or a related technical discipline.Familiar with commonly used statistical analysis methods, proficient in the use of scripting languages such as SQL, R, Python;.Good logical thinking ability, problem interpretation ability and fast learning ability;.Sensitive to numbers, passionate about analysis, and believe in data-driven value;.Good communication skills, team spirit and initiative..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-tiktok-2023-start-urgenthire-10109495?jobId=jobstreet-sg-job-10109495§ionRank=925&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Qualifications
[{'position': 'Data Engineer'}, {'company_name': 'Good Job Creations (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa05,200 - SGD\xa08,800', 'Posted on 21-Oct-22']}, {'[Order Number: ': '', '2209-63020': '', ']': '', 'Responsibilities': 'Develop and support enterprise data services, and ensure operational stability and performance through continuous optimization..', 'Develop and support enterprise data services, and ensure operational stability and performance through continuous optimization.': 'Work hand-in-glove the product owners and various stakeholders to deliver features, using best-of-breed technologies and robust engineering methodologies..Coordinate closely with platform engineers to ensure the data services remain performant and scalable amid seasonal demand patterns..Demonstrate technical and product expertise, and be able to advise business users and solution new features..', 'Requirements': '', 'data engineer or backend developer in a big data field.': 'Good working knowledge of Linux (or Unix-like) Operating System..Solid working knowledge of enterprise-grade database technologies and languages (Oracle PL/SQL, SQL)..', 'Solid working knowledge of enterprise-grade database technologies and languages (Oracle PL/SQL, SQL).': '', ' Software Development Life Cycle (SDLC) processes, and Agile methodologies like Scrum and Kanban.': 'Understand the best-practices of code versioning, testing, CICD, and documentation..', 'cv_may(AT)goodjobcreations.com.sg': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200618166E', 'EA No.': '07C5771', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '7 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tGood Job Creations Singapore (License Number: 07C5771) provides total HR solutions with core values of customer focus, teamwork, professionalism and contribution to the society and our clients. Our vision is to create opportunities for Asian talents in Singapore and across the region. For more information, visit us at www.goodjobcreations.com.sg\n\n\tGOOD JOB CREATIONS (SINGAPORE) PTE. LTD.\n\n\tEA License No.: 07C5771\n\tKimiya Shibazaki\n\tRegistration NO.: \u200bR1325719\n\n\tWe agree to protect all personal information and contact details sent to us via your resume according to the Personal Data Protection Act (PDPA) with effect from 2nd July 2014.\n\tAll information collected is strictly for the purpose of processing your job application and internal administrative use.\xa0\xa0\n\tBy sending your resume to us, you acknowledge your consent to the collection and use of your personal data for the above purposes only.\xa0\xa0\xa0\xa0\n\n\tOur Company’s Privacy Policy:\n\thttp://www.goodjobcreations.com.sg/en/privacy/\n\n\tDo not hesitate to contact our officer if you have further queries with regards to the Personal Data Protection Act.\n\tData Protection Officer: Mr. Kimiya Shibazaki\n\tContact: +65 6258 8051\n\n\t[*PDPA clause]\n\n\tYour data may be used by our affiliated companies under WILL Group Asia Pacific (https://willgroup.co.jp/en/index.html) for the sole purpose of recruitment.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-10085961?jobId=jobstreet-sg-job-10085961§ionRank=926&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
[Order Number:
[{'position': 'Data Scientist Research #LetsGetToWork #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': 'Design and build advanced analytical solutions and products to deliver superior business outcomes using research and performing quantitative and qualitative analysis on markets, products and competitors.Prove business impact of projects using methods like experimental designs, cohort matching, and causal inference.Understand underlying data sources and their limitations. Create innovative approaches to answer pressing questions, prepare complex data analyses and models that help solve issues, drive the scaling of automated processes and deliver significant measurable impact.Act as an analytics translator, communicating complex data insights through exploratory analysis and research to discover potential bottlenecks to suggest improvement and workflow of internal teams.Liaise with team members and management in understanding their data needs and providing data support..', 'Qualifications': '3-7 years of hands-on mathematical modeling experience in business environment.Proficiency in Python packages such as pandas, seaborn, scikit-learn, dplyr or nltk.Advanced knowledge of statistical and data mining techniques (k-means clustering, regression, decision trees, clustering, neural networks, etc.).Proven experience in working with large datasets and relational databases (Hive, SQL).PhD in quantitative field like Computer Science, Engineering, Statistics, Mathematics or related field required..Distinctive communications skills and ability to communicate analytical and technical content in an easy to understand way to both technical and non-technical audiences..Intellectual curiosity, along with excellent problem-solving and quantitative skills, including the ability to disaggregate issues, identify root causes and recommend solutions.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-research-letsgettowork-urgenthire-10109496?jobId=jobstreet-sg-job-10109496§ionRank=927&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Big Data Lead - #Immediate | #Worknow #UrgentHire'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted 20 hours ago']}, {'About the Job:': 'The Job is to design, define, maintain, and support\xa0the architecture of existing product. As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system. You will also be the backend lead of a small dynamic team of software developers..You will\xa0work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..', 'About the Team:': 'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..', 'Responsibilities:': 'The candidate is responsible for developing and working with peers to build sustainable and well-defined components that can enhance or introduce new innovative features to existing product..', 'As the backend team lead,\xa0your will provide leadership in the following:': 'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work\xa0with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work\xa0with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..', 'Basic Qualifications:': 'Bachelor’s degree in Computer Science, Computer Engineering, or a software related discipline, from an accredited\xa0college\xa0or\xa0university.Must have hands-on experience in Big Data (Hadoop, HBase, Hive, Scala).Must have hands-on experience in Spark development, Sqoop, Flume, Kafka, nifi and Python.Must have experience with creating web services that can run in a high availability Cloud environment that can easily be monitored.Must have hands on experience in Java, spring, microservices, REST API, spring Boot, Scala, Hadoop, Spark, Kafka, Postgres, Docker, Kubernetes..Proven success working in a team-oriented environment and demonstrated problem solving skills..Must have an ability to identify, formulate, and solve engineering problems.', 'Desired Qualifications:': 'Experience in Architecture, design, implementation, and deployment of high volume, highly available, cloud-based systems would be a plus.Hands on experience in Java/Scala/Python or any programming language software development skills.Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..A proactive and eager nature for tackling new challenges.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-lead-immediate-%7C-worknow-urgenthire-10146683?jobId=jobstreet-sg-job-10146683§ionRank=928&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
About the Job:
[{'position': 'Lead Data Engineer - Consultant'}, {'company_name': 'Sourced (Singapore) Pte. Ltd.'}, {'small_section': ['Southern Islands', 'SGD\xa011,000 - SGD\xa015,000', 'Posted on 14-Oct-22']}, {'About Sourced': '', 'Sourced Values': 'Be involved in pre-sales activities by working closely with our clients to tailor and define enterprise scale strategies and identify new opportunities..Defining and implementing cloud-based solutions with a heavy focus on application, data, and infrastructure, in line with industry best practices and enterprise architecture guidelines..Provide leadership, mentoring and coaching to a team of consultants and own the outcome of projects..Consulting to clients in the form of business and technical strategic recommendations, report writing, analysis and delivery..Conduct technical assessments of existing environments and facilitate workshops with clients, partners, and our team..Representing Sourced Group and be an ambassador at regional conferences and have an impact in the cloud community..Apply cutting edge technologies and tools in big data and machine learning to build, manage and automate pipelines for data pipelines and analytics platform..Build production grade end-to-end analytics solution to solve business challenges together with Data Engineering, Data Scientists and business teams..Creation of data governance blueprint and reference architecture for various analytics use cases..Study and evaluate the state-of-the-art technologies such as cloud based optimized computing clusters, serverless data processing, and frameworks of data engineering, and establish, apply and maintain best practices and principles of data engineering..Perform code reviews to improve the quality of data pipelines.Monitor and evolve data analytics platforms to support business driven use cases and new consumption patterns..Bachelor’s or Master’s Degree in Software Engineering, Computer Science or related fields.5 to 10 years of experience in industry (ideally banking, ecommerce, telecoms, consulting) with demonstrated track record of leveraging advanced analytics to achieve business impact..At least 3 years of experience in data mining and machine learning on large amount of data, and multi-tier software application design.Excellent understanding of software & data engineering principles and design patterns..Familiar with tools such as Anaconda, Jupyter, Eclipse, Jira, Git, SVN, Jenkins, etc.Great programming skills in Python (Pandas, SciPy, NumPy, PySpark, etc), Scala, Java, SQL, Shell Script.Experience with traditional data analytics platform stack (Hadoop, Hive, HBase, Spark, Flink, Kafka, Presto, Airflow, etc), and / or cloud (AWS) based analytics services (Amazon Kinesis Data Streams, AWS EMR, AWS Glue etc…) and structured (SQL) and unstructured databases (Graph Database, NoSQL)..Familiar with industry paradigms and standards for model development, validation and testing and have developed and implemented large-scaled machine learning solutions from end to end..Strong in problem-solving, being resourceful with end to end critical thinking to find out solutions even in unfamiliar scenarios..Good communication and project management skills..Demonstrated strong interests in learning about Data Governance, Analytics & Machine Learning through own initiatives.Deep technical knowledge and experience with enterprise scale data modelling.Strong understanding of distributed systems architecture..Data quality process experience including data cleansing, audits and alerts, triage mechanisms & processes and referential integrity..Hands-on experience in databases, advanced SQL and software development in languages such as Python, Go, Scala, Java, TSQL, PL/SQL to name a few..Previous skills in Big Data technologies and Apache ecosystem technologies such as Spark, Kafka, Hive, Airflow, NiFi..Experience building end to end data pipelines using on-premises or cloud-based data platforms..Exposure to cloud-native data warehouses (AWS/Redshift, GCP/BigQuery, Azure, Snowflake) as well as experience in Integration/Middleware (Talend, API, Enterprise Service Bus.) is highly desirable..', 'Why Sourced?': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201715615D', 'Average Processing Time': '3 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)', 'Specific Location': 'Telok Ayer'}, {'Company Overview': 'OverviewSourced is an award-winning global consulting firm that helps organisations make the most of cloud computing with a focus on security, governance, and compliance. With nearly over a decade of experience and offices in Australia, Canada, Malaysia, New Zealand, Singapore, the United Kingdom and the United States of America, Sourced provides professional services that secure, migrate, and manage hyper-scale cloud infrastructure for enterprise clients. We specialise in organisation-wide cloud transformation and enablement for highly regulated industries, including financial services, aviation, healthcare, and telecommunications. Our proven deployment frameworks and trusted design patterns enable security-conscious organisations to unlock innovation, increase velocity, and embrace cloud at scale.'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-engineer-consultant-9975046?jobId=jobstreet-sg-job-9975046§ionRank=929&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
About Sourced
[{'position': 'Data Scientist Intern, Growth #JobsThatMatter #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with Data Engineers, Data Analysts, Product and other engineers to deliver features to drive the user growth of products..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;.Knowledge of statistical data analysis such as linear models, multivariate analysis, stochastic models, sampling methods..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth-jobsthatmatter-urgenthire-10105637?jobId=jobstreet-sg-job-10105637§ionRank=930&token=0~87345530-9278-4cb8-9bd6-f7bd3ab7f711&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Process Development Scientist (Organic Synthesis/West Area/Up to S$4500)(ID:549189)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa07,500', 'Posted on 30-Oct-22']}, {'Responsibilities:': 'Conduct laboratory scale experiments and analysis with supervision to support plant operation issues, proposed process modifications, new raw material qualification, evaluation of processes to minimize waste (reuse, etc.), evaluation of new process technologies.Collaborate and work with multi-discipline functions such as process engineers, quality, regulatory, compliance, etc. in troubleshooting all manufacturing problems and upsets..Support technology transfers activities from drafting the standard laboratory procedures (SLP) to execution of laboratory experiments to support process validation..Write new standard operating procedures (SOPs) and up-version the existing SOPs as required..Work with other Process Scientists and Engineers to anticipate and eliminate any process chemistry related issues..', 'Requirements:': 'Minimum Master’s degree/PHD in Chemistry or relevant discipline.Teamwork, organic synthesis, analytical chemistry.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-process-development-scientist-organic-synthesis-west-area-up-to-s%244500-id%3A549189-10117033?jobId=jobstreet-sg-job-10117033§ionRank=932&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Lead, Data Scientist M/F - #JobsThatMatter##'}, {'company_name': 'STMicroelectronics Asia Pacific Pte Ltd (Lite ads)'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Job description': "Work\xa0as a technical lead\xa0of\xa0Data Scientist across all Backend Sites, driving operational excellence..Work\xa0as a subject matter expert on Artificial Intelligence/Machine Learning, Data\xa0and\xa0Statistical models\xa0to\xa0present findings\xa0to\xa0stakeholders internally or externally..Implement models\xa0in\xa0machine learning, optimization, Neural Networks,\xa0and\xa0Artificial Intelligence such as Natural\xa0Language,\xa0and\xa0other quantitative approaches..Demonstrate high level\xa0of\xa0thought leadership\xa0in\xa0data science\xa0and\xa0machine learning..Key drive\xa0and\xa0contributor with stakeholders to understand business problems definition, analyze via big data and propose solutions.Deliver meaningful insights\xa0and\xa0predict trends via collection, analysis\xa0and\xa0interpretation qualitative\xa0and\xa0quantitative data with statistical theories\xa0and\xa0methods..Key contributor to fast proofs of concept, prototype\xa0and\xa0implementation\xa0of\xa0viable solutions that demonstrate business value.Create\xa0and\xa0review technical design documentations, contribute\xa0to\xa0company's intellectual property\xa0and\xa0patents..", 'Profile': 'PhD or Masters Degree\xa0in\xa0Computer Science/Mathematics/ Statistics or equivalent..Familiar with Data Engineering techniques\xa0to\xa0prepare, process\xa0and\xa0transform data..Demonstrate strong business understanding\xa0to\xa0define problems\xa0and\xa0propose solutions for implementation..Strong understanding and hands-on experience using Data Science and Statistical methods for AI/ML including Deep learning methods, Data Science Programming\xa0Language\xa0such as Python/R..Prior background\xa0and\xa0relevant working experience for\xa0at\xa0least\xa03\xa0years\xa0in\xa0semiconductor..Familiar with big data, cloud based AI/ML products\xa0and\xa0Agile Methodologies.Fluent\xa0in\xa0English.Self driven, able\xa0to\xa0guide\xa0and\xa0lead a team\xa0and\xa0drive projects..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199404407W', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Accounting / Audit / Tax Services'}, {'Company Overview': '\n\tSTMicroelectronics is a world leader in providing the semiconductor solutions that make a positive contribution to people’s lives, today and into the future.\xa0 Among the world’s largest semiconductor companies and a leading technology innovator: ~7,400 people working in R&D and product design, ~18,000 patents, ~ 9,600 patent families and ~ 550 new patent filings, employing ~46,000 employees worldwide in 11 main manufacturing sites, 80 sales & marketing offices in 35 countries and committing close to 20% in R&D.\n\t\n\t\n\t\tPeople are the foundation of ST and they drive our success. We believe there is a strong correlation between employee\'s commitment and business results. Our engaged employees will make ST even more successful. For this reason, ST has a solid infrastructure to manage the core processes related to people and, one of our top corporate priorities is "People". This corporate priority focuses on employee engagement and recognition, talent management, leadership development.\n\nOur HR Strategy\n\n\t\tOur Human Resources strategy aims to ensure the right level of hiring and retention, to match the company’s evolving requirements in terms of profiles, competencies and the dynamic integration of new people. At ST, we believe that the development of our people is the key factor for ensuring our long term success.\n\n\t\tOur Vision : Everywhere microelectronics make a positive contribution to people\'s lives, ST is there.\n\n\t\tOur Values :\n\nINTEGRITY: we conduct our business with the highest ethical standards, honor our commitments, deliver on our promises, are loyal and fair.\nPEOPLE: we behave with openness, trust and simplicity; ready to share our knowledge, encourage everyone’s contribution, develop people through empowerment, teamwork and training.\nEXCELLENCE: we strive for quality and customer satisfaction and create value for all our partners; we are flexible, encourage innovation, develop our competencies, seek responsibility and are accountable for our actions.'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-scientist-m-f-jobsthatmatter-10114367?jobId=jobstreet-sg-job-10114367§ionRank=933&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Research Associate, - (Computer Science & Data Science) - R00005334'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'The Research Associate (RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning..The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data..', 'Job Requirements:': 'Master degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal and graph data.Programming skills and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-data-science-r00005334-10076063?jobId=jobstreet-sg-job-10076063§ionRank=934&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Assistant Professor in Economics and Data Science -#UrgentHire #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Nanyang Technological University, Singapore': '', 'School of Social Sciences': '', 'Tenure-track Assistant Professor in Economics and Data Science': '', 'Emoluments': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-professor-in-economics-and-data-science-urgenthire-urgent-10138797?jobId=jobstreet-sg-job-10138797§ionRank=935&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Nanyang Technological University, Singapore
[{'position': 'Research Fellow, - (Computer Science and Engineering) - R00008362'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Understand the research project and work context as a scientific research staff in the team.Apply scientific, technical and software engineering skills to conduct research.Develop prototypes to demonstrate successful application of the research.Facilitate technical development, testing and refinements of research project.Promote collaborative and translational research work.Documenting research plans and progress, and writing reports\u200b.', 'Job Requirements:': 'Ph.D. Degree in Computer Science and Engineering or related fields.Has demonstrable experience in topics at the intersection of robust optimization, data analytics and machine learning.Programming fluency in Python, C/C++ or Java is required.Proficiency in developing and deploying algorithms to both academic and industrial environment are expected.Prior background in model-based or evolutionary methods for multi-objective optimization is a plus.Highly motivated, independent and able to work as a team.Effective communication and report writing skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-and-engineering-r00008362-10077963?jobId=jobstreet-sg-job-10077963§ionRank=936&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow, (Computer Science and Engineering) - (R00008362)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Understand the research project and work context as a scientific research staff in the team.Apply scientific, technical and software engineering skills to conduct research.Develop prototypes to demonstrate successful application of the research.Facilitate technical development, testing and refinements of research project.Promote collaborative and translational research work.Documenting research plans and progress, and writing reports\u200b.', 'Job Requirements:': 'Ph.D. Degree in Computer Science and Engineering or related fields.Has demonstrable experience in topics at the intersection of robust optimization, data analytics and machine learning.Programming fluency in Python, C/C++ or Java is required.Proficiency in developing and deploying algorithms to both academic and industrial environment are expected.Prior background in model-based or evolutionary methods for multi-objective optimization is a plus.Highly motivated, independent and able to work as a team.Effective communication and report writing skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-and-engineering-r00008362-10076004?jobId=jobstreet-sg-job-10076004§ionRank=937&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Machine Learning Engineer (21WD54341) #UrgentHire'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted 1 hour ago']}, {'Position Overview': '', 'Responsibilities': 'Research, design and building machine learning and deep learning solutions to new problems.Lead machine learning based research with cross-functional teams to discover new business opportunities.Advocate and implement the best practices, in terms of knowledge, technology and process, to ensure the team is working effectively to deliver customer value while also constantly learning to remain up to date in a rapidly changing domain.Collaborate effectively with product management, engineering, design and other stakeholders to deliver products that have a quantifiable impact on Autodesk’s business.', 'Minimum Qualifications': 'A degree in a related field (Data Science, Computer Science, Statistics or a quantitative-related field) or equivalent professional experience..Proven track record overseeing machine learning projects at all stages, from initial conception to implementation and optimization.Collaborative, respectful, and inclusive engineer who is interested to work in a diverse and global team.', 'Preferred Qualifications': 'Bachelors/MS/Ph.D. in a related field (Data Science, Computer Science, Statistics, or a quantitative-related field).3+ years’ experience in developing and shipping machine learning, natural language processing or deep learning models.Experience in Python.Experience in deep learning libraries, such as PyTorch and TensorFlow.Experience working with big data platforms (Hadoop, Spark, Hive) and orchestration frameworks (Airflow) and analytic environments (SageMaker).Experience working with AWS services like ECR, S3 & Lambda.Experience in data preprocessing and building ML pipelines.Strong communicator who can explain complex topics to both a technical and non-technical audience.Excellent communication skills, project management skills, and technical management skills.Familiarity with CAD systems will be advantageous.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-machine-learning-engineer-21wd54341-urgenthire-10148004?jobId=jobstreet-sg-job-10148004§ionRank=938&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Post Doctoral Fellow,Laboratory of Systems Biology & Data Analytics, GIS'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Requirements': 'PhD in Life Sciences with expertise in cancer biology, immunology, or related fields.Skilled in molecular and cellular assays.Strong publication record.Strong communication skills.The ability to work closely with clinicians and computational biologists.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/post-doctoral-fellow-laboratory-of-systems-biology-data-analytics-gis-10126933?jobId=jobstreet-sg-job-10126933§ionRank=939&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Requirements
[{'position': 'Engagement Manager, Quantitative Strategy #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Team Introduction:': '', 'How do we work:': '', 'Outcome Driven': '', 'Start Small and Move Fast': '', 'Ownership ': '', 'Continuous Learning': '', 'We are in this Together': '', 'Job Overview:': '', 'What you will be working on:': "Co-lead analytics engagement with partner agencies, together with the lead data scientist identified for each partner agency.\xa0.Facilitate discussions with stakeholders at partner agencies to understand their business challenges, sharpen use cases, translate them into computational problems answerable with data, and define metrics to quantify success.\xa0.Cultivate a strong pipeline of impactful projects with partner agencies.\xa0.Ensure the presentation of each completed project is targeted at influencing the partner agency's problem owners and stakeholders towards actionable impact, through appropriate framing and data storytelling.\xa0.Understand technical blockers faced by the team, and advocate for organisational / resourcing solutions with senior management at partner agencies to help clear the blockers.\xa0.Forge common ground and align expectations between the various stakeholders at each partner agency (e.g., business end users, data and IT teams, senior managements) to ensure that resources are focused on creating business value.\xa0.Monitor developments in data science within and outside government, to identify opportunities for growth and position the team to capitalize on these opportunities\xa0\xa0.Ensure that teams working with partner agencies continue operating in close alignment to DSAID’s approach and philosophy towards data science.\xa0.", 'What we are looking for:': 'A Bachelor’s Degree or equivalent.At least 2 years of relevant experience, in data science and/or public sector, with good understanding of government organisations and processes.\xa0.Have strong analytical, conceptualisation, and problem-solving skills. Able to translate between broad strategic perspectives and practical business needs, as well as between business needs and technical problems.\xa0.Understand key concepts, broad methodologies, and common use cases in data science.\xa0.Have excellent oral and written communication skills, along with the ability to pitch ideas and influence stakeholders at all levels on the adoption of analytics. Able to present technical concepts and results from technical analyses to non-technical audience effectively.\xa0.Adaptable to dynamic operating contexts and able to work with multiple stakeholders across different teams and agencies.\xa0.', 'Preferred requirements:': 'Experience in working with technical team consisting of data scientists and/or data engineers\xa0.Experience in programme management\xa0.Experience in agile project management\xa0.Understand processes in digital transformation\xa0.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, Marketing/Business Dev', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/engagement-manager-quantitative-strategy-jobsthatmatter-10052845?jobId=jobstreet-sg-job-10052845§ionRank=940&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Team Introduction:
[{'position': 'Part Time Lecturer #LetsGoToWork'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Qualifications': '', 'Teaching Hours': []}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/part-time-lecturer-letsgotowork-10065522?jobId=jobstreet-sg-job-10065522§ionRank=942&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Qualifications
[{'position': 'Computer Vision Research Scientist, - Data Monetization Technology #Worknow'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Responsibilities': 'Conduct cutting-edge research in the fields of computer vision and machine learning..Ensure technologies get successfully applied to products..Incubate new products with computer vision and machine learning technologies..', 'Qualifications': 'Ph.D. degree in Computer Science, Computer Engineering or other relevant majors..Rich research experience in but not limited to the following areas (as main authors of published papers at CVPR, ICCV, ECCV, ICML, NeurIPS, and ICLR).Image/video search.Image/video classification/understanding.Object detection, segmentation, and tracking.Representation learning (multi-modality, pre-training, vision transformer, etc.).OCR.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/computer-vision-research-scientist-data-monetization-technology-worknow-10115577?jobId=jobstreet-sg-job-10115577§ionRank=944&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Science Analyst, TikTok - #LetsGetToWork #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'Qualifications': []}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-science-analyst-tiktok-letsgettowork-immediate-10143962?jobId=jobstreet-sg-job-10143962§ionRank=945&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'VP, Technical Delivery Manager, - Group Technology'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About UOB': '', 'About the Department': '', 'Job Responsibilities': '', 'Job Requirements': '', 'Technical Skills & Experience': '', 'Education': '', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-technical-delivery-manager-group-technology-10100724?jobId=jobstreet-sg-job-10100724§ionRank=946&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Data Engineer, Growth #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted 23 hours ago']}, {'Responsibilities': '', 'You will:': 'Build data pipelines to portray business status, based on a deep understanding of our fast changing business and data-driven approach;.Extract information and signals from a broad range of data and build hierarchies to accomplish analytical and mining goals for “Packaged Business Capability” such as user-growth, gaming and searching;.Keep improving the integrity of data pipelines to provide a comprehensive data service..', 'Qualifications': "Bachelor's degree in Computer Science, Statistic, Data Science or a related field;.Skilled in SQL and additional object-oriented programming language (e.g. Scala, Java, or Python);.Experience in issue tracking and problem solving on data pipelines;.Fast business understanding and collaborative in teamwork.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-growth-urgenthire-10145901?jobId=jobstreet-sg-job-10145901§ionRank=947&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow (Machine Learning and Human Machine Interaction)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science & Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on image/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-machine-interaction-10055697?jobId=jobstreet-sg-job-10055697§ionRank=948&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow/Scientist (Translational Biophotonics Laboratory), IBB'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job\xa0description:\xa0': 'Develop novel optical and/or electronic imaging and spectroscopy systems, including hardware implementation, software interface and data/image processing for medical and agri-food technology applications.Work closely with scientists from various backgrounds and clinicians from hospital clusters in Singapore to develop technologies and conduct translational research\xa0.Present analysis results and project solutions to technical leads and senior leaders as necessary\xa0.Ensure deliverables are completed on-time.', 'Requirements:\xa0': 'Ph.D in engineering, physics and/or photonics.Applicants with relevant project experience will be\xa0considered.Experience/skills in optical/photonics system development for\xa0spectroscopy\xa0imaging applications.Good knowledge in software interfacing with hardware instruments, such as LabVIEW, Python or MATLAB\xa0.Skills in data or image processing using Python, MATLAB or other programming languages\xa0is advantageous.Good oral and written communication skills.Able to work in a multidisciplinary team, demonstrate initiative and work independently with strong interpersonal skills.Good publication record in international journals.Interest for translational research.Interest/experience in product commercialization is advantageous\xa0.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-scientist-translational-biophotonics-laboratory-ibb-10124124?jobId=jobstreet-sg-job-10124124§ionRank=951&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Job description:
[{'position': 'Research Fellow (Analytical Chemistry/Biochemistry/Materials Science/Nanofabrication/Biomedical Science) (R00004943)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key Responsibilities:\xa0': 'Assist research project under the direction of Principal Investigator or senior research staff, and present significant progress towards the deliverables.Lead sub-projects and coordinate collaboration works.Participate in writing scientific publications and grants. Review and curation of literature.Collaborate with other team members and supervise junior members.Assist in general operation of laboratory including ordering supplies and maintenance.Train new laboratory personnel, students, and short-term visiting scientists.Comply with all laboratory safety standards and guidelines.', 'Job Requirements:\xa0': 'PhD in Chemistry, Materials Science, Biomedical Science and related fields with specialization in nanotechnology, nanofabrication, nanocharacterization, nanobiotechnology, nanobiosensors, and biomaterials.Experience on biochemistry, bioanalysis, single molecular detection, molecular cloning, protein engineering, membrane proteins.Experience on cleanroom fabrication, photolithography, electron-beam lithography, reactive ion etching, thin-film deposition, basic cell culture and fluorescence microscopy imaging are highly desired.Experience in immunostaining, cell transfection, live cell imaging, super-resolution microscopy, MATLAB, and membrane reconstruction are highly desired.Good track records with at least 1 first author scientific publication in reputable journals.Highly motivated and dedicated to the development of the project.Excellent laboratory, planning, and leadership skills.Ability to integrate well into a team of researchers with different backgrounds, and the ability to learn new techniques.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-analytical-chemistry-biochemistry-materials-science-nanofabrication-biomedical-science-r00004943-10046483?jobId=jobstreet-sg-job-10046483§ionRank=952&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Associate Data Scientist'}, {'company_name': 'ENSIGN INFOSECURITY (CYBERSECURITY) LITE ADS'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities:': 'Familiarize with Ensign’s business domain and objectives to implement cyber security analytics solutions that meet internal business requirements and the needs of industry partners and customers.Develop, evaluate, tune, deploy, maintain and document production-grade data analytics models that provide cyber security insights.Work on large volume of raw, structured and unstructured data from internet traffic, logs and other forms of data sources using Apache Spark, MPP DB, NoSQL, Hadoop, Scala, Python, R, Tableau etc on daily basis.Evaluate potential solutions relating to data analytics and make recommendations to solve business problems.Liaise and work with in-house developers, data engineers, big data architects, visualization engineers and project managers to better understand the requirements of developing, deploying and productizing models.Ensure the analytics models are running in optimal condition and perform trouble-shooting when the models are having issue.Advocate and ensure security best practices.', 'Requirements:': 'Degree in Statistics, Data Science, Mathematics, Computer Science, Engineering or any other related quantitative field.Experience working in a data science position, preferably in the cyber security industry and has worked with security logs/network data.Experience and expertise in probability and statistical modelling, inclusive of machine learning, experimental design, evaluation and optimization.Proficiency in Scala, Python, R, Java, Spark and SQL, among others.Ability to perform rapid prototyping and proof of concept using visualization and dashboarding tools such as Tableau.Experience with machine learning and deep learning frameworks and tools such as TensorFlow, Keras, Caffe, MxNet, Spark, Hadoop, R, pandas.Solid technical background with hands-on experience in conceptualizing, designing, implementing and deploying statistical or machine learning models in the big data environment (e.g. Hadoop).Excellent client-facing and internal communication skills.Solid organizational skills including attention to detail and multi-tasking.Team-player, result-oriented, proactive, self-driven, requiring minimal supervision.Creative problem-solving skills, highly organized, with ability to handle multiple simultaneous tasks, prioritize and meet tight deadlines.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200907753D', 'Company Size': '501 - 1000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays'}, {'Company Overview': '\n\tEnsign InfoSecurity is the largest pure-play cybersecurity service provider in Asia. The company is headquartered in Singapore. We specialise in the provision of these services; cybersecurity advisory and assurance, implementation and management of advanced cybersecurity controls, cybersecurity monitoring, threat hunting, and incident response. Underpinning these competencies is in-house research and development in cybersecurity.'}, {'url': 'http://www.jobstreet.com.sg/en/job/associate-data-scientist-10104874?jobId=jobstreet-sg-job-10104874§ionRank=953&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Fellow, Business and Industry Development, A*STAR ID Labs'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Job Description:': 'Conduct laboratory experiments in molecular biology and perform data analysis for industry collaboration projects.\xa0.Develop excellent understanding of all the platform technologies, underlying operations and applications.\xa0.Continually assess state-of-the-art technologies and developments in the field and keep the ID Labs platform technologies up-to-date and current.Engage external partners and institutions in service agreements and collaborations, develop work plans and work closely with the Business Development team to address industry???s needs..Prepare materials and conduct presentations to both internal and external parties..Perform meticulous recordkeeping and able to draft service reports.Provide day to day support to various laboratory team in-charges to ensure smooth running of the laboratory.Assists laboratory safety officer to maintain documents, records and updating the relevant regulatory policies. Provide support to safety officer to conduct inspections and audits\xa0.', 'Job Requirements:': 'PhD in Biomedical Sciences, Biochemistry, Life Sciences, Microbiology, Molecular Biology, Infectious Diseases, Immunology or related field as above.At least 5 years of working experience preferably in the medtech, healthcare, or biomedical industry.Experience with industry project management.Strong background in Microbiology, Molecular Biology, Biochemistry, Genetics and Genomics.Highly motivated and able to work independently.Strong analytical, technical and problem-solving skills.Team player with good interpersonal skills.Good spoken and written communication skills.Knowledge and competence in industry engagement and intellectual property would be advantageous\xa0.'}, {'Career Level': 'Senior Manager', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-business-and-industry-development-a*star-id-labs-10065969?jobId=jobstreet-sg-job-10065969§ionRank=955&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Machine Learning Engineer Senior Manager (22481444)#.'}, {'company_name': 'Citibank N.A.'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Responsibilities:': "Design, implement and take ownership for the AI technology roadmap for APAC - enabling the capabilities of innovative AI solutions..Hands on with data engineering and MLOps support for successful ML solution deployment..Design and develop ML products..Work with data scientists, ML engineers, business stakeholders and other technology teams to ensure that best practice MLOps is followed..Provide thought leadership by researching standard methodologies and collaborating with external partners..Contributes to data analytics standards around which others will operate..Applies in-depth understanding of how data analytics collectively integrate within the sub-function as well as coordinates and contributes to the objectives of the entire function..Employs developed communication and diplomacy skills to guide, influence and convince other colleagues in other areas and occasionally external entities..Resolves occasionally complex and highly variable issues..Produces detailed analysis of issues where the best course of action is not evident from the information available, but actions must be recommended/taken..Responsible for volume, quality, timeliness, and delivery of data science projects along with short-term planning resource planning..Oversees management of people, budget, and planning, to include duties such as performance evaluation, compensation, hiring, disciplinary action and terminations and may include budget approval..Appropriately assess risk when business decisions are made, demonstrating particular consideration for the firm's reputation and safeguarding Citigroup, its clients and assets, by driving compliance with applicable laws, rules and regulations, adhering to Policy, applying sound ethical judgment regarding personal behavior, conduct and business practices, and escalating, managing and reporting control issues with transparency, as well as effectively supervise the activity of others and create accountability with those who fail to maintain these standards..", 'Qualifications:': 'Advanced proficiency with Python, Java, and Spark..Extensive knowledge of ML frameworks, libraries, data structures, data modeling, and software architecture..Proven track record as a data engineer or Devops engineer - with specific focus on AI/ML solutions deployment to production..Hands on experience in development and designing of ML platforms and data pipelines..Must have experience with Kubernetes, CI/CD automation, Docker, and microservice architecture..Familiar with MLOps tools like MLflow or Kubeflow..Web application development experience with RESTful APIs..Nice to have cloud experience like Amazon SageMaker or Vertex AI..Familiar with deep learning frameworks like Tensorflow or Pytorch..', 'Education:': "Bachelor's degree in computer science, data science, mathematics, or a related field. Master’s degree is a plus.."}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200309485K', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\n\t\tCiti is more than a global financial services company. It’s an engine for progress. Join us, and you’ll have the chance to get involved in progress in all its shapes and forms, right across the world. From the micro to the macro, from Australia to Zambia, the work we do has real positive impact. Wherever you are and whatever you do, progress starts here.\n\n\nMission: Citi's mission is to serve as a trusted partner to our clients by responsibly providing financial services that enable growth and economic progress. Our core activities are safeguarding assets, lending money, making payments and accessing the capital markets on behalf of our clients. We are Citi, the global bank – an institution connecting millions of people across hundreds of countries and cities.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-senior-manager-22481444-.-10128413?jobId=jobstreet-sg-job-10128413§ionRank=956&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Scientist - Model Training - #JobsThatMatter*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Vision': '', 'Responsibilities': 'Work with other data scientists in the project team to design the data solution and model training plans.Carry out research, report writing and communication with key stakeholders of each project.Use model training platform to do model training/ iteration/ testing, keep automating the training process by raising suggestions and demands to the model training platform.', 'Qualifications': "Bachelor's degree in statistics, sociology, mathematics, or a related field.At least 2 years of experience in data applications or data analysis.Ability to understand the need of enterprise customers, content creators and users, and a desire to drive solutions to their problems.Outstanding skill of communication, collaboration, project management, excellent team player, strong sense of responsibility.Self-driven, passionate about impacting business with data.Advanced English skill."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-model-training-jobsthatmatter*-urgenthire-10108597?jobId=jobstreet-sg-job-10108597§ionRank=957&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Vision
[{'position': 'Cloud Engineer Full Stack'}, {'company_name': 'AiQ CORP LTD.'}, {'small_section': ['Singapore', 'SGD\xa07,000 - SGD\xa010,000', 'Posted on 26-Oct-22']}, {'Role Description': '', 'Data activities': 'automate collection of new data sources, and enable our Data Scientists and other Engineers to access the data.liaise with 3rd parties to consume their data feeds.convert Jupyter Notebooks into optimised Python batch jobs and Spark jobs.perform data analysis under the guidance of our Data Scientists.create libraries in python for our Staff and Clients to use.', 'Systems activities': 'AWS Cloud Infrastructure configuration (Servers, Networks, Dbs, etc.).Setup monitoring and provide operational support for production systems.DevOps – AWS & Ansible.Ubuntu Linux.Shell scripting – bash.Snowflake.Kubernetes.', 'Location': '', 'Skills & Experience': 'Cloud Infrastructure (AWS) configuration.DevOps.Code Development & Version Control in a Team.Python.Docker.Spark.Database schema design.Jupyter Notebooks.English Language (Japanese is not mandatory).', 'About aiQ': 'Population movement based on the geolocation of mobile devices.Consumer Panel (Customer Surveys) of retail consumption.Point Of Sales payments for retail purchases.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '-', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '4 days', 'Industry': 'Consulting (Business & Management)'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/cloud-engineer-full-stack-5139359/origin/my?jobId=jobstreet-my-job-5139359§ionRank=958&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Role Description
[{'position': 'Principal Research Scientist (Engineering) - (R00003838) - #Urgent #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Development of an IOT product line.Responsible for the offer plan and technical/economical decisions.D elivering new IOT solutions and communication architectures for energy utilities.', 'Job Requirements:': 'Master’s or PhD in engineering.Know-How on IoT applications for Energy Efficiency and Grid Applications.Project manment with PMP Certification.Knowledge in Artificial Intelligence applications, IOT platforms and communication.Experience in implementation of an open IoT platform.Cloud security experience.Proficient with SaaS, PaaS, and Openstack/Opensource technologies.Thought leader, and/or certicitation in modern IT/developer operations.Minimum 15 of experience.CWNA or relevant certification is advantous.'}, {'Career Level': 'Senior Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '15 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-research-scientist-engineering-r00003838-urgent-urgenthire-10142926?jobId=jobstreet-sg-job-10142926§ionRank=960&token=0~17fff5dc-2e64-474d-bbab-3a325f7972b0&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': '#CyberSecurity Data Scientist #Urgent'}, {'company_name': 'ENSIGN INFOSECURITY (CYBERSECURITY) LITE ADS'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Ensign is hiring !': '', 'Duties and Responsibilities': 'Familiarize with Ensign’s business domain and objectives to implement cyber security analytics solutions that meet internal business requirements and the needs of industry partners and customers.Develop, evaluate, tune, deploy, maintain and document production-grade data analytics models that provide cyber security insights..Work on large volume of raw, structured and unstructured data from internet traffic, logs and other forms of data sources using Apache Spark, MPP DB, NoSQL, Hadoop, Scala, Python, R, Tableau etc on daily basis..Evaluate potential solutions relating to data analytics and make recommendations to solve business problems.Liaise and work with in-house developers, data engineers, big data architects, visualization engineers and project managers to better understand the requirements of developing, deploying and productizing models.Ensure the analytics models are running in optimal condition and perform trouble-shooting when the models are having issue.Advocate and ensure security best practices.', 'Requirements': 'Degree in Statistics, Data Science, Mathematics, Computer Science, Engineering or any other related quantitative field.Minimum 3 years of experience working in a data science position, preferably in the cyber security industry and has worked with security logs/network data.Experience and expertise in probability and statistical modelling, inclusive of machine learning, experimental design, evaluation and optimization.Proficiency in Scala, Python, R, Java, Spark and SQL, among others.Ability to perform rapid prototyping and proof of concept using visualization and dashboarding tools such as Tableau.Experience with machine learning and deep learning frameworks and tools such as TensorFlow, Keras, Caffe, MxNet, Spark, Hadoop, R, pandas.Solid technical background with hands-on experience in conceptualizing, designing, implementing and deploying statistical or machine learning models in the big data environment (e.g. Hadoop).Excellent client-facing and internal communication skills.Solid organizational skills including attention to detail and multi-tasking.Team-player, result-oriented, proactive, self-driven, requiring minimal supervision.Creative problem-solving skills, highly organized, with ability to handle multiple simultaneous tasks, prioritize and meet tight deadlines.', 'Preferred Skills /Qualities': 'Experience in Cyber Security / Telco industry will be an advantage.Proven ability to handle multiple developmental projects concurrently.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200907753D', 'Company Size': '501 - 1000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Regular hours, Mondays - Fridays'}, {'Company Overview': '\n\tEnsign InfoSecurity is the largest pure-play cybersecurity service provider in Asia. The company is headquartered in Singapore. We specialise in the provision of these services; cybersecurity advisory and assurance, implementation and management of advanced cybersecurity controls, cybersecurity monitoring, threat hunting, and incident response. Underpinning these competencies is in-house research and development in cybersecurity.'}, {'url': 'http://www.jobstreet.com.sg/en/job/cybersecurity-data-scientist-urgent-10104925?jobId=jobstreet-sg-job-10104925§ionRank=962&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Ensign is hiring !
[{'position': 'Senior Research Engineer, - (Behavioral Analyst for Cybersecurity) - R00005986'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 3-Nov-22']}, {'Key Responsibilities:': '', 'Job Requirements:': 'PhD in Computer Science, Computer Engineering, Information or Communication Science/Engineering or any other relevant field.Applicants with Master of Science/Master in Engineering and a minimum of 6 years working experience in the domain of security and/or systems will be considered.Applicants with Bachelor’s degree in Computer Science /Computer Engineering /Information Or Communication Science/Engineering or any other relevant field and minimum 10 years of working experience in various software development projects and/or security/analytics related development projects in the industry. Less experience may also be considered if the applicant has research experience in the specific domain of IoT security.Proven research competence and publication record will be considered as an advantage.Familiarity with machine learning tools and techniques related to anomaly detection.Familiarity with identification of cybersecurity events, trends and patterns in IoT systems.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-engineer-behavioral-analyst-for-cybersecurity-r00005986-10128128?jobId=jobstreet-sg-job-10128128§ionRank=963&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'E-commerce Data Analyst'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': 'Overall responsible for data support of e-commerce overseas operation module;.Daily output and follow up the data output of the whole operation and each module;.Operation core index design, data dashboard design landing, core index data abnormal monitoring;.Data analysis and follow-up of operation activities in overseas countries;.In depth analysis of business, user, commodity and other data, and provide to the operation team to support the operation strategy;.Follow up the local operation work overseas, support the operation effect and give the follow-up optimization suggestions;.Cooperate with product / operation / R & D, promote the implementation of optimization scheme, and bring about the actual improvement and growth of business;.Responsible for all kinds of a / b experiment design and analysis;.Analysis of the overall overseas market and business operation of a certain country..', 'Qualifications': 'Bachelor degree or above, major in mathematics, statistics, computer is preferred; or major in science or engineering or engaged in data statistics, analysis, modeling related working areas after graduation;.Proficient in SQL, can use Python or R for data analysis;.At least 3 years of working Experience in e-commerce business and analysis is preferred;.Overseas business experience or analytical experience is preferred;.Able to write requirement documents in English and communicate with global staff;.Have a strong learning ability and curiosity;ability to pick up domain knowledge in new areas quickly; Can lead a small project team to support business;.Have a strong ability to work under pressure, have the courage to overcome difficulties and accept challenges..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sales/Marketing, E-commerce', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/e-commerce-data-analyst-10145337?jobId=jobstreet-sg-job-10145337§ionRank=964&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Digital Business Analyst, Data Engineering #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What you will be working on:': '', 'You will be involved in a range of tasks including the following:': "Work with fellow GovTechies and project teams to develop user stories, functional/technical specifications and acceptance criteria.Evaluate and recommend suitable technology while aligning with GovTech's technology directions (such as cloud-based, enterprise architecture and modernization of legacy systems, adoption of SG Tech Stack).Identify and adopt the appropriate development methodology (e.g. Agile or Waterfall) in an Outsourced, Co-Sourced or In-house development environment.Ensure system or product readiness for smooth deployment, adoption and operations.Analyse impact of requested changes and propose improvements to continuously address changing business needs, and work with support team to understand and address technical problems (Operations & Maintenance phase).Triage and prioritise needs, and prepare and present requirements with assessments to internal teams and key stakeholders to guide platform design and development.Create and maintain comprehensive project or product documentations.", 'What we are looking for:': 'Diploma/Degree in Computer Science, Infocomm Technology, Computer or Electronics Engineering or related subject area with minimum 3 years of relevant experience.Prior working experience in IT business analysis, application solutioning design and testing.Participated in at least one full software or product development cycle, preferably using Agile Methodology.Strong analytical, conceptualisation and problem-solving skills.Good communication skills with the ability to pitch ideas and influence.A driven and motivated personality with an inquisitive mind.Ability to learn and apply.', 'Preferred Skills:': 'Business Analysis certification, e.g. Certified Business Analysis Professional (CBAP).Past development or consulting experience.Knowledge or experience in implementing projects in at least one of the following areas (Data Analytics, Agile Methodologies, Cloud, Internet and Mobile Technologies, Customer Relationship Management, Knowledge Management and Service Design).'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/digital-business-analyst-data-engineering-jobsthatmatter-10052624?jobId=jobstreet-sg-job-10052624§ionRank=965&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
What you will be working on:
[{'position': 'NLP Engr. - AI Lab #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted 23 hours ago']}, {'Responsibilities': [], 'About The Team': 'Responsible for development of NLP technologies in our products.Participate in and support the incubation of new NLP technologies.Participate in research on NLP technologies.', 'Qualifications': "Bachelor's degree or above, majoring in Computer Science, or related fields.Rich experiences and strong skills in development of technologies in some of the following areas,.Natural language understanding.Natural language generation.Knowledge and reasoning.Recommendation and search.Reinforcement learning.Deep learning and representation learning.Machine Translation.Strong analytical and problem-solving skills..Strong computer science and coding skills (e.g. Python/Java/Go/C/C++);.Work and collaborate well with team members;.Senior candidates have the ability to organize and lead teams and projects.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-engr.-ai-lab-urgenthire-10145932?jobId=jobstreet-sg-job-10145932§ionRank=966&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Business Solutions Data Analyst'}, {'company_name': 'Kerry Consulting Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa09,000 - SGD\xa010,000', 'Posted on 20-Oct-22']}, {'Description': '', 'Responsibilities': '', 'Skills and experiences required': 'Min. Degree in Business/Finance or related disciplines.At least 3 years of relevant working experience in Securities, Pricing, Index, Portfolio and Fund Data Operations in Financial Institutions.Familiar with data management frameworks.Experience in Data Analysis and change management.Prior experience using Aladdin/ Fundipedia/ Goldensource is desirable.Good understanding of Front Office, Trade Lifecycle and Operations processes is a plus.Understanding of asset management enterprise data, its associated processes, systems, controls, and deliverables is an advantage.Knowledge of R & Python programming skills is a plus.', 'To Apply': '', '[email\xa0protected]': []}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200307397W', 'EA No.': '16S8060', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tHeadquartered in Singapore since 2003, Kerry Consulting is Singapore\'s leading Search & Selection firm. Our consulting team is the most experienced, and amongst the largest, in the ASEAN region.\n\n\t\tWe provide services to many of the world\'s leading companies and financial institutions. We are committed to creating positive long term outcomes for both our clients and our candidates. Our focus is on "Returning the Human to Resourcing".\n\n\n\tTo find out more, please visit our website at www.kerryconsulting.com\n\n\tLicence No: 16S8060\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/business-solutions-data-analyst-10084029?jobId=jobstreet-sg-job-10084029§ionRank=967&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'NLP Scientist, AI Lab'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': 'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..', 'Qualifications': "Bachelor's degree or above, majoring in Computer Science, or related fields.Rich research experience in but not limited to the following areas (as main authors of published papers at ACL, EMNLP, NIPS, ICML, etc.):.Syntactic analysis.Language generation.Knowledge and inference.Reinforcement learning.Deep learning and representation learning.Highly competent in algorithms and programming, prefer winners in ACMICPC, NOI/IOI and Kaggle;.Ability to work and collaborate well with team members;.Ability to work independently.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-scientist-ai-lab-10132631?jobId=jobstreet-sg-job-10132631§ionRank=968&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow - (Computer Science) - (R00005157) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 28-Oct-22']}, {'Key Responsibilities:': 'Preprocess real brain imaging data for further analytical tasks.Perform literature review and background study on graph analytics for brain network analysis.Design novel and effective Data Mining & Machine Learning techniques for brain network analysis.Develop/implement prototypes of the solutions, and validate their effectiveness empirically.Publish the research work in conferences and journals.', 'Job Requirements:': 'A PhD degree in Computer Science or a related discipline with a focus on Machine Learning, Data Mining or Statistics.Experience in designing and developing graph analytics and/or brain network analysis technologies.Good programming skills in e.g. Python, Matlab, C++, etc.Good interpersonal skills.Excellent teamwork awareness.Good communication and writing in English.Strong research experience will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-r00005157-urgent-10060793?jobId=jobstreet-sg-job-10060793§ionRank=969&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Head / Assistant Head (HR - Analytics), HR (3-year renewal contract)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'JOB REQUIREMENTS': 'Develop diagnostic toolkits (e.g. dashboards for businesses to understand the various HR processes and status), systems and programs to equip HR with the capabilities to diagnose and effect organizational changes, and promote the adoption of the products across HR and external stakeholders. You will also advise on applications of data analytics in the review of HR processes..Conduct business process review (BPR) to compress processes to be more efficient, effective, impactful and greater connectedness.Implement Robotic Process Automation and Systems Re-Designing to eliminate tedious tasks and improve accuracy.Drive the development of data science capabilities in HR, by advising and training the teams in the use of HR analytics to diagnose and address their workforce issues, and help build a community of practice in HR analytics, by educating and engaging key stakeholders on the use of developed analytical tools and techniques.\xa0.Education background in quantitative sciences with at least 4 years of relevant experience in handling analytical projects.Good interpersonal and communication skills.Good project management skills.', 'The above eligibility criteria are\xa0': '', 'not': '', '\xa0exhaustive. A*STAR may include additional selection criteria\xa0': '', 'based': '', '\xa0on its prevailing recruitment policies. These policies may be amended\xa0': '', 'from': '', '\xa0time to time without notice. We regret that only shortlisted\xa0': '', 'candidates': '', '\xa0will be notified.': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Contract', 'Job Specializations': 'Admin/Human Resources, Human Resources', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/head-assistant-head-hr-analytics-hr-3-year-renewal-contract-10124467?jobId=jobstreet-sg-job-10124467§ionRank=970&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
JOB REQUIREMENTS
[{'position': 'Private Banking IT – Data Scientist #182252 #Immediate'}, {'company_name': 'Credit Suisse (Singapore) Limited'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Your field of responsibility': '', 'As part of the role your responsibilities include:': 'Coordinate with Business Users, Product Owners, Business Engineers, and technology team to understand data analysis requirements. Lead Data Analysis and responsible for all Data related capabilities..Responsible to translate business requirements to AI/ ML based solution..Experience in building end to end model including with direct business impact data cleaning, data analytics, features engineering, model selection, ensemble methods, performance metrics, and visualization..Proven track record in designing, developing and deploying Machine Learning models that created business impact.Coordinating on projects requiring data integration and science skills, connecting bank-wide datasets.Working with teams from different business function and divisions to solve complex machine learning problem.Responsible to ensure that AI/ ML solutions meets bank-wide ML modelling guidelines and standards.', 'Your future colleagues': '', 'Your skills and experience': '', 'You are expected to possess the below:': 'Excellent academic background with advanced degree in Computer Science, Engineering, Mathematics, Statistics or related Field..Relevant experience in data, AI/ML modelling related capabilities..Solid programming skills in Python, R or Java with integrated data science, engineering and development background. Solid grasp and experience of working with SQL.Experience of working with ML frameworks like TensorFlow, Pytorch, Keras, ScikitLearn, XGBoost, SparkML or similar..Proficient in general NN models like SVM, random forest, decision tree, neural networks, GLM..Partner management experience is required to effectively gather the requirements and handle the delivery of data science outcomes.Proficient in investment banking domain, and financial services products/ customer data will be an advantage..Proficient in agile development practices.Understanding of parallel capabilities on the cloud (AWS, GCP, Azure) is highly desirable.', 'Your new employer': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197702363D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\tThe Credit Suisse Group purpose is at the core of everything we do. It underpins the value we create and has powered our progress for more than 160 years. It captures the essence of 'why' we exist as an organization. It motivates us when we come to work every day and serves as our North Star when we make decisions. Ultimately, it serves to define who we are and what we should be doing for our employees, clients and stakeholders.\n\tOur strategy builds on Credit Suisse's core strengths: our position as a leading wealth manager with strong global investment banking capabilities and our strong presence in our home market of Switzerland. We seek to follow a balanced approach to wealth management, aiming to capitalize on both the large pool of wealth within mature markets as well as the significant growth in wealth in Asia Pacific and other emerging markets.\n\tWe serve our clients through three regionally focused divisions: Swiss Universal Bank, International Wealth Management and Asia Pacific. These regional businesses are supported by an integrated global Investment Bank. Our Asset Management business is managed as a separate division, emphasizing the strategic importance of the asset management business for the bank and its clients.\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/private-banking-it-data-scientist-182252-immediate-10111442?jobId=jobstreet-sg-job-10111442§ionRank=971&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Your field of responsibility
[{'position': 'Data Scientist - TikTok Monetization Product, #WorkNow*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': '', 'Responsibilities:': 'Develop end to end analysis framework and distill replicable methodology to evaluate and improve Ads & E-Commerce ecosystem to ensure healthy as well as maximal monetization;.Liaise with multiple stakeholders across inter-functional teams to get buy-in and land above framework and co-create actionable, divisible improvement plans;.Build and maintain pipelines and visualization to monitor results of the improvement plans and identify exploitable opportunity areas;.Train machine learning models to classify, score and flag creatives or advertisers potentially detrimental to user experience and platform integrity;.Work closely with cross-functional partners (ad policy, product management, data analytics, operations, engineering) to identify, assess and propose solutions to escalations from users, advertisers, creators etc.;.', 'Qualifications': "Bachelor's degree or above with a background in computer science, data science, analytics, math or statistics; Master's degree in aforementioned fields is highly preferred but not required;.5+ years' experience in a cross-functional and inter-regional collaborative environment with at least 3 years assuming project leadership or technical program management (TPM) roles or equivalent;.Advanced SQL capability (CTE, window function etc.).Advanced statistics knowledge with at least 1 year hands-on experience (A/B sampling, ANOVA/MANOVA etc.).Proficiency with any scripting language, e.g. Python.Proficiency with machine learning packages such sklearn, pyspark etc. to construct end to end GLM models with hyperparameter tuning;.Proficiency in both English and Chinese is required to hold meetings/projects with cross-function team around different regions; any tertiary language knowledge is desirable but not required;."}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-tiktok-monetization-product-worknow*-urgenthire-10108768?jobId=jobstreet-sg-job-10108768§ionRank=972&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow (Anti-viral Therapeutics Lab), A*STAR ID Labs'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Description:': 'To implement existing computational tools, developed by our lab and collaborators, in our new lab and interface with wet bench biologists.To develop new tools to study virus population dynamics and an independent research program, using the wet bench.To use outputs of our basic research to generate innovative antiviral approaches that can foster new translational collaborations in clinical settings, in industry, in public health and surveillance or vector control..To help train graduate students in the lab.', 'Vignuzzi M': [], 'Vignuzzi': [], 'Vignuzzi M*': '', 'Job Requirements:': 'PhD in Applied Mathematics, Computational Biology or Bioinformatics.1 to 2 years of relevant experience.Analysing big data (OMICS) and knowledge of multi-dimensional scaling methods is particularly useful.Ambitious and independent.Team player and sociable person.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-anti-viral-therapeutics-lab-a*star-id-labs-10125891?jobId=jobstreet-sg-job-10125891§ionRank=973&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Machine Learning Engineer, TikTok Ads Vertical Solutions #UrgentHire #URGENT*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', "What You'll Do:": "Apply state-of-the-art machine learning techniques optimize advertisers' marketing strategies..Connect with businesses directly to understand and develop solutions for their Jobs-to-be-done..Collaborate with Product Managers, Designers, and other disciplines to explore the next generation of shopping experiences on TikTok..Capitalize on the organic shopping behaviours on TikTok today and facilitate retentive behaviours to provide more people value and business value..", 'Qualifications': '', 'Minimum Qualifications:': 'Solid programming skills, proficient in C/C++..Familiarity with at least one mainstream deep learning programming framework (TensorFlow/Caffe/MXNet) and its architecture and implementation mechanism..Familiarity with deep learning algorithms (CNN/RNN/LSTM, etc.)..Team-player with strong communication skills who can also work independently..', 'Preferred Qualifications:': 'Familiarity with main components for Ads systems, including bidding, ranking, and auction..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-tiktok-ads-vertical-solutions-urgenthire-urgent*-10143785?jobId=jobstreet-sg-job-10143785§ionRank=974&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow / (Chemical Synthesis of Inorganic Semiconductor) [R00009170]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'To do high throughput chemical synthesis and characterization of multi metal oxides/sulfides.To fabricate of proof of concept solar cell using the p-type TCO.To guide/supervise more junior research staffs and/or graduate/undergraduate students.To write and publish scientific papers and technology disclosure.', 'Job Requirements:': 'PhD in materials science/chemistry/physics or other Science and Engineering (or equivalent) from reputable institutes.Relevant experience and strong publication track record in inorganic chemistry, high throughput synthesis, characterizations and machine learning will be considered very favourably.Strong publication records in relevant areas will be considered favorably.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-chemical-synthesis-of-inorganic-semiconductor-%5Br00009170%5D-10072496?jobId=jobstreet-sg-job-10072496§ionRank=975&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Project Officer (Computer Science) #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:\xa0': "Conduct research for the project 'Towards Data-Driven Ability Gap Modelling'. The project aims to develop computational models for learning and predicting the physical abilities and competencies of individuals to perform previously unobserved tasks, via the use of deep learning methods in conjunction with 3D motion-captured datasets..Carry out extensive amounts of software coding on the latest research platforms..Build and showcase research demo systems..Conduct data collection and processing..Involved in writing research papers..", '\xa0': '', 'Job Requirements:\xa0': 'Bachelors degree in computer science or related discipline, with good honours classification or equivalent.Strong programming skills in C/C++ and Python.Previous experience in a related project, or experience with the latest deep learning platforms, is a bonus.Communicates well in English.Has high integrity, self-motivation, independence and proactiveness.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-computer-science-worknow-10072926?jobId=jobstreet-sg-job-10072926§ionRank=976&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Security Data Scientist - Creator Platform #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': '', 'Qualifications': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/security-data-scientist-creator-platform-urgenthire-10108784?jobId=jobstreet-sg-job-10108784§ionRank=977&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Associate/Full Prof. in Quantitative Marketing, R00009953'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'About the School:': 'As a premier business school in a leading technological university, Nanyang Business School (NBS) is the nexus of world-class innovation, research, and business education. Situated within NTU’s technology and innovation ecosystem, we are uniquely positioned to create and share knowledge on how cutting-edge technologies can be leveraged for enterprise transformation and a smart economy..Located in Singapore, the heart of East-West culture and business, NBS aims to develop leaders who are able to innovate for the future, lead and transform organizations with cultural dexterity, and build sustainable enterprises in Asia and globally..', 'About the Division:': "The Marketing Division of Nanyang Business School aims to excel as a thought-leader in the field, educate our students to be the next generation of business leaders and collaborate with industry partners to improve existing business practices..In line with our ambition to be a thought-leader in the field, our faculty members have published in many of the world's leading academic journals including the Journal of Marketing, Journal of Marketing Research, Marketing Science, Management Science, Journal of Consumer Research and Journal of Consumer Psychology..Our faculty also serve the academic community through editorships in prestigious academic journals and professional activities..As a testimony to the impact the division makes, our faculty members have won international awards for their research and contribution to knowledge creation..", 'Requirements:': 'A world-class researcher and scholar in the area of quantitative marketing\xa0 (e.g. machine learning, applied econometrics, Bayesian estimation, structural modeling).A committed business educator who is capable of mentoring junior faculty and supervising Ph.D. students..A collegial person who is able to work with colleagues in the Division.'}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/associate-full-prof.-in-quantitative-marketing-r00009953-10069825?jobId=jobstreet-sg-job-10069825§ionRank=978&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
About the School:
[{'position': 'Data Analytics Lead'}, {'company_name': 'Facebook'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Data Analytics Lead Responsibilities': "Leverage data\xa0and\xa0analytics\xa0to\xa0identify actionable insights, suggest recommendations through effective communication..Articulate\xa0the\xa0technology needs, requirements\xa0and\xa0goals\xa0of\xa0the\xa0team..Interface with investigators, analysts, leads\xa0and\xa0managers\xa0to\xa0understand their data needs..Interface with engineers/product managers\xa0to\xa0implement customers' needs..Manage codebase, pipelines, rule logic\xa0and\xa0underlying data table architectures that support\xa0the\xa0operational workflows\xa0and\xa0its various third-party integrations..Develop\xa0strong\xa0cross-functional partnerships across Facebook\xa0to\xa0drive LTS Data Analytics\xa0team's success..Lead a\xa0team\xa0of\xa0Data Analysts..", 'Minimum Qualifications': 'BA/BS\xa0in\xa0Math, Statistics, Economics, Computer Science, Physics,\xa0or\xa0other quantitative fields\xa0and\xa05+\xa0years\xa0of\xa0hands-on experience\xa0in\xa0a data focused discipline..Working\xa0knowledge\xa0of\xa0backend technologies (SQL, Hive/Presto/Spark, NoSQL)..Experience\xa0in\xa0a variety\xa0of\xa0data focused initiatives such as structuring assessments around data quality,\xa0and\xa0development\xa0of\xa0reporting aids for both internal\xa0and\xa0external audiences..Experience using statistical analysis tools (e. g., R, Python, SAS), data visualization tools (e. g., Tableau, Spotfire, QlikView, D3.js)..', 'Preferred Qualifications': 'Experience\xa0in\xa0leading a\xa0team\xa0of\xa0Data Analysts..Knowledge\xa0in\xa0scripting (e. g., JavaScript, PHP, XML, REST API)\xa0and\xa0databases (HDFS, RDBMS, Key-Value storage)..Masters\xa0in\xa0a quantitative discipline\xa0and\xa05+\xa0years\xa0of\xa0hands-on experience\xa0in\xa0a data focused discipline..Knowledge with analytics techniques such as machine learning, text mining, natural\xa0language\xa0processing, decision trees, etc..', 'About Meta': []}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201004959C', 'Company Size': '51 - 200 Employees', 'Industry': 'Entertainment / Media', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\nFacebook was built to help people connect and share, and over the last decade our tools have played a critical part in changing how people around the world communicate with one another.\n\n\tWith over a billion people using the service and more than fifty offices around the globe, a career at Facebook offers countless ways to make an impact in a fast growing organization.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-lead-10129849?jobId=jobstreet-sg-job-10129849§ionRank=979&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Data Analytics Lead Responsibilities
[{'position': 'Research Fellow, R00004730'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 1-Nov-22']}, {'Job Responsibilities': 'The successful applicant will be responsible for the development of spatial data mining algorithms, and building systems for managing spatial data streams. This includes:.Designing and developing scalable algorithms for processing text stream of large scale.Writing research papers of high quality based on research results.Building APIs (Application Programming Interfaces) and deployable systems based on the research results.', 'Job Requirements': 'PhD degree in Computer Science & Engineering.Strong interest and passion with doing research.Excellent background and research experience in data mining algorithms, data management, machine learning, and probabilistic models.Excellent publication records in data mining, data management, and machine learning.Excellent background in algorithms.Excellent background in software engineering with Advanced Programming Skills (C/C++, Java, Javascript).Good interpersonal skills, with the ability to work with people from varied backgrounds.At least 3 years working experience in doing research in the area of data mining and data management.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-r00004730-10072846?jobId=jobstreet-sg-job-10072846§ionRank=980&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Officer, Cell Line Development (BTI)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities:': 'Be responsible for execution of experiments; collection, analysis and reporting of data.Documentation of clear and accurate research data.Practice highest standards of research integrity and laboratory safety.Execute necessary duties for laboratory maintenance.', 'Job Requirements': 'Bachelor of Biological Sciences, molecular biology or related field.Experience with mammalian cell culture in suspension.Experience in protein production in mammalian cells.Experience with other techniques such as ELISA, molecular cloning, PCR, qPCR and Western blotting.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-officer-cell-line-development-bti-10125753?jobId=jobstreet-sg-job-10125753§ionRank=981&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Scientist (QTE/QMD), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Main Responsibilities': 'Design and fabrication of quantum devices..Contribute to device measurement protocol development..Provide technical documentation and manuscript writing..Contribute to or lead in grant writing depending on level of experience..', 'Job Requirements': 'PhD in physics, applied physics, materials science, electrical-electronics engineering, or related fields..Laboratory experience in device fabrication and cryogenic transport measurements..Experience in working with dilution refrigerators is an advant..Ability to work unsupervised and collaboratively with a team..Resourceful in problem solving and critical thinking..Meticulous and analytical in experimental work..Good presentation skills (written and verbal)..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-qte-qmd-imre-10127901?jobId=jobstreet-sg-job-10127901§ionRank=982&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Main Responsibilities
[{'position': 'Research Fellow (Machine Learning) (R00008200)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 29-Oct-22']}, {'Key Responsibilities:': 'Research on federated learning for industry 4.0.Implement deep learning algorithms.Lead a team of researchers for more efficient outcome delivery.Perform project-related works assigned by the PI.', 'Job Requirements:': 'PhD in computer science/engineering or electrical/electronic engineering..Good programming ability with python.Experience with deep learning algorithms and frameworks, like TensorFlow and Pytorch.Good leadership, responsibility and communication skills.The ability to read and write research papers and technical reports.Fluent in English (written and spoken).Interested applicants are invited to submit a cover letter and full CV in one document..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-r00008200-10053243?jobId=jobstreet-sg-job-10053243§ionRank=983&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Research Scientist, - (Materials Science/Engineering), - R00005698'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Job Responsibilities': 'Lead the R&D projects (especially III-V and III- Nitride related materials and its devices) with highly skilled researchers and engineers and providing mentorship, guidance and career development to members of the team.Plan research projects and resources to complete the projects running in Microsystems Technology Development Centre (MTDC).Drive technical development and project management of current products and next generation innovative products through research and development.Identify specific opportunities for communication products such as SSD.Build cross-functional relationships with Engineering, Product Planning to shape long-term product roadmap.Interact with partners and customers to define and refine product concepts.Hold your own in technical discussion, be a subject matter expert, and have strategic influence.Supervise the activities of Research Scientists / Research staffs / Research Students / Technical Specialists.Contribute to research reports for project deliverables, project proposal drafting and etc.Perform other duties as required or assigned by higher management.Process documentations with the standard of ISO 9001:2015 or ISO 9001:2018.', 'Job Requirements': 'PhD (minimum 4 years of experience) in a quantitative field such as Materials Science, Engineering and its equivalent.12+ years of product development experience (especially III-V and III-Nitride Materials and its Devices, HEMTs, LEDs, Lasers and etc…).5+ years of direct people management experience in leading and developing teams.Knowledge in Diamond related materials and its devices will be an added merit for this position.Proven track record of innovation in the field of semiconductor device Physics/Engineering, Design of novel device structures, wafer fabrication and its characterization.Resourceful Achiever: self-driven and proactive, apply logic and reason to effectively solve problems and manage risks.Avid Learner: Take on new challenges and seek out opportunities to grow and stretch.Passionate Owner: Be energized by his/her work, taking ownership and delivering results without ego.Committed Collaborator: with a positive attitude and commitment to get to the best result, welcoming ideas from others and drive processes forward in an inclusive manner.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-materials-science-engineering-r00005698-10054597?jobId=jobstreet-sg-job-10054597§ionRank=984&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Ads Data Scientist - #JobsThatMatter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': '', 'About the Role': '', 'What you will do': 'Lead in the ideation, creation, and prototyped deployment of sophisticated custom insights, ad effectiveness meta-analysis, or tooling for large-scale data environments for use by wider measurement teams.Contribute with global teams on data lake designs for regional best practices.Organize and build a data science culture across the organization designed to empower behavior change.', 'Qualifications': 'Proficiency in SQL, HIVE, R, and experience with large-scale data problems where machine learning or Artificial Intelligence methods have been leveraged.Experience with complex systems that require classification and automation.Experience with internet cookie and person-based data environments.Intellectual curiosity for advancements of cryptographic privacy-preserving methods.Excellent external communication and succinct writing skills are a must.Exceptional time and goal-oriented task management skills are a must.Interest in working in a fast-paced growth environment with global talent.Experience in peer training for organizational scale is a strong differentiator.Experience in prototyping work that leads to decision-making is a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/ads-data-scientist-jobsthatmatter-10106409?jobId=jobstreet-sg-job-10106409§ionRank=985&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow, (Computer Science) - [R00007173] #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Conduct research and development related to Machine Learning and Deep Learning and spatial-temporal data mining.', 'Job Requirements:': 'PhD in Computer Science or related disciplines.At least 2 years of experience in machine learning and spatial-temporal data mining and data management.Good knowledge of and machine learning applications.Excellent publication records.Good spoken and written English.Strong research ability.Strong leadership quality.Good interpersonal skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-%5Br00007173%5D-worknow-10055171?jobId=jobstreet-sg-job-10055171§ionRank=986&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Engineer, Growth'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'You will:': 'Build data pipelines to portray business status, based on a deep understanding of our fast changing business and data-driven approach;.Extract information and signals from a broad range of data and build hierarchies to accomplish analytical and mining goals for “Packaged Business Capability” such as user-growth, gaming and searching;.Keep improving the integrity of data pipelines to provide a comprehensive data service..', 'Qualifications': "Bachelor's degree in Computer Science, Statistic, Data Science or a related field;.Skilled in SQL and additional object-oriented programming language (e.g. Scala, Java, or Python);.Experience in issue tracking and problem solving on data pipelines;.Fast business understanding and collaborative in teamwork.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-growth-10144959?jobId=jobstreet-sg-job-10144959§ionRank=987&token=0~0bf9bdd6-5034-4808-9642-e6ca4a1d0f35&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Assistant, - [Information & Computer Science/Mathematics] - (R00005020)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'School of Computer Science and Engineering (SCSE) invites applications for the position of Research Assistant.': '', 'Key Responsibilities:': 'Conduct research on security analysis of smart contract and testing vulnerabilities in well-known open-source blockchain projects.Develop automatic vulnerability detection tools for blockchain.', 'Job Requirements:': 'Bachelor’s in Information Computer Science, Mathematics, Software Engineering or related discipline.Expertise in software engineering, software programming, computer security and testing.Research experience in software testing, software analysis and related areas.Excellent communication and writing skills.Able to conduct research and write reports/articles independently and within teams.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-%5Binformation-computer-science-mathematics%5D-r00005020-10076042?jobId=jobstreet-sg-job-10076042§ionRank=992&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
School of Computer Science and Engineering (SCSE) invites applications for the position of Research Assistant.
[{'position': 'Research Fellow (Data Analytics) - (R00005646) #WorkNow #JobsThatMatter -#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Conduct research on development of data analytic methodologies using techniques such as machine learning, deep learning, artificial neural networks, etc.Summarize and analyze the human factors data collected to date from human factors studies of ambient assisted living for aging population in Asia and finalize and conclude the project with a final report.Assist to supervise one PhD student and 2 FYP students in the Design & Human Factors Lab.Summarize research results for publishing in prestigious journals.Prepare technology disclosure materials for further filing of patents.', 'Job Requirements:': 'PhD in Mechanical, Civil, Electrical and Electronic Engineering or related field.Expertise in project management and constructing report.Knowledge in machine learning and data analytics.Publication track record is an advantage.Proficiency in basics of programming languages such as Matlab and R coding language.Proficiency in English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-analytics-r00005646-worknow-jobsthatmatter-urgenthire-10136112?jobId=jobstreet-sg-job-10136112§ionRank=993&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Assistant Professor in Economics & Data Science, - [R00006466]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Emoluments': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-professor-in-economics-data-science-%5Br00006466%5D-10135366?jobId=jobstreet-sg-job-10135366§ionRank=994&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Emoluments
[{'position': 'Data Engineer Intern, TikTok'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About TikTok': '', 'Team Introduction': '', 'Responsibilities': 'Responsible for providing end to end solutions to enable business;.Responsible for data warehouse modeling design & implementation;.Responsible for data pipeline & services development for data products;.Responsible for developing and optimizing ETL processes;.Responsible for enriching & optimizing technical documents;.', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree in Computer Science, related engineering discipline, or equivalent practical experience;.Proficiency in SQL with related project experience;.Software development experience in one or more general-purpose programming languages, such as Java/Go/C++/C#/Python;.Good understanding of the Hadoop ecosystem, open-source big data tech stacks like Hive, MapReduce, Spark, etc;.Familiar with large-scale data warehouse architecture design, data model design, and ETL;.Good understanding of streaming pipeline development, open-source OLAP engines, or Machine Learning/Data Mining is a plus;.Strong analytical thinking and exceptional attention to detail;.Working proficiency in verbal and written English;.Able to commit at least 3 days a week..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-intern-tiktok-10130279?jobId=jobstreet-sg-job-10130279§ionRank=995&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
About TikTok
[{'position': 'Research Fellow - (Computer Science & Engineering), - (R00008590)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Key Responsibilities:': 'Understand the research project and work context as a scientific research staff in the team.Apply scientific, technical and software engineering skills to conduct research.Develop prototypes to demonstrate successful application of the research.Facilitate technical development, testing and refinements of research project.Promote collaborative and translational research work.Documenting research plans and progress, and writing reports.', 'Job Requirements:': '\u200bPh.D. Degree in Computer Science and Engineering or related fields.Has demonstrable experience in topics at the intersection of machine learning, robust optimization, and data analytics.Programming fluency in Python, C/C++ or Java.Proficiency in developing and deploying algorithms to both academic and industrial environment.Prior background in computer vision or natural language processing is a plus.Highly motivated, independent and able to work as a team.Effective communication and report writing skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Singapore'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-engineering-r00008590-10075972?jobId=jobstreet-sg-job-10075972§ionRank=996&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'SAP Intern - AI Engineer'}, {'company_name': 'SAP Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'We help the world run better': '', 'About the role:': '', 'What you’ll do:': 'Location:\xa0Singapore.Expected\xa0start date\xa0and\xa0duration: December 2022\xa0or\xa0January 2023 start date for 5-6 months duration.Working\xa0Hours: strictly\xa0looking\xa0for\xa0students\xa0able to commit full time for the entirety of the internship duration ( 5 days/week).', 'In this role, you will:': 'Collaborate with other AI Scientists, Engineers,\xa0and\xa0Product Owners etc.Communicate with stakeholders to understand SAP business processes.Support the end-to-end MLOps lifecycle (Python, Jenkins, Docker, Kubernetes, KFServing, etc.).Apply\xa0existing SAP AI\xa0or\xa0open-sourced solutions to solve business problems.Learn the latest advancements in applied Natural\xa0Language\xa0Processing (NLP), Computer\xa0Vision\xa0(CV)\xa0and\xa0DevOps.', 'Who you are:\xa0': '', 'Education\xa0and\xa0Qualifications/ Skills\xa0and\xa0Competencies': '', 'Required skills': 'Proficiency in Python,\xa0and\xa0libraries such as Pandas, Scikit-Learn, etc.Understanding of basic Machine Learning, algorithms and data structures.Experience with development tools like VScode, Pycharm, Jupyter, Docker, Git, etc.Curiosity to learn about different AI applications.Able to take ownership of one’s\xa0work\xa0and\xa0collaborate with others.', 'Preferred skills': 'Driven individual (with an active Github/Gitlab project portfolio).Good\xa0communication skills with end-users\xa0and\xa0business stakeholders.Additional certificates\xa0and\xa0courses focusing on machine learning are a plus but\xa0not\xa0a must.', 'Work\xa0Experience:': 'Undergraduate\xa0or\xa0graduate\xa0students\xa0in STEM fields\xa0from\xa0any university.Students\xa0with non-technical majors\xa0and\xa0self-learned data science skills are welcome to\xa0apply.', 'We build breakthroughs together': '', 'We win with inclusion': '', 'EOE AA M/F/Vet/Disability:': []}, {'Career Level': 'Entry Level', 'Qualification': 'Diploma, Advanced/Higher/Graduate Diploma', 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198902722M', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tDo you demand the best from your professional career? Are you inspired by excellence? At SAP, you will have the power to make a real impact. As the global market leader for business software, SAP helps companies and organizations in more than 25 industries to run better.'}, {'url': 'http://www.jobstreet.com.sg/en/job/sap-intern-ai-engineer-10143666?jobId=jobstreet-sg-job-10143666§ionRank=997&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
We help the world run better
[{'position': 'Research Fellow - (Air Traffic Management/Machine Learning) (R00005121) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Undertake research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data mining, doing analytics, and building high quality strategic planning system for future for Air Traffic Management systems.Provide expertise on algorithmic concepts for the broader applied analytics of ATM and inspire the adoption of advanced analytics and data science across the entire breadth of ATM system..', 'Job Requirements:': 'PhD Degree in Computer Science/Aerospace Eng/Operation Research.Good programming skill (Python / MATLAB / C++).Good English writing and communication skills.Independent and team player.Good publication records.Demonstrated relevant experience in Artificial Intelligence / Machine Learning.Publication track record in peer-reviewed and reputed journals/conferences related to Artificial Intelligence / Machine Learning / AI&ML applied to ATM.Hands-on experience in using machine learning libraries such as Scikit-learn, etc..Hands-on experience in using deep learning library (either TensorFlow or PyTorch).', 'Experiences in at least two of the following areas is a strong plus:': 'Tempo-spatial data mining and analysis,.Time series analysis and prediction,.Generative models.Reinforcement Learning and/or Inverse Reinforcement Learning.Probabilistic Modeling / Bayesian Machine Learning.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-air-traffic-management-machine-learning-r00005121-seekbetter-10140360?jobId=jobstreet-sg-job-10140360§ionRank=998&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Assistant Professor in Economics and Data Science, - [R00006466] #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Emoluments': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-professor-in-economics-and-data-science-%5Br00006466%5D-seekbetter-10135589?jobId=jobstreet-sg-job-10135589§ionRank=1000&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Emoluments
[{'position': 'Assistant Professor in Economics & Data Science [R00006466] -#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 4-Nov-22']}, {'Emoluments': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-professor-in-economics-data-science-%5Br00006466%5D-urgenthire-10134414?jobId=jobstreet-sg-job-10134414§ionRank=1001&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Emoluments
[{'position': 'Data Science Advisor (MBA)'}, {'company_name': 'Dell Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 18-Oct-22']}, {'What\xa0': '', 'you': '', '’ll achieve': '', 'You': '', '\xa0will:': '', 'Essential Requirements': '', 'Desirable Requirements': '', 'Job\xa0ID:\xa0': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198905101W', 'Average Processing Time': '30 days', 'Industry': 'Electrical & Electronics'}, {'Company Overview': ''}, {'url': 'http://www.jobstreet.com.sg/en/job/data-science-advisor-mba-10077870?jobId=jobstreet-sg-job-10077870§ionRank=1002&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
What
[{'position': 'Data Scientist Intern, Growth #JobsThatMatter*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 25-Oct-22']}, {'Responsibilities': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with Data Engineers, Data Analysts, Product and other engineers to deliver features to drive the user growth of products..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;.Knowledge of statistical data analysis such as linear models, multivariate analysis, stochastic models, sampling methods..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth-jobsthatmatter*-urgenthire-10102622?jobId=jobstreet-sg-job-10102622§ionRank=1003&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist Intern, Growth - #JobsThatMatter*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 25-Oct-22']}, {'Responsibilities': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with Data Engineers, Data Analysts, Product and other engineers to deliver features to drive the user growth of products..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;.Knowledge of statistical data analysis such as linear models, multivariate analysis, stochastic models, sampling methods..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth-jobsthatmatter*-urgenthire-10102654?jobId=jobstreet-sg-job-10102654§ionRank=1004&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow, - (Computer Science), - [R00007173] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 28-Oct-22']}, {'Key Responsibilities:': 'Conduct research and development related to Machine Learning and Deep Learning and spatial-temporal data mining.', 'Job Requirements:': 'PhD in Computer Science or related disciplines.At least 2 of experience in machine learning and spatial-temporal data mining and data manment.Good knowledge of and machine learning applications.Excellent publication records.Good spoken and written English.Strong research ability.Strong leadership quality.Good interpersonal skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-%5Br00007173%5D-jobsthatmatter-10060611?jobId=jobstreet-sg-job-10060611§ionRank=1005&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist Intern, Growth #WorkNow*#Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 25-Oct-22']}, {'Responsibilities': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with Data Engineers, Data Analysts, Product and other engineers to deliver features to drive the user growth of products..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;.Knowledge of statistical data analysis such as linear models, multivariate analysis, stochastic models, sampling methods..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth-worknow*-immediate-10102419?jobId=jobstreet-sg-job-10102419§ionRank=1006&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow - (Computer Science & Engineering) - [R00008590] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities:\xa0': 'Understand the research project and work context as a scientific research staff in the team.Apply scientific, technical and software engineering skills to conduct research.Develop prototypes to demonstrate successful application of the research.Facilitate technical development, testing and refinements of research project.Promote collaborative and translational research work.Documenting research plans and progress, and writing reports.', 'Job Requirements:\xa0': '\u200bPh.D. Degree in Computer Science and Engineering or related fields.Has demonstrable experience in topics at the intersection of machine learning, robust optimization, and data analytics.Programming fluency in Python, C/C++ or Java.Proficiency in developing and deploying algorithms to both academic and industrial environment.Prior background in computer vision or natural language processing is a plus.Highly motivated, independent and able to work as a team.Effective communication and report writing skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Professional Certificate/NiTEC', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-engineering-%5Br00008590%5D-jobsthatmatter-10075955?jobId=jobstreet-sg-job-10075955§ionRank=1007&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Product Data Analyst, Data Analysis'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About Tiktok': '', 'About the Team': '', 'Responsibilities:': 'Perform analysis on product usage product performance data..Identify factors affecting product usage, performance and growth, derive meaningful insights to guide to better product and decision making for our business leaders..Work with cross functional partners (Product Managers/Operations/Engineering etc.) for product optimization and bring value to the business..Design A/B experiments to optimize and drive future product developments..Perform market activity analysis and any other analytics that would help guide product and business decision making..Construct specialized data models based on product needs and business requirements..', 'Qualifications:': '', 'Minimum Qualifications': "Bachelor's degree in Statistics, Mathematics or any other relevant fields..Past projects involving Analytics of any Internet or large scale B2C products..Excellent communication skills with ability to communicate conclusions effectively to both technical and non-technical audiences..Strong user affinity with solid understanding of product usage and performance..Available and able to participate in a 4 month structured overseas training program..", 'Preferred Qualifications': 'Proficiency in Tableau, or similar data visualization tools..Proficiency in SQL, Python..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/product-data-analyst-data-analysis-10130721?jobId=jobstreet-sg-job-10130721§ionRank=1008&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
About Tiktok
[{'position': 'Research Scientist (Catalysis and Reaction Engineering), [ISCE2]'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Description:': 'Electrocatalytic materials development with indepth characterization.Knowledge in electrocatalysis / heterogeneous catalysis by training.Capabilities on electroreactor design, products analysis & trouble shooting.Background on reaction engineering and mechanism / kinetic studies.Good record in publications.', 'Job Requirements:': 'Ph.D in Electrocatalysis,\xa0Chemical Engineering, Heterogeneous Catalysis, Material Science..1-5 years of research experience..Good communication skills (verbal and writing)..Work independently and lead part of the project..Good team player, accountable and reliable, can-do attitude and willing to learn.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Chemical Engineering', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-catalysis-and-reaction-engineering-%5Bisce2%5D-10127109?jobId=jobstreet-sg-job-10127109§ionRank=1009&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Scientist - (Microfabrication) R00007961'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Develop manufacturing processes for micro-/nano- fabrication of materials.Characterize the structure and properties of the materials.Develop Processing-Structure-Properties relationships.', 'Job Requirements': 'Ph.D. in Mechanical Engineering, Materials Science and Engineering, Electrical Engineering or related field.Knowledge in Micro-/ Nano- fabrication, especially non-traditional microelectronics processing techniques.Proficiency with optics, control systems and flexible materials are highly valued but not mandatory.Excellent written and verbal communication in the English language is expected.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-microfabrication-r00007961-10141629?jobId=jobstreet-sg-job-10141629§ionRank=1010&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow, (Artificial Intelligence) (R00008257)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Responsibilities:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Lead a team of junior researchers, e.g., PhD students and Research Assistant, to help with the vision and data analytics tasks.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly..Prepare and publish research papers on top-tier conferences and journals.Help prepare the proposal and progress report.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': '', 'Coding Skills:': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-r00008257-10076015?jobId=jobstreet-sg-job-10076015§ionRank=1011&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Project Officer, (Algorithms in Machine Learning/Finance) - #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Develop and implement machine learning/gradient descent type of Algorithms.Provide convergence analysis of these algorithms.Provide complexity analysis of these algorithms.Apply it to problems in finance, insurance, or optimal sampling in data science.', 'Job Requirements': 'Bachelor degree in mathematics, statistics, or related topics.Worked on a research project related to the development of a machine learning/gradient descent type of algorithms and their theoretical convergence analysis.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-algorithms-in-machine-learning-finance-urgenthire-10140865?jobId=jobstreet-sg-job-10140865§ionRank=1012&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Lead Solution Engineer - Tableau #Urgent'}, {'company_name': 'Salesforce.com'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Category': '', 'Sales': '', 'Job Details': '', "What you'll be doing…": '', "Some of the things you'll be doing include …": '', 'Who you are …': '', 'Accommodations': '', 'Posting Statement': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200410660N', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\t\tSalesforce.com is the enterprise cloud computing company. Our portfolio of Software-as-a-Service (SaaS) applications, including our award-winning customer relationship management (CRM), has revolutionized the ways that customers manage and share business information over the Internet. Salesforce.com has evolved from a startup founded by four people in a cramped San Francisco apartment ten years ago to a company described by Barron’s as "the fastest growing business software company in the world" and one of the top "100 Best Companies to Work For." According to Gartner, 25% of all software will be deployed via the cloud computing model by 2011. No matter how you slice it, the future of software is cloud computing. The company has completed another stellar quarter with record revenue of $394 Million, an Increase of 25% Year-Over-Year. Our total customers have grown to 82,400. As a result of this growth we are busy and are hiring aggressively in all areas of the business.\n\n\nHistory\n\n\n\t\tSalesforce.com and our global team of employees are transforming the way companies are run and careers are made. In just 10 years, salesforce.com has grown into a $1 billion business and captured more than half of the market for software-as-a-service CRM applications. All thanks to the hard work of 3,500+ employees at our San Francisco headquarters and throughout North America, Canada, Europe, Japan, and the larger Asia-Pacific region.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-solution-engineer-tableau-urgent-10122187?jobId=jobstreet-sg-job-10122187§ionRank=1013&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Job Category
[{'position': 'Research Engineer II, - (Big Data & IoT) [R00009221] #Urgent #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:\xa0': '', 'Job Requirements:\xa0': 'Masters from a reputed institute.Must have a minimum 4 years of hands-on experience in building the data pipeline using Python, Kafka & Spark.Must have solid concepts on IoT & Sensors.Must have experience in pulling data from Gateways / Edge Devices.Must have done minimum 2 end to end Big Data Pipeline implementations, either on cloud or on-premise.Experience in configuring or developing custom code components for data ingestion, data processing, and data provisioning, using Big data & distributed computing platforms such as Python Spark, and Cloud platforms such as AWS or Azure..Must have hands-on knowledge of Spark RDD, DataFrame, MLLib and Streaming API.Must have solid experience in advance python programming.Knowledge of Python ML will be an added advantage.Proficiency in data modelling, for both structured and unstructured data, for various layers of storage.Must have ability to collaborate closely with business analysts, architects, and client stakeholders to create technical specifications..Must have expertise in building the CI / CD Pipeline & Automatics deployment of jobs.', 'Skills and Proficiency': 'Solid Python Programming skills.Spark, Kafka, Spark RDD, Streaming API.Pandas, Numpy, MatplotLib, Scikit-learn.Git-lab, CI / CD Pipeline.Docker.Excellent Communication Skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-ii-big-data-iot-%5Br00009221%5D-urgent-urgenthire-10141996?jobId=jobstreet-sg-job-10141996§ionRank=1014&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Scientist - [Electrical and Electronic Engineering] - [R00002765]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Research Scientist (Electrical and Electronic Engineering/Computer Science)': 'Efficient software and hardware implementation, and benchmarking of post-quantum cryptographic primitives.Studying vulnerabilities and side-channel attacks for these designs.Preparing reports and scientific papers based on the findings.Possess PhD in the Electrical and Electronic Engineering/Computer Science.Experience in optimized software and hardware implementations with background in cryptography.Excellent teamwork and verbal, written communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-%5Belectrical-and-electronic-engineering%5D-%5Br00002765%5D-10055803?jobId=jobstreet-sg-job-10055803§ionRank=1015&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Research Scientist (Electrical and Electronic Engineering/Computer Science)
[{'position': 'Data Scientist Intern, Growth #WorkNow* #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 25-Oct-22']}, {'Responsibilities': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with Data Engineers, Data Analysts, Product and other engineers to deliver features to drive the user growth of products..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;.Knowledge of statistical data analysis such as linear models, multivariate analysis, stochastic models, sampling methods..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth-worknow*-urgenthire-10102511?jobId=jobstreet-sg-job-10102511§ionRank=1016&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Scientist (Additive Manufacturing Group), SIMTech'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Requirements:': 'Conducting extensive AM reviews on the state of the art and charting research directions..Developing BJP process (printing and sintering processes) for AM materials (metal and/or ceramics) and for complex geometries..Developing suitable binder systems..Establishing fundamental understanding/verification of mechanisms for the processing-structure-property relationship of materials by BJP technology..Conducting material testing, mechanical testing, and other necessary functional tests..Coordinating post-processing efforts to achieve end-to-end solutions for 3D printed components..Writing scientific articles and participating in industry engagement..Drafting and submitting proposals for competitive grant funding..PhD in Engineering (Mechanical/Material Science/Metallurgy) or equivalent..Demonstrated knowledge and hands-on experience in CAD based modelling, sinter-based binder jet printing or powder sintering & powder metallurgy will be an added advantage..With 2 years of experience in AM in the industry/academic field..Strong publication track record..Diligent and possess positive work attitude..Ability to work effectively and independently in a team..Good communication, writing and presentation skills..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Mechanical', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-additive-manufacturing-group-simtech-10123755?jobId=jobstreet-sg-job-10123755§ionRank=1017&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Job Requirements:
[{'position': 'Principal, Data Scientist #JobsThatMatter'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Principal, Data Scientist': '', 'Overview': '', 'Overview\xa0of\xa0the\xa0role\xa0:': '', 'Job\xa0Role:': "Provides technical\xa0and\xa0organizational leadership across\xa0multiple\xa0areas\xa0the\xa0organizational\xa0and\xa0functional effectiveness\xa0of\xa0data science products..Responsible for growing, promoting\xa0and\xa0deploying\xa0the\xa0effective utilization\xa0of\xa0data products\xa0in\xa0support\xa0of\xa0the\xa0strategic priorities..Develop organizational leadership\xa0in\xa0techniques\xa0and\xa0methods\xa0to\xa0support data decisioning..Develop\xa0and\xa0communicate insights leveraging\xa0the\xa0scientific method..Roles may specialize into 3 domain specialties: model science, feature science\xa0and\xa0Insight science capabilities..Accountable for developing\xa0and\xa0guiding more junior members\xa0and\xa0communicating findings, approaches\xa0and\xa0insights\xa0from\xa0data products..Responsible for guiding own\xa0work\xa0for deployment\xa0and\xa0support..Leads complex initiatives with direct strategic impact..Maintains\xa0and\xa0grows cross organizational relationships\xa0to\xa0further the development\xa0of\xa0data science across\xa0the\xa0enterprise..Establishes relationships\xa0to\xa0obtain data\xa0and\xa0subject knowledge needed\xa0to\xa0support advanced analytics..Conducts studies\xa0to\xa0provide additional facts needed\xa0to\xa0make informed decisions with regard\xa0to\xa0organizational\xa0and\xa0functional effectiveness with data decisioning..Develops consultative partnerships with internal teams\xa0to\xa0understand their strategic objectives, key performance indicators and reporting requirements..Extracts business insights to guide direction\xa0of\xa0learning activities\xa0and\xa0drive organizational efficiencies, effectiveness\xa0and\xa0outcomes..Maintains knowledge\xa0of\xa0company's total computing\xa0environment\xa0and\xa0planned changes\xa0in\xa0order\xa0to\xa0develop meaningful data science products..Collaborates with\xa0and\xa0supports leaders\xa0and\xa0their teams\xa0from\xa0multiple\xa0areas\xa0of\xa0expertise\xa0to\xa0ensure strategies\xa0and\xa0data science products\xa0are\xa0aligned\xa0and\xa0support business\xa0and\xa0operating results..Contributes\xa0to\xa0the\xa0achievement\xa0of\xa0area objectives.", 'Skills:': "Senior finance professional in quantitative discipline with expertise in machine-learning..Proven track record\xa0of\xa0applying machine-\xa0and\xa0deep-learning frameworks\xa0to\xa0practical business challenges in capital markets..Excellent knowledge\xa0of\xa0capital markets, products\xa0and\xa0concepts with a focus on fixed income products,\xa0money\xa0markets,\xa0and\xa0quantitative methods..Fluency\xa0in\xa0Python, SQL, Git. Proficiency\xa0in\xa0deep learning frameworks like tensorflow / keras..Familiarity with Google Cloud ecosystem, Bloomberg ecosystem, QuantLib\xa0are\xa0a plus..Team player, innovator, out\xa0of\xa0the\xa0box thinker..Master's\xa0degree\xa0or\xa0PhD (Computer Science, Math, Physics, Engineering).At\xa0least 5\xa0years\xa0of\xa0relevant\xa0work\xa0experience.Applied Machine Learning experience - modeling\xa0and\xa0implementation.Thorough understanding\xa0of\xa0various statistical\xa0and\xa0machine learning algorithms.Proficient\xa0in\xa0Python with open source libraries such as TensorFlow\xa0and\xa0data engineering pipelines such as Apache Spark.Excellent analytical\xa0and\xa0big-data skills.Academic/Research background, a plus.Previous experience\xa0at\xa0next-gen analytics\xa0or\xa0big-data fintech companies strongly preferred.", 'Qualifications:': "Bachelor's\xa0degree\xa0in\xa0a related discipline\xa0or\xa0equivalent\xa0work\xa0experience required;.Advanced\xa0degree\xa0is\xa0beneficial.10-12\xa0years\xa0of\xa0related experience required;.Experience\xa0in\xa0the\xa0securities\xa0or\xa0financial services industry\xa0is\xa0a plus..", 'Employer Description:': '', 'EEO Statement:': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-data-scientist-jobsthatmatter-10107793?jobId=jobstreet-sg-job-10107793§ionRank=1018&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
Principal, Data Scientist
[{'position': 'Technical Content Developer for AI Singapore'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/technical-content-developer-for-ai-singapore-10061459?jobId=jobstreet-sg-job-10061459§ionRank=1020&token=0~31f21445-a58b-4813-a35a-72ed9a34bed4&fr=SRP%20Job%20Listing'}]
[{'position': 'Data Scientist, Growth - #JobsThatMatter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities': '', 'You will:': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with product and DEs, DAs, and other engineers to deliver features to drive the user growth of products..", 'Qualifications': "Bachelor's degree in Computer Science or a related technical discipline;.Solid experience with data structures and algorithms;.Software development experience through hands on coding in a general purpose programming language;.Experience in one or more of the following areas: Machine Learning, Recommendation Systems, Data Mining or other related areas;.Fast business understanding and collaborative in teamwork.."}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-growth-jobsthatmatter-10103937?jobId=jobstreet-sg-job-10103937§ionRank=1022&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate, - [Computer Science/IT] - [R00007075]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 4-Nov-22']}, {'Job Responsibilities': 'Co-evaluate business needs and objectives.Identify opportunities for data acquisition.Build data systems and pipelines.Build algorithms and prototypes.Analyze and organize raw data.Interpret trends and patterns.Conduct data analysis, working independently or with data analysts, and report on results.Prepare data for prescriptive and predictive modeling.Combine raw information from different sources.Explore ways to enhance data quality and reliability.Develop analytical tools and programs.Collaborate with data scientists and architects.', 'Job Requirements': 'Master in Computer Science, IT, or similar field.Previous experience as a data engineer or in a similar role.Technical expertise with data models, data mining, and segmentation techniques.Knowledge of programming langus\xa0 (e.g. Java and Python).Hands-on experience with SQL database design.Great numerical and analytical skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-%5Bcomputer-science-it%5D-%5Br00007075%5D-10132064?jobId=jobstreet-sg-job-10132064§ionRank=1024&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Engineer/Fellow - (Robotics/AI/VR/AR) QCK1'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Development on 3D point-cloud reconstruction and object recognition..Development on motion tracking and robot motion planning..System integration and application development..Assisting in supervision of undergraduate students relating to the project..', 'Job Requirements': 'BEng, MSc or PhD in Electronics, Mechanical, Computer Engineering, or equivalent..Good knowledge in computer vision, graphics, and robotics..Familiar with software development in at least one of C/C++, Python, C#..Understanding and appreciation of 3D geometry and linear algebra..Appreciation and understanding subject-matter and application of robotics..Experience in machine learning would be an advantage..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-fellow-robotics-ai-vr-ar-qck1-10120950?jobId=jobstreet-sg-job-10120950§ionRank=1026&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Scientist - (Life Sciences / Cancer Biology) - (R00010642)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 4 hours ago']}, {'Job Description:': 'Design, implement and perform in vitro and in vivo animal experiments for cancer study [such as cell-line derived xenograft and syngeneic (allograft) mouse models].Collect and analyze experimental data.Report and grant writing.Supervise and train junior staff and students attached to the lab.', 'Job Requirements:': 'PhD in Biological Sciences or equivalent.The candidate should have skills in molecular and cell biology, biochemistry, and animal experiment such as such as cell-line derived xenograft and syngeneic (allograft) mouse model..Teamwork is expected. All lab personnel are required to perform lab maintenance and other duties to keep the lab functioning..Due to the nature of research and animal work, research personnel involved in this project might need to work over the weekends. Should there be a need to work over the weekend, day-off in lieu will apply..\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-life-sciences-cancer-biology-r00010642-10147473?jobId=jobstreet-sg-job-10147473§ionRank=1027&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'SciComm Specialist / 1 Year (Contract) / Convertible / Global MNC / West'}, {'company_name': 'RecruitPedia Pte Ltd'}, {'small_section': ['West', 'SGD\xa03,000 - SGD\xa03,500', 'Posted on 29-Oct-22']}, {'Our client is an US MNC, one of the largest players in the life-science sector. Due to business needs, they are now recruiting for a SciComm Specialist to be part of their team for ongoing transformation projects.': '', 'This is a 1 Year contract (Convertible) role. They are located at Buona Vista – Walking distance from the MRT station.': '', '5 days work week - Monday to Friday (8.30 am to 5.30pm)': 'Writing engaging science stories.Curating engaging science assets.Experimenting with the products to showcase how it works.Presenting the science stories to our customers to get feedbacks.Any other duties as assigned by supervisor..Possess minimally a Diploma/Degree in Chemistry / Lifescience / Biotech / Pharmacy / Food Tech related fields.Has 1-2 years of working experience in teaching or setting up Science Experiments in educational laboratory environment.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '201907733D', 'EA No.': '19C9682', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\nRecruitPedia is an innovative, efficacious recruitment solution provider headquartered in Singapore.\n\t\n\t\n\t\tWe use advanced methods for our consulting services, by offering a complete one-stop solution using the latest technological platforms.\n\n\t\tWe are constantly expanding and our trained headhunting consultants are distinguished by their extensive international industry knowledge and experience. It will be our greatest honour to be able to guide you along the ever-changing job market and assist you step-by-step with any challenges you face along the way.\n\n\t\tOur goal is to revolutionize the recruitment process so as to provide the most efficient and fast-paced recruiting systems for our esteemed clients and jobseekers.\xa0\n\n\t\tWe strive to surpass your expectations with our outstanding customer service and establish long-lasting partnerships with you!\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/scicomm-specialist-1-year-contract-convertible-global-mnc-west-10115236?jobId=jobstreet-sg-job-10115236§ionRank=1029&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Our client is an US MNC, one of the largest players in the life-science sector. Due to business needs, they are now recruiting for a SciComm Specialist to be part of their team for ongoing transformation projects.
[{'position': 'Manager (Data Scientist), AIO Biomedical Informatics Office (1 year contract)'}, {'company_name': 'National University Health System'}, {'small_section': ['Singapore', 'Posted on 12-Oct-22']}, {':': 'Research and development of machine learning models in various clinical areas such as clinical notes, medical images, and patients’ data.Research and development of neural network models to analyze free text and identifying, categorizing opinions expressed in a piece of text.Work with the team to design and architect the workflow of the data and algorithms including data input, output and storage between various health IT systems.Work with the team to develop and deploy necessary AI models for NUHS in-house chatbot framework in hybrid cloud environment.Optimize data analysis processes and systems for better efficiency and maintenance.Document clearly explaining how algorithms have been implemented, verified and validated.Lead project team to deliver AI related research and development requirement to meet the business need.Minimum Bachelor’s degree in computer science or related fields with strong statistical modelling and machine learning skills. Graduate degree in related fields is preferred.4 years of hands-on experience in the development of end-to-end data analytics solutions and machine learning pipeline including data exploration/extraction/crawling, data processing, and model building.Hands-on experience on development of AI models in NLP.Proficient with programming in Python and AI related frameworks such as Scikit-Learn, TensorFlow, and PyTorch.Knowledge and experience in machine learning platform and services from cloud providers such as AWS, GCP, Azure.Familiarity with healthcare data, medical image is a plus.Experience in leading AI projects and virtual team.Strong problem-solving skills with the ability to work independently and in a team.Excellent written and verbal communication skills, including the ability to communicate technically and non-technically with ability to translate between the two.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200801778C', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\t\tAbout the National University Health System (NUHS)\n\n\n\tSpanning three acute hospitals, two community hospitals, three national centres, six polyclinics, three family medicine clinics, and three health science institutions, our unique and comprehensive ecosystem anchors NUHS as a leading academic health system in Singapore – driven by research and education.\n\t\n\t\tInspired by our patients and the population that we serve, our strong network of talents and resources across our institutions provide patient-centred care across the whole continuum - improving health and driving transformation from primary, tertiary to complex care. In close collaboration with our community partners, we aim to deliver “Incredible Care and Health, Together”!\n\t\n\tMembers of the NUHS:\n\t• National University Hospital\n\t• Ng Teng Fong General Hospital\n\t• Alexandra Hospital\n\t• Jurong Community Hospital\n\t• National University Polyclinics\n\t• National University Cancer Centre, Singapore\n\t• National University Heart Centre, Singapore\n\t• National University Centre for Oral Health, Singapore\n\t• NUS Yong Loo Lin School of Medicine\n\t• NUS Faculty of Dentistry\n\t• NUS Saw Swee Hock School of Public Health'}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-data-scientist-aio-biomedical-informatics-office-1-year-contract-10058733?jobId=jobstreet-sg-job-10058733§ionRank=1030&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
:
[{'position': 'Research Fellow / (Molecular Analytics) (R00009189 #LetsGetToWork'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Developing highly sensitive optical platforms for molecular detection.Nanomaterial synthesis and surface modification.Publish high quality papers.', 'Job Requirements:': 'Candidate should have a PhD degree from a reputable university..Good research experience and experimental skills in optical imaging..Proven research ability in high quality publications..Highly motivated and hardworking individual.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-molecular-analytics-r00009189-letsgettowork-10072499?jobId=jobstreet-sg-job-10072499§ionRank=1031&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Project Officer, (Genetics and Chemistry) - [R00009460]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Procurement and maintenance of lab inventory.Perform of bacterial genetic experiments to make genetic deletion and overexpression strains.Perform cloning, protein purification and analysis of enzymatic functions.', 'Job Requirements': 'Bachelor Degree in Chemistry and Biochemistry, must have at least one year of relevant research experience. Candidates with Master Degree in relevant field will be considered first.Has strong grasp of knowledge in organic chemistry, biochemistry and genetics.Able to perform molecular biology and genetic experiments independently, such as making gene knockout, overexpression etc.Able to perform protein biochemistry experiments including cloning, protein overexpression, and purification.Able to independently perform in vitro enzymatic kinetic measurement, including developing liquid-chromatography mass spectrometry-based assays.Demonstrate strong passion, self-motivation, and a hardworking attitude for basic research.A self-starter and in learning new skills and techniques.Strong communication, organizational and interpersonal skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-genetics-and-chemistry-%5Br00009460%5D-10046565?jobId=jobstreet-sg-job-10046565§ionRank=1032&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Assistant (Data Science/Machine Learning) - (R00007081) #Urgent-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Research Assistant (Data Science/Machine Learning/Computational Fluid Dynamics) (R00007081)': '', 'Job Responsibilities': 'Participate in programming and soft development related works on energy systems design, modeling, and optimization using algorithms and artificial intelligence (AI) techniques.Assist in applying data science and machine learning techniques for energy stor material selection and formulation.Conduct data collection, data analysis, and database maintenance.Support in Computational Fluid Dynamics (CFD) studies and other related topics.', 'Job Requirements': 'Bachelor’s in Computer Science, Electrical Electronic Engineering, Mechanical Engineering, Mathematics, or Physics.Experience with machine learning, data analytics, and software development.Familiar with python or C++ development, experience with MySQL is a plus.Experience or knowledge in CFD, chemistry, or energy system modeling is preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-data-science-machine-learning-r00007081-urgent-jobsthatmatter-10136718?jobId=jobstreet-sg-job-10136718§ionRank=1033&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Research Assistant (Data Science/Machine Learning/Computational Fluid Dynamics) (R00007081)
[{'position': 'Research Engineer/Fellow, - (Development of Artificial Intelligence algorithm for air condition #Immediatening) AM'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Participate in and manage the research project with Principal Investigator (PI), Co-PI and the research team members to ensure all project deliverables are met..Undertake these responsibilities in the project:.Assists in co-supervision of final year projects (FYP) or capstone projects for students under the Project PI..Meet the deliverables by carrying out the algorithm development, simulations and experimental studies planned for under the scope of work of the projects within the timeframe to meet the deliverables..Assists the PI in drafting reports, conference proceedings, and journal articles based on the outcome of the projects..Prepares and shares fortnightly reports of results from the computations with the program director and PI..Carry out Risk Assessment, and ensure compliance with Work, Safety and Health Regulations..Coordinate procurement and liaison with vendors/suppliers..Work independently, as well as within a team, to ensure proper operation and maintenance of equipment..', 'Job Requirements:': 'Master or PhD (preferred) in Mechanical Engineering, Building Science, Data Science or related disciplines..Strong knowledge and experience in air conditioning systems and chiller plants are highly advantageous..Hands-on experience in experimental studies.Familiarity with AI applications on industrial related projects using high-performance computing clusters would also be advantageous.Strong foundation in thermal systems.Strong prior experience in AI – particularly in algorithms related to energy savings application of the built environments.Strong skills in building energy modelling using Equest and Python..Proficient in handling large data sets and the ability to analyze and interpret results using Tableau and Python.Able to work independently with strong data analytical skills, communication and interpersonal skills..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-fellow-development-of-artificial-intelligence-algorithm-for-air-condition-immediatening-am-10120961?jobId=jobstreet-sg-job-10120961§ionRank=1034&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Machine Learning Engineer Senior Manager (22481444)'}, {'company_name': 'Citibank N.A.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities:': "Design, implement and take ownership for the AI technology roadmap for APAC - enabling the capabilities of innovative AI solutions..Hands on with data engineering and MLOps support for successful ML solution deployment..Design and develop ML products..Work with data scientists, ML engineers, business stakeholders and other technology teams to ensure that best practice MLOps is followed..Provide thought leadership by researching standard methodologies and collaborating with external partners..Contributes to data analytics standards around which others will operate..Applies in-depth understanding of how data analytics collectively integrate within the sub-function as well as coordinates and contributes to the objectives of the entire function..Employs developed communication and diplomacy skills to guide, influence and convince other colleagues in other areas and occasionally external entities..Resolves occasionally complex and highly variable issues..Produces detailed analysis of issues where the best course of action is not evident from the information available, but actions must be recommended/taken..Responsible for volume, quality, timeliness, and delivery of data science projects along with short-term planning resource planning..Oversees management of people, budget, and planning, to include duties such as performance evaluation, compensation, hiring, disciplinary action and terminations and may include budget approval..Appropriately assess risk when business decisions are made, demonstrating particular consideration for the firm's reputation and safeguarding Citigroup, its clients and assets, by driving compliance with applicable laws, rules and regulations, adhering to Policy, applying sound ethical judgment regarding personal behavior, conduct and business practices, and escalating, managing and reporting control issues with transparency, as well as effectively supervise the activity of others and create accountability with those who fail to maintain these standards..", 'Qualifications:': 'Advanced proficiency with Python, Java, and Spark..Extensive knowledge of ML frameworks, libraries, data structures, data modeling, and software architecture..Proven track record as a data engineer or Devops engineer - with specific focus on AI/ML solutions deployment to production..Hands on experience in development and designing of ML platforms and data pipelines..Must have experience with Kubernetes, CI/CD automation, Docker, and microservice architecture..Familiar with MLOps tools like MLflow or Kubeflow..Web application development experience with RESTful APIs..Nice to have cloud experience like Amazon SageMaker or Vertex AI..Familiar with deep learning frameworks like Tensorflow or Pytorch..', 'Education:': "Bachelor's degree in computer science, data science, mathematics, or a related field. Master’s degree is a plus.."}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200309485K', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\n\t\tCiti is more than a global financial services company. It’s an engine for progress. Join us, and you’ll have the chance to get involved in progress in all its shapes and forms, right across the world. From the micro to the macro, from Australia to Zambia, the work we do has real positive impact. Wherever you are and whatever you do, progress starts here.\n\n\nMission: Citi's mission is to serve as a trusted partner to our clients by responsibly providing financial services that enable growth and economic progress. Our core activities are safeguarding assets, lending money, making payments and accessing the capital markets on behalf of our clients. We are Citi, the global bank – an institution connecting millions of people across hundreds of countries and cities.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-senior-manager-22481444-10124569?jobId=jobstreet-sg-job-10124569§ionRank=1035&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Scientist, E-Commerce Risk Control*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..Solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-e-commerce-risk-control*-10102927?jobId=jobstreet-sg-job-10102927§ionRank=1036&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Scientist (AI), Computing & Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Description': 'You will\xa0work\xa0in a highly passionate team on project under A*Star thematic programme..This project is investigating cutting-edge trusted computing technologies such as Federated Machine Learning, Secure Multi-party Computation\xa0and\xa0Blockchain to enable collaboration among different parties without compromising privacy.\xa0.The team conducts research\xa0and\xa0development on trusted computing,\xa0and\xa0is actively collaborating with industry partners for use-case development..We are\xa0looking\xa0for talents to conduct deep research on Federated machine learning, Multi-party computation\xa0and\xa0Blockchain, to realise trusted computing solutions through integrating, improving these cutting-edge technologies, as well as promoting trusted computing technologies through use-case development\xa0and\xa0deployment..As a senior member of the team, you will co-lead a team of scientists\xa0and\xa0engineers,\xa0and\xa0mentor\xa0students\xa0to design, develop, deploy\xa0and\xa0evaluate trusted computing technologies in various application scenarios.\xa0.', 'Job Requirements': 'Qualification & Field of Study: PhD in Computer Science/Engineering\xa0or\xa0equivalent with proven research expertise.Min.\xa0.Years\xa0of Experience: PhD\xa0graduate\xa0with exceptional skill set\xa0and\xa0project experience may be considered.Other Requirements (e.g. Skills, Competencies):.Have conducted impactful research in one\xa0or\xa0more of the following areas:\xa0.Federated Machine Learning, Secure Multi-party Computation, Blockchain,\xa0machine learning, parallel\xa0and\xa0distributed computing, etc..Good\xa0programming skills: multi-language\xa0(C++, C#, Java, Python, CUDA programming); network programming (TCP/IP Socket)..Knowledge background\xa0and\xa0project experience on\xa0Federated Machine Learning, Secure Multi-party Computation, Blockchain\xa0platforms..Candidates\xa0with hands-on experiences in computer system and network, Linux OS, virtualization platforms (e.g., Xen, KVM and Docker), cloud computing, distributed system are\xa0preferable..Understanding of trusted computing applications and industry experience are\xa0preferable..', 'The above eligibility criteria are\xa0not\xa0exhaustive. A*STAR may include additional selection criteria\xa0based\xa0on its prevailing recruitment policies. These policies may be amended\xa0from\xa0time to time without notice. We regret that only shortlisted\xa0candidates\xa0will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-scientist-ai-computing-intelligence-ihpc-10124208?jobId=jobstreet-sg-job-10124208§ionRank=1037&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Data Scientist - Growth#JobsThatMatter #URGENT*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities': '', 'You will:': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with product and DEs, DAs, and other engineers to deliver features to drive the user growth of products..", 'Qualifications': "Bachelor's degree in Computer Science or a related technical discipline;.Solid experience with data structures and algorithms;.Software development experience through hands on coding in a general purpose programming language;.Experience in one or more of the following areas: Machine Learning, Recommendation Systems, Data Mining or other related areas;.Fast business understanding and collaborative in teamwork;.", 'Preferred Qualifications:': 'Industry experience working with user growth..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-growth-jobsthatmatter-urgent*-10102819?jobId=jobstreet-sg-job-10102819§ionRank=1038&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist'}, {'company_name': 'Ascentis Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 25-Oct-22']}, {'Full Job Description': '', 'COMPANY DESCRIPTION': '', 'DESIGNATION : ': '', 'RESPONSIBILITIES': 'Build Machine Learning (ML) pipelines and data platform to allow Ascentis and its clients to make better decisions around CRM and Loyalty programs..Design and develop data models and algorithms to provide predictive capabilities to Ascentis products and services..Define and align business use cases and key metrics of the ML systems, with stakeholders..Identify hypotheses, devise and run A/B tests, experiment with the results and recommend ML models..Work with Data Engineering and IT Ops team to build the backend infrastructure to run and scale the ML platform..Collaborate with Engineering and Product teams for integrated solutions with data platform..Able to communicate complex processes and data models, as well as articulating the benefits of certain design, to different target audiences (especially business users)..May be required to work with external partners or clients in building the data platform..', 'QUALIFICATIONS': 'Master or PhD in Data Science related courses or equivalent practical experiences..Successfully built and delivered large-scale data science/machine learning platform..Familiar and hands on experience with Machine Learning concepts and algorithms..Experience with at least one of the modern distributed Machine Learning or Deep Learning frameworks..Familiarity with AWS Analytics platform in general, such as the S3, Glue, Athena, Lambda, Macie, SageMaker or QuickSight..Familiarity with Data Lake and Data Warehouse design..Practical working experience using Python..Good problem-solver with analytical mindset.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200305976R', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\nAscentis as a Singapore based company has built a solid reputation as a solution provider for CRM and Business Intelligence of successful projects for major corporations in various industries internationally for over 10 years. We serve our customers in Asia Pacific through our local team and international business partners.\nAscentis has several locations throughout the region such as Singapore, Kuala Lumpur, Johor Bahru and Shenzhen. We offer: Comprehensive IT Solutions and Business Consulting for industries like Retail, Malls and Property, Hospitality, Distribution and Services, F&B and Entertainment.\nExpertise in various solutions such as end to end Loyalty Program Management, Retail eCommerce, Content Management System, Mobile Apps, Business Analytics and IT Application Development.\nKnow-how in many robust technologies, including Microsoft Technology Platforms and Data Analytics Technologies.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-10100147?jobId=jobstreet-sg-job-10100147§ionRank=1039&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Full Job Description
[{'position': 'Research Fellow, - (Molecular Biology and Biomolecular Interactions) (R00010518)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Job Description:': 'Hands-on data collection for users in Biacore T200 instrument in BMI facility.Providing training and advice for users in other biophysical equipment in the BMI (protein-protein and protein-drug interactions).For the PPP, handling and conceptualizing some complex protein production projects for diverse customers. Hands-on operations of the PPP are currently handled by three staff.Liaise with users (internal and external) and contact vendors for repairs and other equipment-related issues.Attending to safety issues of individual laboratories.Provide a yearly budget for Core, BMI and PPP facilities.', 'Job Requirements:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-molecular-biology-and-biomolecular-interactions-r00010518-10070213?jobId=jobstreet-sg-job-10070213§ionRank=1040&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Senior Research Scientist (Computer/Electrical/Mechatronics Science/Statistics) (R00005119)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key Responsibilities:': 'Play a leading role in both research and development of novel and/or enhanced assistive technologies to improve the safety of fleet drivers by (i) categorizing their driving behaviors through profiling; (ii) monitoring their well-being; and (iii) assessing driving risks and reporting to fleet manager/operator and/or drivers.', 'Job Requirements:': 'PhD degree in Computer/Electrical/Mechatronics Science or Statistics.Minimum 6 years of experience in software or hardware development, integration and refinement.Solid application background in AI for computer vision and/or data analytics.Strong project management skills.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-computer-electrical-mechatronics-science-statistics-r00005119-10046491?jobId=jobstreet-sg-job-10046491§ionRank=1041&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Assistant Technical Director, NSCC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'JOB DESCRIPTION': "Assist the technical director in the following areas:.Manage, oversee and coordinate the different technical functional roles in NSCC to ensure that:.routine operations run smoothly.services rendered are timely and in line with NSCC's objectives.Resources are used optimally.procedural and governance guidelines/requirements are adhered to.Work with the Business Development team to ensure that NSCC is able to fulfil users' requirements..Plan for and implement enhancements to NSCC's offerings and operations, including system upgrades and expansion of service offerings.Long term strategic planning for major upgrades or enhancements.Advice NSCC CE on technical matters related to supercomputing or peripheral issues.", 'REQUIREMENTS': 'Degree in computer science or a relevant scientific discipline. A post-graduate degree in computer science or a relevant scientific discipline is highly desirable..A minimum of 5 years of relevant experience in a similar environment if the applicant has a relevant post-graduate qualification or a minimum of 10 years of relevant experience in a similar environment..Sound working knowledge of supercomputer operations and paradigms which may include, but are not limited to:.Parallel programming (MPI, OpenMP, etc.).Job scheduling.Systems/storage architecture.GPU for HPC/ML.Containers.Machine learning frameworks.HPC software build tools including compilers, mathematical libraries, etc..Competent in or familiar with periphery IT issues which may include, but are not limited to:.Cloud computing and other web technologies.Networking.Cyber-security.'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-technical-director-nscc-10127871?jobId=jobstreet-sg-job-10127871§ionRank=1042&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
JOB DESCRIPTION
[{'position': 'Data Scientist - E-Commerce Risk Control #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 25-Oct-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': '- Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..At least 3 years with solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-e-commerce-risk-control-urgenthire-10102538?jobId=jobstreet-sg-job-10102538§ionRank=1044&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Machine Learning Engineer'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities': 'Build industry leading recommendation system, develop highly scalable classifiers and tools leveraging machine learning.Understand product objectives and machine learning techniques, improve model and recommendation strategy.Understand user behavior and apply Machine Learning algorithms to optimize push notification and production experience.Work with TikTok cross functional teams to grow TikTok in important regional markets.', 'Qualifications': "Bachelor's degree (or more) in computer science or a related technical discipline.Solid experience with data structures or algorithms.Software development experience through hands on coding in a general purpose programming language.Experience in one or more of the following areas: machine learning, recommendation systems, data mining or other related areas.Strong communication and teamwork skills.Passion about technologies and solving challenging problems."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-10121031?jobId=jobstreet-sg-job-10121031§ionRank=1045&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist - TikTok Monetization Product - #WorkNow*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities': '', 'Responsibilities:': '', 'Qualifications': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-tiktok-monetization-product-worknow*-urgenthire-10105735?jobId=jobstreet-sg-job-10105735§ionRank=1046&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Principal Research Scientist (Communications & Networks), I2R'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'his/her responsibilities:': '', 'Play a leadership role in the 6G research;': 'Drive research direction, grant application, and R&D program management in related.Singapore prioritized area(s);.Contribute to elevate leadership position in the related areas for I2R, A*STAR, and.Singapore.The candidate should be a world-class and widely recognized research leader in.communications and networks, with proven track record in research outputs and outcomes..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-research-scientist-communications-networks-i2r-10128092?jobId=jobstreet-sg-job-10128092§ionRank=1047&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
his/her responsibilities:
[{'position': 'Data Scientist, - TikTok Monetization Product, #WorkNow #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities': '', 'Responsibilities:': '', 'Qualifications': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-tiktok-monetization-product-worknow-urgenthire-10105580?jobId=jobstreet-sg-job-10105580§ionRank=1048&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist - E-Commerce Risk Control - #WorkNow #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 25-Oct-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..At least 3 years with solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-e-commerce-risk-control-worknow-urgenthire-10102358?jobId=jobstreet-sg-job-10102358§ionRank=1049&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Scientist (Piezo MEMS Design for Sensors and Actuators), IME'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'The job responsibilities will include:': 'Designing piezoelectric MEMS acoustic devices (e.g. piezoelectric micromachined ultrasonic transducers (pMUTs), micro-speakers, microphones).Developing mechanical and acoustic analytical, finite element, and/or finite-difference time-domain models.Designing MEMS fabrication processes and working with the process integration team to ensure successful devices.Building electrical and acoustic test setups and PCB circuits for characterizing pMUT devices.Designing and characterizing test structures for process and film characterization as well as yield enhancement.Specifying integrated circuit and packaging requirements for MEMS devices and communicating the requirements to the\xa0respective teams.Data analysis of wafer-level and assembly-level measurements.', 'Requirements:': 'PhD in Electrical Engineering / Mechanical Engineering / Applied Physics or equivalent.5 years experience in MEMS.Good intuition and a deep understanding of thin-film piezoelectric materials (AlN/AlScN, PZT, etc.) and structures.Experience with MEMS electromechanical and acoustic modeling (beamforming is a plus).Knowledge of typical MEMS fabrication processes, with some experience in microfabrication.Experience with finite element software such as COMSOL, Coventorware, or Ansys.Software programming skills for data analysis, such as MATLAB or Python.Knowledge of circuit architectures for MEMS sensors.Good communication and presentation skills.Ability to work independently, as well as being an excellent team player.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Mechanical', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-piezo-mems-design-for-sensors-and-actuators-ime-10128267?jobId=jobstreet-sg-job-10128267§ionRank=1050&token=0~4942c40c-4d9e-4544-97c4-3efbfdafe95d&fr=SRP%20Job%20Listing'}]
The job responsibilities will include:
[{'position': 'Machine Learning Engineer, TikTok Ads Vertical Solutions'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', "What You'll Do:": "Apply state-of-the-art machine learning techniques optimize advertisers' marketing strategies..Connect with businesses directly to understand and develop solutions for their Jobs-to-be-done..Collaborate with Product Managers, Designers, and other disciplines to explore the next generation of shopping experiences on TikTok..Capitalize on the organic shopping behaviours on TikTok today and facilitate retentive behaviours to provide more people value and business value..", 'Qualifications': '', 'Minimum Qualifications:': 'Solid programming skills, proficient in C/C++..Familiarity with at least one mainstream deep learning programming framework (TensorFlow/Caffe/MXNet) and its architecture and implementation mechanism..Familiarity with deep learning algorithms (CNN/RNN/LSTM, etc.)..Team-player with strong communication skills who can also work independently..', 'Preferred Qualifications:': 'Familiarity with main components for Ads systems, including bidding, ranking, and auction..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-tiktok-ads-vertical-solutions-10144979?jobId=jobstreet-sg-job-10144979§ionRank=1052&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist, Trust and Safety*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 25-Oct-22']}, {'Responsibilities': [], 'Overview': 'Support strategic planning and execution for long term business plans through in-depths research, industry studies and the study of market trends..Design and establish indicator systems for safety and risks of the platform, monitor and optimize risk coverage in each link, measure the performance of content safety strategies and facilitate decision-making..Build and enhance risk detection models or toolings to strengthen enforcement and automation of trust and safety policies.Derive and drive quantitative projects from start to finish, including developing analytical frameworks, distilling actionable insights and working with XFN partners to drive business impact..', 'Qualifications': 'Working level competency in one or more programming languages including SQL, Python and R is required..Sound understanding of ML models and how they can be leveraged to act upon a range of content and safety risks..Minimum 2+ years work experience in quantitative analysis with relevant degree / experience..Experience working on consumer-facing products, with a keen sense of malicious and inappropriate activities that occur on social media..Ability to solve problems using quantitative approaches and communicate complex concepts and analytical results to drive business impact..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-trust-and-safety*-urgenthire-10102671?jobId=jobstreet-sg-job-10102671§ionRank=1053&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist - Global E-commerce*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities': '', 'Qualifications': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-global-e-commerce*-10103102?jobId=jobstreet-sg-job-10103102§ionRank=1054&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior / Principal Solutions Architect'}, {'company_name': 'Durapower Technology (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa07,000 - SGD\xa010,000', 'Posted on 31-Oct-22']}, {'About the job': '', 'Where you fit': '', 'What’s the role?': '', 'Key Expectation:': 'To oversee the technology development of the end-to-end tools (portals – web and app, analytics utility, data visualization).To help the leaders making right technology decisions for data engineering, data hosting and to identify right partners for development..', 'Key success measure for the role': '', 'Core Responsibilities are as follows:': "Develop Product technology strategy jointly with the principal product manager..Collaborate with Digital leadership team and cross functional team members in project execution..Act as a trusted 'advisor' to the CTO and management team in your role as a guiding and helping portfolio projects be successful throughout the various stages of their growth..Validate, structure, and support the implementation of appropriate technology opportunities that can accelerate the deployment of technologies, products, or services in DuraPower operations, in close collaboration with implementation (sometime external) team;.Cultivate a close working relationship with specific business stakeholders to ensure alignment of strategy, sharing of knowledge, and ongoing relevance to business groups..Develop and leverage your internal and external network to source opportunities, validate technology relevance of projects..Have an excellent nose for 'quality' and a proven ability to quickly down select the best technology for DuraPower from a large pool of opportunities..Provide both challenge and support to others in the team (e.g. in our Digital Leadership Committee discussions), portfolio project representatives, and external parties;.Passion to contribute towards continuous team professionalization without losing sight of value delivery..Highlighting Durapower as new energy and mobility leader within a low-carbon ecosystem with disruptive innovation in energy and transportation; and.", 'What We Need from You': 'University degree in Data science Engineering with experience of 10-12 years plus, candidate with lesser experience may be considered.Knowledge of systems development, including system development life cycle, project.management approaches and requirements, design and testing techniques.Proficiency in data modeling and design, including SQL development and database administration.Ability to implement common data management and reporting technologies, as well as the basics of columnar and NoSQL databases, data visualization, unstructured data, and predictive analytics..Understanding of AI (ML/DL) technologies, like predictive modelling, optimisation, data mining, data visualization etc..Knowledge of programming languages Python, C/C++, Java, and Perl and software engineering practices.Natural curiosity, creative and critical thinker with learner mindset..Demonstrable technical expertise in, and passion for, technology and innovation. Professional experience in a technical role in the Energy, Mobility, is an upside..Deep understanding of how technology or new business models unlock new opportunities..Executive presence’ and the ability to represent DuraPower in internal leadership and public forums..Strong communication skills with the ability to build and maintain relationships within a complex, global corporation; and.A true “team player” with a collaborative attitude and an interest in developing talent..'}, {'Career Level': 'Manager', 'Qualification': 'Not Specified', 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201402235M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Automobile / Automotive Ancillary / Vehicle', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts), Insurance, Flexible working hours'}, {'Company Overview': 'Durapower (www.durapowerbattery.com) is a Singapore-incorporated international company specializing in the development, design, and manufacturing of lithium-ion based energy storage solutions for applications such as hybrid or electric vehicles (EVs) as well as energy storage system (ESS) for renewable generation, rooftop solar, UPS back up power etc. To deliver world-class energy storage solutions through innovation and people development, and create value adds to customers, partners, shareholders and staff.An excellent growth opportunity for whoever is looking to develop skills in the fast developing fields of Green Energy, Electrification and Electrical Vehicles.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-principal-solutions-architect-10118494?jobId=jobstreet-sg-job-10118494§ionRank=1056&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
About the job
[{'position': 'Data Scientist'}, {'company_name': 'Endofotonics Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 25-Oct-22']}, {'Qualifications & Requirements:': 'Develop deployment methodology with Software Development team..Deploy\xa0and\xa0monitor performance\xa0of\xa0trained AI models, including misdiagnosis analysis..Understand\xa0new\xa0clinical requirements\xa0of\xa0real-time diagnosis\xa0and\xa0map them into specifications for AI model development..Identify\xa0and\xa0evaluate AI models for applications\xa0in\xa0real-time diagnosis..Perform regular updates on\xa0the\xa0state-of-the-art for\xa0medical\xa0endoscopic AI-powered devices..Establish network within\xa0the\xa0AI community\xa0to\xa0keep abreast with relevant AI-powered medical\xa0technologies – e.g. NVIDIA..Support development\xa0and\xa0execution\xa0of\xa0Technology & Product Development Roadmap on AI/Data-related items..Ensure AI/Data developments conform with\xa0regulatory\xa0guidelines..Prepare AI/Data-related presentation material for business development or marketing..Bachelor or Master’s\xa0degree\xa0in\xa0Computer Science, Computer Engineering, Data Science\xa0or\xa0other relevant disciplines..Proven use\xa0of\xa0machine learning, predictive modelling, data conversion/transformation methods,\xa0and\xa0model deployment\xa0is\xa0desirable..Enjoy using Python, R, MATLAB, SQL,\xa0and\xa0other scripting/programming\xa0languages\xa0to\xa0solve real-life problems..Demonstrated leadership\xa0and\xa0capability\xa0in\xa0handling\xa0multiple\xa0priorities..Excellent written\xa0and\xa0verbal communication skills\xa0to\xa0influence others..Comfortable with both collaborating cross-functionally\xa0and\xa0working\xa0independently when necessary..Interest in understanding and value-adding\xa0to\xa0Medical\xa0Technology sector..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201323074M', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '30 days', 'Industry': 'Science & Technology', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': '\n\tEndofotonics Pte Ltd, incorporated on 26th August 2013, is a Singapore medical device start-up with the world’s first in-vivo molecular diagnosis (IMDX) system that enables timely medical intervention during routine endoscopic examination. Till date, molecular diagnosis can be done only in the laboratory setting. Endofotonics’ IMDX system will create a paradigm shift improving accuracy, speed & cost of disease diagnosis; enabling objective real time disease diagnosis and timely medical intervention in the treatment room, reducing death and disease burden.Endofotonics is currently the forerunner in shaping a future where molecular diagnosis can be performed in the body, effectively creating an entirely new market segment within the endoscopic device market.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-10100380?jobId=jobstreet-sg-job-10100380§ionRank=1057&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Qualifications & Requirements:
[{'position': 'Scientist (Quantum Technologies for Engineering), IMRE'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'6': '', '\xa0Main Duties and responsibilities:': 'Masks design and fabrication.Devices’ microfabrication and characterization.Microfluidic set-up and adaptors for biological samples microscopy.Technical/Scientific reports writing and presentation.', 'Required know-how:': 'Mask drawing software (L.-edit, Layout, AutoCAD).UV lithography.Silicon dry/wet etching.Soft lithography (e.g. PDMS casting).', 'Minimum Qualifications:': 'PhD degree in physics, engineering, material science or related disciplines, with minimum 1 year of cleanroom or microfabrication processes experience..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-quantum-technologies-for-engineering-imre-10127923?jobId=jobstreet-sg-job-10127923§ionRank=1058&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
6
[{'position': 'Research Fellow, - (Mathematic Modeling of Macromolecular Assembly) (R00010338)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Job Description:': 'Perform high-end cell biological imaging, and quantitative imaging analysis to understand how biomolecular assembly in vivo and in vitro, including but not limited to single-molecule imaging and super-resolution imaging.Carry out different quantitative protein biochemistry works regarding protein purification, protein interaction, and protein function in regulating cytoskeleton assembly.', 'Job Requirements:': 'PhD in biochemistry, biophysics, and molecular and cell biology.Prior related research experience would be advantageous\xa0.Ability to work independently as well as teamwork.\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-mathematic-modeling-of-macromolecular-assembly-r00010338-10070254?jobId=jobstreet-sg-job-10070254§ionRank=1059&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Assistant, - (Computer Science and Data Science) - (R00003669) #WorkNow #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': '', 'Job Requirements:': 'Bachelor’s degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal and graph data.Programming skills, and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-and-data-science-r00003669-worknow-seekbetter-10136094?jobId=jobstreet-sg-job-10136094§ionRank=1060&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Associate (Computer Science/Aerospace Eng/Operation Research) (R00010452)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:\xa0': 'Support research and development related to Deep Learning and Computer Vision algorithms applied to Air Traffic Control and Air Traffic Management..Develop deep learning-based end-to end oversampling technique to deal with class imbalance problems, and to detect extremely rare events like runway excursion prediction..Develop explainable deep learning techniques to support the air traffic controller with reasoning behind the decision from the so-called black box machine learning models..Join the team in the development of algorithmic concepts for the broader applied analytics of Air Traffic Management..', 'Job Requirements:\xa0': 'Master’s Degree in Computer Sc. /Aerospace Eng/Operation Research or equivalent.Programming Experience: working knowledge of Python Programming (preferably PyTorch) Languages.Demonstrated project experience related to applied Machine Learning, Data Mining, Deep learning, Generative models, Air Traffic Control or Air Traffic Management.Publications in peer-reviewed conferences and/or journals related to Machine Learning/Air Traffic Management.Good English writing and communication skills (required).'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-aerospace-eng-operation-research-r00010452-10046310?jobId=jobstreet-sg-job-10046310§ionRank=1061&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow (Computer Science and Engineering) - (R00008362)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Understand the research project and work context as a scientific research staff in the team.Apply scientific, technical and software engineering skills to conduct research.Develop prototypes to demonstrate successful application of the research.Facilitate technical development, testing and refinements of research project.Promote collaborative and translational research work.Documenting research plans and progress, and writing reports\u200b.', 'Job Requirements:': 'Ph.D. Degree in Computer Science and Engineering or related fields.Has demonstrable experience in topics at the intersection of robust optimization, data analytics and machine learning.Programming fluency in Python, C/C++ or Java is required.Proficiency in developing and deploying algorithms to both academic and industrial environment are expected.Prior background in model-based or evolutionary methods for multi-objective optimization is a plus.Highly motivated, independent and able to work as a team.Effective communication and report writing skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-and-engineering-r00008362-10072556?jobId=jobstreet-sg-job-10072556§ionRank=1062&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Ads Data Scientist*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities': '', 'About the Role': '', 'What you will do': 'Lead in the ideation, creation, and prototyped deployment of sophisticated custom insights, ad effectiveness meta-analysis, or tooling for large-scale data environments for use by wider measurement teams.Contribute with global teams on data lake designs for regional best practices.Organize and build a data science culture across the organization designed to empower behavior change.', 'Qualifications': 'Proficiency in SQL, HIVE, R, and experience with large-scale data problems where machine learning or Artificial Intelligence methods have been leveraged.Experience with complex systems that require classification and automation.Experience with internet cookie and person-based data environments.Intellectual curiosity for advancements of cryptographic privacy-preserving methods.Excellent external communication and succinct writing skills are a must.Exceptional time and goal-oriented task management skills are a must.Interest in working in a fast-paced growth environment with global talent.Experience in peer training for organizational scale is a strong differentiator.Experience in prototyping work that leads to decision-making is a plus.'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/ads-data-scientist*-10104617?jobId=jobstreet-sg-job-10104617§ionRank=1063&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Digital Twin Simulation Engineer'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Digital Twin Simulation Engineer': 'Golden Opportunity with\xa0EV MNC\xa0.Competitive Remuneration\xa0Package.Leading Digital Twin R&D division.', 'About the Client': '', 'Main Duties & Responsibilities': 'Design, develop, implement and maintain the algorithm development of a digital simulation model for a 60+ hectares smart factory using Unity-based simulation engine.Utilize Java and C# to enhance the in-house 3D simulation engine.Be involved in improving the simulation library for end-to-end manufacturing production line.Take into consideration physics and latency factors while creating a two-way digital twin simulation engine that is accessible cross border using 5G technology.Constantly improve this state-of-the-art system as the smart factory continually evolve.', 'Education Backgrounds': "Master's or Bachelor's Degree in Computer Engineering, Mechanical Engineering, Information Systems Engineering or equivalent with at least 3 years of Digital Twin development experience especially in simulation.Experience in at least one of the following is a must: Java and/or C#.Experience in Unity preferred.Prior exposure in an established Automotive or Manufacturing setting will be recommended.", 'What to Expect': '', 'Interest & Apply': '', 'Personnel Registration No R1980978': '', 'EA license No. 09C5803': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/digital-twin-simulation-engineer-10067427?jobId=jobstreet-sg-job-10067427§ionRank=1064&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Digital Twin Simulation Engineer
[{'position': 'Ads Data Scientist #Urgent*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities': '', 'About the Role': '', 'What you will do': 'Lead in the ideation, creation, and prototyped deployment of sophisticated custom insights, ad effectiveness meta-analysis, or tooling for large-scale data environments for use by wider measurement teams.Contribute with global teams on data lake designs for regional best practices.Organize and build a data science culture across the organization designed to empower behavior change.', 'Qualifications': 'Proficiency in SQL, HIVE, R, and experience with large-scale data problems where machine learning or Artificial Intelligence methods have been leveraged.Experience with complex systems that require classification and automation.Experience with internet cookie and person-based data environments.Intellectual curiosity for advancements of cryptographic privacy-preserving methods.Excellent external communication and succinct writing skills are a must.Exceptional time and goal-oriented task management skills are a must.Interest in working in a fast-paced growth environment with global talent.Experience in peer training for organizational scale is a strong differentiator.Experience in prototyping work that leads to decision-making is a plus.'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/ads-data-scientist-urgent*-10103849?jobId=jobstreet-sg-job-10103849§ionRank=1065&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate (Visual Analytics) - (R00009667)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Description:': 'Research into Visual Search and Video Analytics related work, including object detection, person re-identification (reID) & tracking, and search & retrieval.Creation of large-scale datasets for research and algorithm evaluation.Be part of a research team in the execution of funded research projects.Assist in drafting of proposals for research grants in the above areas.', 'Job Requirements:': 'Masters degree in Signal Processing, Engineering, Computer Science, or related field.Research experience in Computer Vision, Pattern Recognition, Deep Learning, and working with large-scale datasets.Experience with object detection & segmentation, person re-identification, and domain adaptation & generalisation is essential.Experience with scripting with game engines (eg. Grand Theft Auto, Unity) and the creation of synthetic datasets would be highly advantageous.Proficiency in software such as PyTorch, TensorFlow, OpenCV, and programming languages such as C/C++ and Python, as well as Linux (eg. Ubuntu) is essential.Knowledge of GPU computing, CUDA programming, optimization (eg. with TensorRT), and industry experience in engineering software development would be an advantage.Good inter-personal skills, with the ability to work with people from varied backgrounds.Proficient in English.\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-visual-analytics-r00009667-10046519?jobId=jobstreet-sg-job-10046519§ionRank=1067&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Intern, Data Scientist, (DPE-SPG-Engineering)'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Position Overview': '', 'Responsibilities': 'Data Analysis.Data Engineering.Developing code using machine learning models.', 'Minimum Qualifications': 'Undergraduate in Computer Science/ Computer Engineering/ Electrical Engineering.', 'Preferred Qualifications': 'Knowledge of data science and machine learning concepts.Strong programming skills.Able to navigate a steep learning curve.', 'Learning Benefits': 'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.', 'About Autodesk': '', 'Are you an existing contractor or consultant with Autodesk? Please search for open jobs and apply internally (not on this external site). If you have any questions or require support, contact ': '', 'Autodesk Careers': '', '.': []}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/intern-data-scientist-dpe-spg-engineering-10104425?jobId=jobstreet-sg-job-10104425§ionRank=1068&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Intern, Data Scientist, [DPE-SPG-Engineering] #JobsThatMatter'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Position Overview': '', 'Responsibilities': 'Data Analysis.Data Engineering.Developing code using machine learning models.', 'Minimum Qualifications': 'Undergraduate in Computer Science/ Computer Engineering/ Electrical Engineering.', 'Preferred Qualifications': 'Knowledge of data science and machine learning concepts.Strong programming skills.Able to navigate a steep learning curve.', 'Learning Benefits': 'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.', 'About Autodesk': '', 'Are you an existing contractor or consultant with Autodesk? Please search for open jobs and apply internally (not on this external site). If you have any questions or require support, contact ': '', 'Autodesk Careers': '', '.': []}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/intern-data-scientist-%5Bdpe-spg-engineering%5D-jobsthatmatter-10104441?jobId=jobstreet-sg-job-10104441§ionRank=1069&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Intern, Data Scientist, (DPE-SPG-Engineering) #JobsThatMatter #JobsThatMatter'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Position Overview': '', 'Responsibilities': 'Data Analysis.Data Engineering.Developing code using machine learning models.', 'Minimum Qualifications': 'Undergraduate in Computer Science/ Computer Engineering/ Electrical Engineering.', 'Preferred Qualifications': 'Knowledge of data science and machine learning concepts.Strong programming skills.Able to navigate a steep learning curve.', 'Learning Benefits': 'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.', 'About Autodesk': '', 'Are you an existing contractor or consultant with Autodesk? Please search for open jobs and apply internally (not on this external site). If you have any questions or require support, contact ': '', 'Autodesk Careers': '', '.': []}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/intern-data-scientist-dpe-spg-engineering-jobsthatmatter-jobsthatmatter-10104439?jobId=jobstreet-sg-job-10104439§ionRank=1070&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Intern, Data Scientist, (DPE-SPG-Engineering) - #JobsThatMatter'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Position Overview': '', 'Responsibilities': 'Data Analysis.Data Engineering.Developing code using machine learning models.', 'Minimum Qualifications': 'Undergraduate in Computer Science/ Computer Engineering/ Electrical Engineering.', 'Preferred Qualifications': 'Knowledge of data science and machine learning concepts.Strong programming skills.Able to navigate a steep learning curve.', 'Learning Benefits': 'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.', 'About Autodesk': '', 'Are you an existing contractor or consultant with Autodesk? Please search for open jobs and apply internally (not on this external site). If you have any questions or require support, contact ': '', 'Autodesk Careers': '', '.': []}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/intern-data-scientist-dpe-spg-engineering-jobsthatmatter-10104437?jobId=jobstreet-sg-job-10104437§ionRank=1071&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Senior Professional Officer, Business Analytics - 2683'}, {'company_name': 'CTES Consulting Pte Ltd'}, {'small_section': ['West', 'SGD\xa07,500 - SGD\xa09,000', 'Posted on 29-Oct-22']}, {'Senior Professional Officer, Business Analytics': '', 'The responsibilities of this role are:': 'Design and teach labs & practice modules..Mentor students in Capstone Projects and the Integrated Work Study Programme (IWSP)..Lead or co-lead innovation projects with industry..Manage labs and equipment to support academic programmes and applied research..Ensure safety in labs.Develop and deliver Accounting, Business and Data Analytics related courses to business undergraduate students and adult learners in various programs and industry..Manage students with diverse learning abilities and learning styles.', 'The ideal candidate will need to have the following qualities and experience:': '', ' Accountancy, Business or IT related field. Masters, PhD and/or relevant professional certifications would be advantageous.': '', '\xa010 or more years of accumulative working experience in accounting/auditing, business domain and analytics': '', 'digital transformation and driving digital changes in organization such as automation, process optimizations and data modelling are highly desirable.': 'IT savvy and familiar with digital tools used in business domain..Passionate about technology and possesses the visionary to drive digital change..Extensive experience and knowledge of industry practices to bring industry perspective to the University.Keen interest in innovation projects, with demonstrated ability in developing solutions to technical problems..Enjoy working closely with students in an educational environment..Demonstrate proficiency to keep abreast of development in the field and pursue professional certification programs..Possess industrial certifications in relevant areas will be an added advantage..A committed believer in continuous learning and self-improvement, with a strong sense of confidence in managing his/her own learning process..Good communication and interpersonal skills..Passionate about training, coaching and mentoring..Able to build and maintain strong working relationships with people within and external to the university..Self-motivated team player and flexibility to work across functions/teams in a dynamic hand-on environment..Possess strong analytical and critical thinking skills..Show strong initiative and take ownership of work..', 'An exciting career awaits the right candidate! Click "Quick Apply" to register your interest now.': '', "All applicants' CV will be treated with the strictest confidentiality. We regret to inform that only shortlisted candidates will be contacted.": []}, {'Career Level': 'Senior Manager', 'Qualification': 'Not Specified', 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, General/Cost Accounting', 'EA No.': '07C3481', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\tEA License No.: 07C3481\n\n\tOur Recruitment Consultants are equipped with extensive recruitment and industry expertise in their areas of specialisation.\n\n\tThe experience combined with their commitment to establish a deep understanding of our client and their business priorities enable CTES to deliver value far beyond the service provided by traditional search firms.\n\n\tWe provide an impeccable match. At CTES, we believe in providing a seamless match between candidate and client. We deem it our responsibility to thoroughly understand our client's needs, and to obtain in-depth knowledge of the job requirements and the culture of the client's organization. This enables us to provide suitable and proficient candidates to our clients.\n\n\tBy ensuring a close match between the candidate and position, we are able to foster a win-win situation, for both our clients and our candidates.\n\n\tCTES aims to be an organisation renowned throughout the Asia-Pacific region, integral to both employers and career seekers. We hope to become the preferred HR and career consultants for our clients and candidates respectively."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-professional-officer-business-analytics-2683-10115204?jobId=jobstreet-sg-job-10115204§ionRank=1072&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Senior Professional Officer, Business Analytics
[{'position': 'Full Stack Developer (Visualisation)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job description:': 'Design and develop a visualisation platform, comprising of user interface, data ingestion tools and visualisation aids, to visualise data generated in real-time and non-real time from digital twins of ocean going platforms and maritime systems..Maintain system configuration, interface specifications and user documentation for each development cycle..Engage stakeholders (hydrodynamics and structural engineers) to refine and prioritize requirements for system enhancements..Any other duties as assigned by supervisor..', 'Requirements:': '', 'Qualification & Field of Study:': 'Bachelor/Masters in Computer Science or Computer Engineering\xa0or equivalent.\xa0.', 'Work Experience:': 'At least 3 years of relevant working experience in UX design, data visualisation or Augmented Reality/Virtual Reality..Proven track record in designing data structures, algorithmic programming, data visualisation, virtual or augmented reality, and database management..Proficient with C++, Matlab, Python, database technologies, and visualisation using game engines such as Unity 3D..Experience in MPI-based parallelisation and GPU computation is an advantage..', 'Other Requirements:': 'Good interpersonal and communications skills..Good organization skills and ability to adapt and work effectively as team player..Curious, resourceful, and self-driven with a high degree of professional integrity.\xa0.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/full-stack-developer-visualisation-10127000?jobId=jobstreet-sg-job-10127000§ionRank=1073&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Job description:
[{'position': 'Big Data Lead - #Immediate #Seekbetter #UrgentHire'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'About the Job:': 'The Job is to design, define, maintain, and support\xa0the architecture of existing product. As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system. You will also be the backend lead of a small dynamic team of software developers..You will\xa0work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..', 'About the Team:': 'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..', 'Responsibilities:': 'The candidate is responsible for developing and working with peers to build sustainable and well-defined components that can enhance or introduce new innovative features to existing product..', 'As the backend team lead,\xa0your will provide leadership in the following:': 'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work\xa0with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work\xa0with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..', 'Basic Qualifications:': 'Bachelor’s degree in Computer Science, Computer Engineering, or a software related discipline, from an accredited\xa0college\xa0or\xa0university.Must have hands-on experience in Big Data (Hadoop, HBase, Hive, Scala).Must have hands-on experience in Spark development, Sqoop, Flume, Kafka, nifi and Python.Must have experience with creating web services that can run in a high availability Cloud environment that can easily be monitored.Must have hands on experience in Java, spring, microservices, REST API, spring Boot, Scala, Hadoop, Spark, Kafka, Postgres, Docker, Kubernetes..Proven success working in a team-oriented environment and demonstrated problem solving skills..Must have an ability to identify, formulate, and solve engineering problems.', 'Desired Qualifications:': 'Experience in Architecture, design, implementation, and deployment of high volume, highly available, cloud-based systems would be a plus.Hands on experience in Java/Scala/Python or any programming language software development skills.Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..A proactive and eager nature for tackling new challenges.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-lead-immediate-seekbetter-urgenthire-10141483?jobId=jobstreet-sg-job-10141483§ionRank=1075&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
About the Job:
[{'position': 'Research Fellow (Computer Science/Electrical Engineering) (R00002306)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Description': 'PhD Degree in Computer Science or Electrical Engineering from reputed universities, with at least 5-year research experience in related fields.Good research and comprehensive skills.Familiar with any of the major deep learning libraries including Pytorch, TensorFlow, and MatConNet.Familiar with the image processing and optimization toolboxes in MATLAB.Comfortable with Linux environment including using vim, git, tmux, bash, etc.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-electrical-engineering-r00002306-10046460?jobId=jobstreet-sg-job-10046460§ionRank=1076&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Big Data Lead #Immediate #Seekbetter #UrgentHire'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'About the Job:': 'The Job is to design, define, maintain, and support\xa0the architecture of existing product..As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system..You will also be the backend lead of a small dynamic team of software developers..You will\xa0work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..', 'About the Team:': 'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..', 'Responsibilities:': 'The candidate is responsible for developing and working with peers to build sustainable and well-defined components that can enhance or introduce new innovative features to existing product..', 'As the backend team lead,\xa0your will provide leadership in the following:': 'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work\xa0with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work\xa0with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..', 'Basic Qualifications:': 'Bachelor’s degree in Computer Science, Computer Engineering, or a software related discipline, from an accredited\xa0college\xa0or\xa0university.Must have hands-on experience in Big Data (Hadoop, HBase, Hive, Scala).Must have hands-on experience in Spark development, Sqoop, Flume, Kafka, nifi and Python.Must have experience with creating web services that can run in a high availability Cloud environment that can easily be monitored.Must have hands on experience in Java, spring, microservices, REST API, spring Boot, Scala, Hadoop, Spark, Kafka, Postgres, Docker, Kubernetes..Proven success working in a team-oriented environment and demonstrated problem solving skills..Must have an ability to identify, formulate, and solve engineering problems.', 'Desired Qualifications:': 'Experience in Architecture, design, implementation, and deployment of high volume, highly available, cloud-based systems would be a plus.Hands on experience in Java/Scala/Python or any programming language software development skills.Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..A proactive and eager nature for tackling new challenges.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-lead-immediate-seekbetter-urgenthire-10141484?jobId=jobstreet-sg-job-10141484§ionRank=1077&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
About the Job:
[{'position': 'Research Assistant - (Microbiology - Wastewater Surveillance) (R00009549)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Key Responsibilities:\xa0': 'Implement methods for detection and quantification of human pathogens in wastewater leveraging platform technologies, including but not limited to PCR (dd, q, microfluidic) and next generation sequencing.', 'Job Requirements:\xa0': 'BS in biology, microbiology, or other related disciplines.Competent in basic microbiology.Able to handle chemicals and microbes competently and safely, up to Biosafety Level 2.Laboratory experience in carrying out PCR or qPCR independently is required.Possess the ability to follow standard molecular biology protocols, including nucleic acid extraction.Candidate must be extremely reliable and able to operate as part of a team with a fixed schedule..Experience with molecular assay development, optimisation and/or validation preferred.Experience in one or more of the following platform technologies preferred i.e, ddPCR, microfluidic PCR, next generation sequencing, nanopore sequencing, microarrays, lateral flow assay.Vaccinations as recommended by NTU Biosafety and Singapore MOH.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-microbiology-wastewater-surveillance-r00009549-10047432?jobId=jobstreet-sg-job-10047432§ionRank=1078&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Scientist (Green Chemistry), ISCE2'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-scientist-green-chemistry-isce2-10052454?jobId=jobstreet-sg-job-10052454§ionRank=1079&token=0~dcee24df-2490-43c7-b68c-9eeba9dada6f&fr=SRP%20Job%20Listing'}]
[{'position': 'Data Analyst, Growth #JobsThatMatter*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': '', 'You will:': 'Build and governing matrices for fast changing business in an analytical data-driven approach to identify business issues and opportunities;.Prototype analysis pipelines to provide insights, and provide quick responses to business inquiries and events;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendation on appropriate solutions..', 'Qualifications': "Bachelor's degree in Statistics, Applied Mathematics, Computer Science or a related field;.Skilled in data manipulation with SQL, python or other programming-languages/tools;.Experienced in data analyzing, visualization and reporting;.Fast business understanding and collaborative in teamwork.."}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-growth-jobsthatmatter*-10120094?jobId=jobstreet-sg-job-10120094§ionRank=1082&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Sr. Research Scientist B, - R00008964 #JobsThatMatter #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Senior Research Scientist B (Electrical & Electronics Engineering/Material Science/Physics/Chemistry)': '', 'Job Responsibilities': 'To develop III-V compound semiconductor-based LDs and its integration with external switches.Formulate and execute DOEs for process development/process optimization.Sourcing of required equipment/tool for the fabrication of LDs and its testing.Design of Epi-layer design, Layout, process steps and recipes for the fabrication of LDs.Prepare the run-sheets for the full fabrication of LDs up to the level of packaging.Work with the Fab manager/module leaders for the smooth flow of LD fabrication.Contribute to research reports for project deliverables, new project proposal drafting and etc....Perform other duties related to optical devices and its integration or assigned by higher management.Preparing process documentations with the standard of ISO 9001:2015 or ISO 9001:2018.', 'Job Requirements': 'PhD with 4 years of relevant experience in either Electrical & Electronics Engineering/ Material Science/Physics/Chemistry or Other related field.Strong technical knowledge with hands-on experience in III-V compound semiconducting materials and its optical devices (e.g. Junction diodes, Transistors, Switches, and etc…).Skills to initiate and design mask layout as necessary for new device geometries.Knowledge in developing new processes to improve the overall performance of LDs and Qualify processed wafers for engineering and new product development programs.Capability to work with process team to develop improved processes for the fabrication of LDs and switches.Knowledge in monitoring engineering process and analyze process and device data.Skills to analyze and correlate processed data with device performance.Participate in Engineering team meetings, Program Status meetings and Design Review meetings as necessary.', 'We regret to inform that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-research-scientist-b-r00008964-jobsthatmatter-urgenthire-10135565?jobId=jobstreet-sg-job-10135565§ionRank=1083&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Senior Research Scientist B (Electrical & Electronics Engineering/Material Science/Physics/Chemistry)
[{'position': 'Research Assistant, (Data Science/Machine Learning/Computational Fluid Dynamics) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Research Assistant (Data Science/Machine Learning/Computational Fluid Dynamics) (R00007081)': '', 'Job Responsibilities': 'Participate in programming and soft development related works on energy systems design, modeling, and optimization using algorithms and artificial intelligence (AI) techniques.Assist in applying data science and machine learning techniques for energy stor material selection and formulation.Conduct data collection, data analysis, and database maintenance.Support in Computational Fluid Dynamics (CFD) studies and other related topics.', 'Job Requirements': 'Bachelor’s in Computer Science, Electrical Electronic Engineering, Mechanical Engineering, Mathematics, or Physics.Experience with machine learning, data analytics, and software development.Familiar with python or C++ development, experience with MySQL is a plus.Experience or knowledge in CFD, chemistry, or energy system modeling is preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-data-science-machine-learning-computational-fluid-dynamics-urgenthire-10136856?jobId=jobstreet-sg-job-10136856§ionRank=1084&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Research Assistant (Data Science/Machine Learning/Computational Fluid Dynamics) (R00007081)
[{'position': 'Security Data Scientist, Creator Platform*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities': '', 'Qualifications': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/security-data-scientist-creator-platform*-10103136?jobId=jobstreet-sg-job-10103136§ionRank=1085&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': '(Senior) Research Fellow (Optical Biosensing and Medical Technology, Translational Biophotonics Laboratory), IBB'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job\xa0description:\xa0': 'Develop novel optical spectroscopy and biosensing platforms using nanomaterial/nanophotonics/plasmonic nanoparticles and surface chemistry interface for biosensing applications (for rapid detection of biomarkers, development of invitro diagnostics etc.)\xa0for clinical translation.Work closely with scientists from various backgrounds and clinicians from hospital clusters in Singapore to develop technologies and conduct translational clinical research\xa0.Present analysis results and project solutions to technical leads and senior leaders as necessary\xa0.Ensure deliverables are completed on-time.', 'Requirements:\xa0': 'Ph.D in materials science engineering or bioengineering or material chemistry or nanotechnology or photonics.Experience/skills in developing nanomaterials/nanophotonics based biosensing platforms using Raman spectroscopy/Surface Enhanced Raman spectroscopy (SERS)/Fluorescence/colorimetry/electrochemical or related sensing\xa0.Previous experience of handling optical fibers for sensor development\xa0.Knowledge in data analysis using Python or MATLAB\xa0is advantageous.Good\xa0written and verbal communication skills.Able to work in a multidisciplinary team, demonstrate initiative and work independently with strong interpersonal skills.Good publication record in international journals.', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-fellow-optical-biosensing-and-medical-technology-translational-biophotonics-laboratory-ibb-10124126?jobId=jobstreet-sg-job-10124126§ionRank=1086&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Job description:
[{'position': 'Senior Specialist, Data Scientist #WorkNow'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Senior Specialist, Data Scientist': '', 'Overview': '', 'Overview\xa0of\xa0the\xa0role:': '', 'Job\xa0Role:': "Defines, develops, maintains\xa0and\xa0delivers strategic data science products that demonstrate\xa0the\xa0value\xa0and\xa0effectiveness\xa0of\xa0the\xa0organization..Will be responsible for\xa0the\xa0leadership\xa0and\xa0direction\xa0of\xa0the\xa0projects\xa0to\xa0develop analytic products..Develop\xa0and\xa0communicate insights leveraging\xa0the\xa0scientific method. Roles may specialize into 3 domain specialties : model science, feature science\xa0and\xa0Insight science capabilities..Accountable for developing\xa0and\xa0guiding more junior members\xa0and\xa0communicating findings, approaches\xa0and\xa0insights\xa0from\xa0data products..Responsible for guiding own\xa0work\xa0for deployment\xa0and\xa0support..Leads\xa0and\xa0partners with others\xa0to\xa0deliver meaningful insights in complex business situations..Establishes relationships\xa0to\xa0obtain data\xa0and\xa0subject knowledge needed\xa0to\xa0support advanced analytics..Conducts studies\xa0to\xa0provide additional facts needed\xa0to\xa0make informed decisions with regard\xa0to\xa0organizational\xa0and\xa0functional effectiveness with data decisioning..Develops consultative partnerships with internal teams\xa0to\xa0understand their strategic objectives, key performance indicators and reporting requirements..Extracts business insights to guide direction\xa0of\xa0learning activities\xa0and\xa0drive organizational efficiencies, effectiveness\xa0and\xa0outcomes..Maintains knowledge\xa0of\xa0company's total computing\xa0environment\xa0and\xa0planned changes\xa0in\xa0order\xa0to\xa0develop meaningful data science products..Collaborates/Supervises leaders/Individuals\xa0to\xa0deliver on complex projects aligned with organizational strategies\xa0and\xa0business priorities. Provides training in technical tools\xa0and\xa0skills, as well as specific applications\xa0and\xa0their business functions\xa0to\xa0maximize their contribution..Grow\xa0and\xa0develop skills across\xa0the\xa03 domain specialties: model science, feature science\xa0and\xa0Insight science capabilities..Stressing expertise in\xa0the\xa0core functional areas: Computer Programming, Math & Analytic Methodology, Distributed computing\xa0and\xa0communications\xa0of\xa0complex results..Contributes\xa0to\xa0the\xa0achievement\xa0of\xa0area objectives.", 'Skills:': "Senior finance professional in quantitative discipline with expertise in machine-learning..Proven track record\xa0of\xa0applying machine-\xa0and\xa0deep-learning frameworks\xa0to\xa0practical business challenges in capital markets..Excellent knowledge\xa0of\xa0capital markets, products\xa0and\xa0concepts with a focus on fixed income products,\xa0money\xa0markets,\xa0and\xa0quantitative methods..Fluency\xa0in\xa0Python, SQL, Git. Proficiency\xa0in\xa0deep learning frameworks like tensorflow / keras..Familiarity with Google Cloud ecosystem, Bloomberg ecosystem, QuantLib\xa0are\xa0a plus..Team player, innovator, out\xa0of\xa0the\xa0box thinker..Master's\xa0degree\xa0or\xa0PhD (Computer Science, Math, Physics, Engineering).At\xa0least 5\xa0years\xa0of\xa0relevant\xa0work\xa0experience.Applied Machine Learning experience - modeling\xa0and\xa0implementation.Thorough understanding\xa0of\xa0various statistical\xa0and\xa0machine learning algorithms.Proficient\xa0in\xa0Python with open source libraries such as TensorFlow\xa0and\xa0data engineering pipelines such as Apache Spark.Excellent analytical\xa0and\xa0big-data skills.Academic/Research background, a plus.Previous experience\xa0at\xa0next-gen analytics\xa0or\xa0big-data fintech companies strongly preferred.", 'Qualification:': '', 'Employer Description:': '', 'EEO Statement:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-specialist-data-scientist-worknow-10108157?jobId=jobstreet-sg-job-10108157§ionRank=1087&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Senior Specialist, Data Scientist
[{'position': 'Big Data Engineer, - Data Engineering - (WD38319)*'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Technical Competencies': 'Operating Systems (Linux).Databases (MySQL/MariaDB).Hadoop (Cloudera).Bigdata Technologies (Apache Spark, Impala, Python).Ansible, Python.Dockers , Kubernetes.', 'Responsibilities': 'Collaborates and works with Engineering team to develop technical solutions, plans and configuration, in response to requirements from Business and Application teams..Plan and build efficient data platforms, systems and infrastructure for intelligent engines which empower business critical features leveraging background of distributed systems and scalable analytics..Derive engineering principals for running platform in most optimized way. Conducts performance analysis and tuning on regular basis..Supports Innovation; Identify new areas of improvement for data infrastructure, big data technology with an eye to solve business problems..Assess common patterns and problems to create standardized solutions by centrally building core services and technology frameworks for analytics, intelligence and data technology teams..Automate system operations and establish zero touch routines..Apply new technology and process to improve system supportability, recoverability, availability and performance. Leverage and establish best practices for Big Data Platform.Perform application tuning, code reviews and share guidance to different application teams to ensure platform efficiency and stability..Supports a clear communication strategy that keeps all relevant stakeholders informed and provides an opportunity to influence the direction of the work.', 'Requirements': 'Possess good understanding and experience with analytical frameworks and languages such as SQL, Python, Docker, Kubernetes, Ansible etc..Well-versed in data analytics concepts, technologies and applications.Proven background of performance tuning and triage for Data infrastructure.Hands-on experience in implementing data Infrastructure solution.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-engineer-data-engineering-wd38319-*-10126706?jobId=jobstreet-sg-job-10126706§ionRank=1088&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Technical Competencies
[{'position': 'Data Framework Engineer [Intermediate level, Contract] #WorkNow #Seekbetter #UrgentHire'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Description': 'At Keysight, we help companies address their toughest challenges with precision and confidence..We offer the most precise electronic measurement tools in the industry, with advanced software to match..Our employees leverage their insight and passion to revolutionize electronic measurements and make a difference in the world..Keysight Singapore Center of Excellence is launching a new software development center in Singapore, chartered to create a new generation of software for electronic product design and test for customers around the world..With strong collaborations & partnerships with local universities here in Singapore, the center will attract top local graduates from computer science, artificial intelligence, systems programming and electrical/electronic/computer engineering schools..You can join our mission to make a real difference through rapid solution development, turning measurement science IP into killer apps, on a hardware/OS agnostic, modern C++ foundation, delivered into an always-on, everywhere available, app store ecosystem..Being part of the software development team, you will work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..You will also investigate new technologies and applications and apply modern software engineering practices such as design reviews, code review, unit testing and usability testing..', 'Responsibilities': 'Leads the design and implementation of Keysight’s analytics software..Responsible for both software and system design, as well as implementation in collaboration with our team of software engineers..Define and design the technical methodology to implement policies, guidelines, tools, metrics, and standards for managing metadata.Ensure data quality and integrity..Works closely with the team members and architect to create/ manage products and establish best practices..', 'Qualifications': 'Bachelor’s degree in Computer Science, Computer Engineering or a software related discipline, from an accredited college or university.Experience working with product development/engineering and product management.2+ years in Big Data (Hadoop, HBase, Hive, Scala),2+ years in Spark development, Sqoop, Flume, Kafka, nifi and Python.Experience in design, implementation, and deployment of high volume, highly available, cloud-based systems..Must have experience with creating web services that can run in a high availability Cloud environment that can easily be monitored.Must have hands on experience in Java, spring, microservices, REST API, spring Boot, Scala, Hadoop, Spark, Kafka, Postgres..Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK, Docker, Kubernetes..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..Proven success working in a team-oriented environment and demonstrated problem solving skills..Must have an ability to identify, formulate, and solve engineering problems.Activeness in Technical Communities.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-framework-engineer-%5Bintermediate-level-contract%5D-worknow-seekbetter-urgenthire-10141355?jobId=jobstreet-sg-job-10141355§ionRank=1090&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Internship, Actuarial Pricing'}, {'company_name': 'China Taiping Insurance (Singapore) Pte Ltd'}, {'small_section': ['Downtown Core', 'Posted on 28-Oct-22']}, {'Job Description:': 'New Product pricing and implementation.Liaising and coordinating with Product, Operation and IT teams to provide actuarial support to new product implementation, which includes operational set-up and system testing.Provide actuarial support in preparing policy illustration of life insurance products and ensuring that they are compliant with industry / regulatory requirement.Draw-up the test cases for User Acceptance Test (UAT) and conduct UAT.Highlight any fixes required in the system from UAT results.Other product related support.Handle special quotations and other policy servicing queries.Handle and perform Day 2 UAT.Any other tasks assigned by the company.', 'Requirements:': 'Undergraduate in Actuarial Science, Math or Statistics preferred..Ability to think logically, strong analytical, problem-solving skills and meticulous for detail.Engaging and open-minded working attitude with emphasis on being a good team player..Proficient in Microsoft Office (Excel, Words, Power Point).Proficient in actuarial computing (VBA, SQL, R, Prophet).'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '200208384E', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '19 days', 'Industry': 'Insurance', 'Benefits & Others': 'Dental, Medical, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'China Taiping Insurance (Singapore) Pte. Ltd. (“CTPIS”) is a leading insurer for both life and general insurance businesses. Established in Singapore since 1938, CTPIS has a financial strength rating of A- by S&P and A by AM Best. We have been assuring our customers in Singapore with financial peace of mind for over 80 years.CTPIS is wholly owned by China Taiping Insurance Holdings Company Limited, which has been listed on the Hong Kong Stock Exchange since 2000, making it the first Chinese-funded insurer listed overseas. China Taiping Insurance Group Limited is a large transnational financial and insurance group with business network in Mainland China, Hong Kong, Macau, North America, Europe, Oceania, East, and Southeast Asia. The brand has gained international recognition over the years and successfully made the rankings in the “Global Fortune 500 Companies” since 2018.'}, {'url': 'http://www.jobstreet.com.sg/en/job/internship-actuarial-pricing-10027108?jobId=jobstreet-sg-job-10027108§ionRank=1091&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Business Data Analyst / Operation Finance Controller M/F #UrgentHire'}, {'company_name': 'STMicroelectronics Asia Pacific Pte Ltd (Lite ads)'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Job description': '', 'You will\xa0be\xa0involved in:': 'Leading\xa0in\xa0driving improvements in the quality\xa0and\xa0automation\xa0of\xa0financial\xa0and\xa0business/cost analyses so as\xa0to\xa0guide Management\xa0in\xa0decision making\xa0and\xa0performance monitoring.Forecasting\xa0and\xa0analysing costs\xa0of\xa0manufacturing processes, labor\xa0and\xa0inventory.To\xa0automate high level,\xa0top\xa0down, sets\xa0of\xa0analytics\xa0and\xa0dashboards\xa0to\xa0track outcomes.Creating dynamic\xa0financial\xa0dashboards for management view.Utilising analytics software\xa0to\xa0identify inefficiencies within the manufacturing operations.Helping management\xa0to\xa0make important decisions based on costs\xa0and\xa0benefits.Creating\xa0and\xa0managing budgets,\xa0and\xa0monitor spending.Conducting audits\xa0and\xa0collaborating with operations\xa0to\xa0optimize the various business processes\xa0and\xa0transactions.Monitor changes\xa0in\xa0processes or methods\xa0to\xa0calculate effects on overall costs.', 'Profile': '', 'Our ideal candidate:': 'Possesses a degree\xa0in\xa0Accountancy, Business Analytics, Data Science, Information Systems, Statistics, Industrial Engineering or other similar quantitative fields.3\xa0to\xa05\xa0years\xa0of\xa0prior experience\xa0in\xa0analytical fields / finance business processes,\xa0preferably\xa0in\xa0a semiconductor manufacturing environment.Knowledge\xa0of\xa0analytics software\xa0and\xa0process automation\xa0and\xa0preferably\xa0with prior experiences with cost control.Excellent analytical, problem-solving\xa0and\xa0logical thinking skills.Able\xa0to\xa0present a succinct\xa0and\xa0clear analysis suitable for Management\xa0communication.Able\xa0to\xa0work\xa0under time pressure with a high degree\xa0of\xa0accuracy & attention\xa0to\xa0details.Strong interpersonal\xa0and\xa0communication\xa0skills\xa0to\xa0work\xa0with colleagues from various levels\xa0and\xa0functions.Possess the ability\xa0to\xa0work\xa0independently, multitask\xa0and\xa0perform\xa0in\xa0a fast pace environment.Tableau.SQL.VBA.MATLAB, Python.Other analytics software (Power BI etc.).R programming.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, General/Cost Accounting', 'Registration No.': '199404407W', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Accounting / Audit / Tax Services'}, {'Company Overview': '\n\tSTMicroelectronics is a world leader in providing the semiconductor solutions that make a positive contribution to people’s lives, today and into the future.\xa0 Among the world’s largest semiconductor companies and a leading technology innovator: ~7,400 people working in R&D and product design, ~18,000 patents, ~ 9,600 patent families and ~ 550 new patent filings, employing ~46,000 employees worldwide in 11 main manufacturing sites, 80 sales & marketing offices in 35 countries and committing close to 20% in R&D.\n\t\n\t\n\t\tPeople are the foundation of ST and they drive our success. We believe there is a strong correlation between employee\'s commitment and business results. Our engaged employees will make ST even more successful. For this reason, ST has a solid infrastructure to manage the core processes related to people and, one of our top corporate priorities is "People". This corporate priority focuses on employee engagement and recognition, talent management, leadership development.\n\nOur HR Strategy\n\n\t\tOur Human Resources strategy aims to ensure the right level of hiring and retention, to match the company’s evolving requirements in terms of profiles, competencies and the dynamic integration of new people. At ST, we believe that the development of our people is the key factor for ensuring our long term success.\n\n\t\tOur Vision : Everywhere microelectronics make a positive contribution to people\'s lives, ST is there.\n\n\t\tOur Values :\n\nINTEGRITY: we conduct our business with the highest ethical standards, honor our commitments, deliver on our promises, are loyal and fair.\nPEOPLE: we behave with openness, trust and simplicity; ready to share our knowledge, encourage everyone’s contribution, develop people through empowerment, teamwork and training.\nEXCELLENCE: we strive for quality and customer satisfaction and create value for all our partners; we are flexible, encourage innovation, develop our competencies, seek responsibility and are accountable for our actions.'}, {'url': 'http://www.jobstreet.com.sg/en/job/business-data-analyst-operation-finance-controller-m-f-urgenthire-10143819?jobId=jobstreet-sg-job-10143819§ionRank=1092&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Research Scientist, - (Engineering) - (R00009510)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 30-Oct-22']}, {'Key Responsibilities:': 'Review, finalize and maintain ADRFI-2 Platform documents and specifications improving upon QA/QC processes and development milestone specifications and signing off Platform deliverables,.Review and improve upon Platform user interfaces, input/output formats and information content to ensure Platform’s ease of use from stakeholders’ perspectives..Review insurance data received from different ASEAN countries and enhancing data format/protocols for incorporation into the economic/loss databases residing on the Platform..Track Platform development and manage software coders engaged by ICRM to ensure compliance with Platform development specifications..Implement QA/QC practices and processes in all phases of ADRFI-2 Platform development and deployment..', 'Job Requirements:': '5+ years\xa0 of experience in a leadership role with the insurance related Platform development and deployment, including relevant exposure to cat risk modelling..M.Sc. in an engineering or science related field; B.Sc. holders may be considered for the more junior position if they have significant, relevant experience beyond the minimum required..Demonstrated 3+ years of experience in the capacity of leading a data/analytics Platform development team..Understanding and having previous work experience with risk modelling, risk assessment, and uncertainty quantification in exposure and loss data..High level of hands-on proficiency in data analysis, data mining and data manipulation software tools, as well as excellent knowledge of a GIS software required..Hands-on demonstrated experience and knowledge of relevant software skills preferred (e.g. SQL, GIS, Matlab, R, Python)..A team player with a high-degree of self-motivation..Highly organized with strong analytical organizational skills necessary for project management, and communicating effectively with management and project teams.\xa0.Excellent written and verbal skills, as evidenced by technical writings and presentations at meetings..The Ideal candidate would have developed data products or components in multiple capacities in his/her career..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-engineering-r00009510-10070336?jobId=jobstreet-sg-job-10070336§ionRank=1094&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Framework Engineer #JobsThatMatter #Seekbetter #UrgentHire'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Description': 'You can join our mission to make a real difference through rapid solution development, turning measurement science IP into killer apps, on a hardware/OS agnostic, modern C++ foundation, delivered into an always-on, everywhere available, app store ecosystem..Being part of the software development team, you will\xa0work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems. You will also investigate new technologies and applications and apply modern software engineering practices such as design reviews, code review, unit testing and usability testing..', 'Responsibilities': 'Leads the design and implementation of Keysight’s analytics software..Responsible for both software and system design, as well as implementation in collaboration with our team of software engineers..Define and design the technical methodology to implement policies, guidelines, tools, metrics, and standards for managing metadata.Ensure data quality and integrity..Works closely with the team members and architect to create/ manage products and establish best practices..', 'Qualifications': 'Bachelor’s degree in Computer Science, Computer Engineering or a software related discipline, from an accredited college or\xa0university.Experience working with product development/engineering and product management.2+\xa0years\xa0in Big Data (Hadoop, HBase, Hive, Scala),2+\xa0years\xa0in Spark development, Sqoop, Flume, Kafka, nifi and Python.Experience in design, implementation, and deployment of high volume, highly available, cloud-based systems..Must have experience with creating web services that can run in a high availability Cloud environment that can easily be monitored.Must have hands on experience in Java, spring, microservices, REST API, spring Boot, Scala, Hadoop, Spark, Kafka, Postgres..Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK, Docker, Kubernetes..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..Proven success working in a team-oriented environment and demonstrated problem solving skills..Must have an ability to identify, formulate, and solve engineering problems.Activeness in Technical Communities.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-framework-engineer-jobsthatmatter-seekbetter-urgenthire-10139393?jobId=jobstreet-sg-job-10139393§ionRank=1095&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Data Analyst, SMB'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Responsibilities': [], 'About TikTok': 'Responsible for building an effective data tracking workflow for a Sales team, monitoring progress and finding problems in a timely manner;.Responsible for maintaining the data integrity on data warehouse and developing dashboards and reports according to business needs.Tracking and collecting market and industry information, and monitoring and analysing business-related products.Tracking and analysing advertising data, drawing actionable insights for market growth and optimisation.Working and collaborating with a cross functional team that includes Sales, Customer Solutions, Product and Marketing.', 'Qualifications': 'Bachelor degree or above, major in mathematics, statistics and business analysis is preferred.Min 3 years of data analysis work experience, proficient in Hive/SQL, Excel, Python, or R, and other related BI tools.Interest in product analytics, data pipelines, and data transformation.Strong business acumen and learning ability.Driven, motivated and have a growth mindset.Able to thrive in a fast-moving environment and deal with ambiguity.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-smb-10130418?jobId=jobstreet-sg-job-10130418§ionRank=1096&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Assistant Manager (Data Scientist), AIO Innovation Office (3 years contract)'}, {'company_name': 'National University Health System'}, {'small_section': ['Singapore', 'Posted on 14-Oct-22']}, {':': 'Research and develop machine learning models in various clinical areas such as clinical notes, medical images, and patients’ data.Develop, train and test AI models in the local medical domain.Work with the team to design and architect the workflow of the data and algorithms including data input, output and storage between various health IT systems.Lead in the gathering of requirements and data by working and coordinating with clinicians and other relevant internal and external stakeholders.Work with the team to develop and deploy necessary AI models for NUHS in hybrid cloud environment.Document clearly explaining how the algorithms have been implemented, verified and validated.Lead project to deliver AI related research and development requirement to meet the business need.Minimum Bachelor’s degree in computer science or related fields with strong statistical modelling and machine learning skills. Graduate degree in related fields is preferred.Hands-on experience in the development of end-to-end data analytics solutions and machine learning pipeline including data exploration/extraction/crawling, data processing, and model building.Hands-on experience on development of AI models in NLP is a plus.Proficient with programming in Python and AI related frameworks such as Scikit-Learn, TensorFlow, and PyTorch.Knowledge and experience in machine learning platform and services from cloud providers such as AWS, GCP, Azure.Familiarity with healthcare data, medical image is a plus.Experience in leading AI projects and virtual team.Strong problem-solving skills with the ability to work independently and in a team.Excellent written and verbal communication skills, including the ability to communicate technically and non-technically with ability to translate between the two.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200801778C', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Miscellaneous allowance, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\t\tAbout the National University Health System (NUHS)\n\n\n\tSpanning three acute hospitals, two community hospitals, three national centres, six polyclinics, three family medicine clinics, and three health science institutions, our unique and comprehensive ecosystem anchors NUHS as a leading academic health system in Singapore – driven by research and education.\n\t\n\t\tInspired by our patients and the population that we serve, our strong network of talents and resources across our institutions provide patient-centred care across the whole continuum - improving health and driving transformation from primary, tertiary to complex care. In close collaboration with our community partners, we aim to deliver “Incredible Care and Health, Together”!\n\t\n\tMembers of the NUHS:\n\t• National University Hospital\n\t• Ng Teng Fong General Hospital\n\t• Alexandra Hospital\n\t• Jurong Community Hospital\n\t• National University Polyclinics\n\t• National University Cancer Centre, Singapore\n\t• National University Heart Centre, Singapore\n\t• National University Centre for Oral Health, Singapore\n\t• NUS Yong Loo Lin School of Medicine\n\t• NUS Faculty of Dentistry\n\t• NUS Saw Swee Hock School of Public Health'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-assistant-manager-data-scientist-aio-innovation-office-3-years-contract-10065711?jobId=jobstreet-sg-job-10065711§ionRank=1097&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
:
[{'position': 'Computer Vision Research Scientist, Intelligent Creation'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': 'Conduct fundamental research on computer vision, deep learning and AI problems, including but not limited to the deep learning for 3D object/human modeling, graphics, object and human interaction recognition, computer vision, self-supervised learning, multi-modality learning;\xa0.Research on long-term research goals;.Publish impactful research work on top conferences and journals;.', 'Qualifications': 'Work experience in a university, industry, or government lab(s), in a role with primary emphasis on AI research;.Hold a Ph.D. degree in computer science, electrical engineering, statistics, applied mathematics, data science or other related disciplines;.First-author publications at peer-reviewed AI conferences (e.g. CVPR, ECCV, ICCV, NeurIPS, ICML, SIGGRAPH) and journals (e.g., TPAMI, JMLR).Knowledge in one of the differentiable programming frameworks, e.g., PyTorch, TensorFlow, JAX;.Track record of high impact research;.(Preferred) Received best paper or equivalent awards in the aforementioned conferences;.(Preferred) Winner of international academic competitions..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/computer-vision-research-scientist-intelligent-creation-10132740?jobId=jobstreet-sg-job-10132740§ionRank=1098&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'NLP Engr. - AI Lab - #JobsThatMatter #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': [], 'About The Team': 'Responsible for development of NLP technologies in our products.Participate in and support the incubation of new NLP technologies.Participate in research on NLP technologies.', 'Qualifications': "Bachelor's degree or above, majoring in Computer Science, or related fields.Rich experiences and strong skills in development of technologies in some of the following areas,.Natural language understanding.Natural language generation.Knowledge and reasoning.Recommendation and search.Reinforcement learning.Deep learning and representation learning.Machine Translation.Strong analytical and problem-solving skills..Strong computer science and coding skills (e.g. Python/Java/Go/C/C++);.Work and collaborate well with team members;.Senior candidates have the ability to organize and lead teams and projects.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-engr.-ai-lab-jobsthatmatter-immediate-10144094?jobId=jobstreet-sg-job-10144094§ionRank=1100&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Data Analyst - 1 year contract'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Central', 'SGD\xa06,000 - SGD\xa08,000', 'Posted on 18-Oct-22']}, {'Job Duties:': '', 'Our Requirements': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Temporary', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-analyst-1-year-contract-10079414?jobId=jobstreet-sg-job-10079414§ionRank=1101&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Job Duties:
[{'position': 'Research Associate, - (Artificial Intelligence) - (R00010348)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Job Description:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.', 'Job Requirements:': 'Research and Comprehensive Skills:.Coding Skills:.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-artificial-intelligence-r00010348-10070256?jobId=jobstreet-sg-job-10070256§ionRank=1102&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Project Officer, - (R00005373)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Project Officer (Aviation/Statistics/Data Science/Engineering Science in Statistics)': '', 'Key Responsibilities:': 'Produce a regional air traffic statistics report for ASEAN; to produce a coherent traffic simulation from submissions of flight plans from Member States, to report work in an international high-level meeting.Work on subprojects of a larger CONOPS study.Develop a plan.Conduct experiments using simulators.Analyse data.Liaise with the sponsor.Deliver project reports regarding operational feasibility assessment.', 'Job Requirements:': "Bachelor's in Aviation, Statistics, Data Science, Engineering / Science (in Statistics) field or any relevant fields.Experience in air traffic control.Working knowledge of air traffic manment, perspectives of airlines and ANSPs.Strong understanding of statistics and data analysis.Meticulous, independent and a good team player.Proficiency in English."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-r00005373-10067214?jobId=jobstreet-sg-job-10067214§ionRank=1103&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Project Officer (Aviation/Statistics/Data Science/Engineering Science in Statistics)
[{'position': 'Data Scientist - Model Training #JobsThatMatter #Urgent'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Vision': '', 'Responsibilities': 'Work with other data scientists in the project team to design the data solution and model training plans.Carry out research, report writing and communication with key stakeholders of each project.Use model training platform to do model training/ iteration/ testing, keep automating the training process by raising suggestions and demands to the model training platform.', 'Qualifications': "Bachelor's degree in statistics, sociology, mathematics, or a related field.At least 2 years of experience in data applications or data analysis.Ability to understand the need of enterprise customers, content creators and users, and a desire to drive solutions to their problems.Outstanding skill of communication, collaboration, project management, excellent team player, strong sense of responsibility.Self-driven, passionate about impacting business with data.Advanced English skill."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-model-training-jobsthatmatter-urgent-10103936?jobId=jobstreet-sg-job-10103936§ionRank=1104&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Vision
[{'position': 'Solution Lead, Machine Learning, Google Cloud #Urgent'}, {'company_name': 'Google Inc.'}, {'small_section': ['Singapore', 'Posted on 20-Oct-22']}, {'Minimum qualifications:': "Bachelor's degree or equivalent practical experience..10 years of experience with big data, machine learning, and numerical programming frameworks (e.g TensorFlow, Pytorch, Numpy)..Experience in virtualization or cloud native architectures in a customer-facing or support role..", 'Preferred qualifications:': "Master's degree in Computer Science, Engineering, or Mathematics..Experience building machine learning solutions and leveraging specific machine learning architectures (e.g., deep learning, LSTM, convolutional networks, etc.)..Experience architecting and developing software or infrastructure for scalable, distributed systems..Ability to learn quickly, understand, and work with emerging technologies, methodologies, and solutions in the cloud/IT technology space..Ability to take on multiple technical programs with executive management stakeholders and excellent organizational and analytical skills..Identify and qualify business opportunities, understand key customer technical objections, and develop the strategy to resolve technical blockers..Provide in-depth machine learning expertise to support the technical relationship with Google’s customers, including product and solution briefings and proof-of-concept work. Partner directly with Product Management to prioritize solutions impacting customer adoption to Google Cloud..Work directly with customers to demonstrate and prototype Google Cloud product integrations in customer/partner environments..Recommend integration strategies, enterprise architectures, platforms, and application infrastructure needed to successfully implement a complete solution using best practices on Google Cloud..Lead and drive strategic AI programs across the APAC Data Analytics and AI practice.."}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200817984R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Sports (e.g. Gym), Vision, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\n\t\tGoogle's innovative search technologies connect millions of people around the world with information every day. Founded in 1998 by Stanford Ph.D. students Larry Page and Sergey Brin, Google today is a top web property in all major global markets. Google's targeted advertising program, which is the largest and fastest growing in the industry, provides businesses of all sizes with measurable results, while enhancing the overall web experience for users. Google is headquartered in Silicon Valley with offices throughout North America, Europe, and Asia.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/solution-lead-machine-learning-google-cloud-urgent-10086003?jobId=jobstreet-sg-job-10086003§ionRank=1105&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Minimum qualifications:
[{'position': 'Research Fellow - (R00009833)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Job Responsibilities': 'Coordinate the project execution and communication among the collaborating parties.Work synergistically with PI and Co-I in experimental designs, conducting experiments, troubleshooting and data analysis.Develop sorbent materials for CO2 capture from real combustion flue gas.Scale up the production of sorbent materials for CO2 capture from real combustion flue gas.Manage the day-to-day operation of the reactor apparatus.Procure chemicals, consumables and research equipment.Write and publish research papers.Effectively communicate research findings to collaborators, funding agencies and the scientific community.Provide training to research associate/assistant on the relevant skills for the proposed project.Summarise the findings in this project and produce the progress reports, final report and scientific recommendations.', 'Job Requirements': 'Ph.D. degree in Chemical Engineering, Environmental Engineering, Materials Science, or a relevant field.Experience in developing CO2 sorbents, especially in developing calcium-based CO2 sorbents to be used in circulating fluidized beds.Extensive knowledge in treatment and reutilisation incineration ashes is desired.Good record of peer-reviewed papers is advantageous.Scientific articles, proposals and reports writing skill is required.Good interpersonal skills.Good English writing and communication skills.Excellent teamwork awareness.Productive, hard-working and dedicate to the completion of any task assigned.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Chemical Engineering', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-r00009833-10071564?jobId=jobstreet-sg-job-10071564§ionRank=1106&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Scientist - Model Training - #JobsThatMatter #WorkNow'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Vision': '', 'Responsibilities': '', 'Qualifications': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-model-training-jobsthatmatter-worknow-10103754?jobId=jobstreet-sg-job-10103754§ionRank=1107&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Vision
[{'position': 'Research Fellow, (Artificial Intelligence) (R00008258)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Job Responsibilities:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Lead a team of junior researchers, e.g., PhD students and Research Assistant, to help with the vision and data analytics tasks.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly..Prepare and publish research papers on top-tier conferences and journals.Help prepare the proposal and progress report.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': '', 'Coding Skills:': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-r00008258-10072589?jobId=jobstreet-sg-job-10072589§ionRank=1109&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Fellow (Computer Science) (R00010860)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:\xa0': 'Preprocess real brain imaging data for further analytical tasks;.Perform literature review and background study on graph analytics for brain network analysis;.Design novel and effective Data Mining & Machine Learning techniques (e.g., GNN-based models) for brain network analysis, develop/implement prototypes of the solutions, and validate their effectiveness empirically;.Publish the research work in top-tier research venues..', 'Job Requirements:\xa0': 'Possess PhD degree in Computer Science, or a related discipline with a focus on Machine Learning, Data Mining, or Statistics..Experiences in designing and developing graph analytics and/or brain network analysis technologies, in particular in GNN models..Good programming skills in e.g., Python, Matlab, C++, etc..Good interpersonal skills..Excellent teamwork awareness..Good communication and writing in English..Strong research experience will be a plus..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-r00010860-10051356?jobId=jobstreet-sg-job-10051356§ionRank=1110&token=0~ed05c7cd-fdd5-43e4-8166-e452ba5beb9b&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Operation Engineer ( Linux , Azure , SQL , COTS , Fresh Welcome )'}, {'company_name': 'TRUST RECRUIT PTE. LTD.'}, {'small_section': ['Central', 'SGD\xa03,000 - SGD\xa05,000', 'Posted on 29-Oct-22']}, {'Job Description:': 'Be part of a team to build and maintain data systems or pipelines..Perform setup, installation, configuration, troubleshooting and/or upgrade for COTS products..Develop or implement ways to improve data warehouses, data lakes or equivalent platforms..Involve in the creation of documentations e.g. design documents, troubleshooting guides etc..', 'Requirements:': "Diploma/Degree in Computer Engineering/Computer.Preferably 1 - 4 years' of working experience in related fields..Science/Information Technology or related technical discipline.Knowledge and/or experience in data management or data engineering.Experience with Linux commands and shell script.Knowledge and/or experience in relational (including SQL) or NoSQL database (e.g. document, graph).Knowledge and/or experience in one or more of the following will be an advantage:.Data / Search / Automation platforms such as Hadoop, Elasticsearch, Ansible respectively.Data integration tools such as Talend, DataStage, Denodo.Programming languages such as Python, Spark.Microsoft Azure Cloud services such as Azure Data Factory, Azure Synapse Analytics.Analytics platforms such as Databricks, Dataiku, Data Robot.Good problem-solving skills.Able to work independently and as a team.", 'HOW TO APPLY:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201935022Z', 'EA No.': '19C9950', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '5 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tTrust Recruit is Singapore’s leading relationship-based human resource and recruitment firm. With more than 20 years of collective consulting experience, we provide personalized workforce solutions for our corporate clients, ranging from multinational corporations to the public sector, as well as small and medium enterprises.\n\n\n\tAt Trust Recruit, integrity and reliability permeates every level of our recruitment process. TRUST is our currency of interactions; be it with our valued clients, talented job-seekers or our own employees. Through our premium staffing services, we are committed to connecting and developing quality relationships between candidates and companies.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-operation-engineer-linux-azure-sql-cots-fresh-welcome-10114730?jobId=jobstreet-sg-job-10114730§ionRank=1112&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Data Engr., - Growth #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'You will:': 'Build data pipelines to portray business status, based on a deep understanding of our fast changing business and data-driven approach;.Extract information and signals from a broad range of data and build hierarchies to accomplish analytical and mining goals for “Packaged Business Capability” such as user-growth, gaming and searching;.Keep improving the integrity of data pipelines to provide a comprehensive data service..', 'Qualifications': "Bachelor's degree in Computer Science, Statistic, Data Science or a related field;.Skilled in SQL and additional object-oriented programming language (e.g. Scala, Java, or Python);.Experience in issue tracking and problem solving on data pipelines;.Fast business understanding and collaborative in teamwork.."}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engr.-growth-immediate-10143958?jobId=jobstreet-sg-job-10143958§ionRank=1113&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Assistant, - (Operations Management, Sharing Economy), R00010315'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Responsibilities': 'Support the PT in research efforts.Conduct literature surveys and write reports.Collect data, assist in data analysis and reporting of results.Data entry, data cleanup, and edit write-ups.Model assigned research problems and publish journal papers.', 'Job Requirements': 'Bachelor or Master degree in business analytics, operations research, computer science, mathematics, or related areas.Ability to conduct and write literature reviews and research reports.Meticulous with good programming skills, especially Python, R, or Matlab programming skills.Strong written and communication skills in English.Candidate with research experience in inventory management, sharing economy are preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-operations-management-sharing-economy-r00010315-10053719?jobId=jobstreet-sg-job-10053719§ionRank=1114&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow, (Computer Science/Software Engineering), (R00009464)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 28-Oct-22']}, {'Key Responsibilities:': 'Responsible for conducting research on trustworthy and privacy-preserving deep learning algorithms and systems development and implementation.Responsible for conducting on deep learning IP protection with watermarking and fingerprinting.Responsible for writing research papers based on research results.', 'Job Requirements:': 'PhD degree in Computer Science, Software Engineering, Engineering, Mathematics, or related discipline.Research experience in cyber security, applied cryptography, artificial intelligence, and related areas.Publication record in top-tier venue related to computer science, security, networking and cryptography is a plus.Excellent communication and writing skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-software-engineering-r00009464-10060451?jobId=jobstreet-sg-job-10060451§ionRank=1115&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Research Scientist in Centre for Research in Child Development'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 29-Oct-22']}, {'Requirements': '\xa0High quality publications (please provide samples and information on the quality and impact of your work based on citations and ranking of journal publications).\xa0Planning and writing research projects that are funded through competitive peer-reviewed funding processes.\xa0Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences).Proficiency in the design and testing of instruments is desirable.Excellent interpersonal and communication skills (spoken and written English).Ability to work collaboratively within a team environment..', 'Responsibilities': 'Mentor junior faculty and research staff in CRCD; and.Supervise students by research and/or dissertation (i.e. supervise MA/MSc students and / or co-supervise EdD students)..', 'Application': 'A cover letter addressing how you meet the requirements of this position.A resume including a publication list, names of three referees and your desired starting date of employment.1 to 3 of your best publications.Research statement indicating your research interests.Any other documents that demonstrate your qualifications.Please indicate the position number (CRCD RS/SRS) in your application..'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-in-centre-for-research-in-child-development-10053298?jobId=jobstreet-sg-job-10053298§ionRank=1116&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Requirements
[{'position': 'Research Fellow (Air Traffic Management/Machine Learning) (R00005121)-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Undertake research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data mining, doing analytics, and building high quality strategic planning system for future for Air Traffic Management systems.Provide expertise on algorithmic concepts for the broader applied analytics of ATM and inspire the adoption of advanced analytics and data science across the entire breadth of ATM system..', 'Job Requirements:': 'PhD Degree in Computer Science/Aerospace Eng/Operation Research.Good programming skill (Python / MATLAB / C++).Good English writing and communication skills.Independent and team player.Good publication records.Demonstrated relevant experience in Artificial Intelligence / Machine Learning.Publication track record in peer-reviewed and reputed journals/conferences related to Artificial Intelligence / Machine Learning / AI&ML applied to ATM.Hands-on experience in using machine learning libraries such as Scikit-learn, etc..Hands-on experience in using deep learning library (either TensorFlow or PyTorch).', 'Experiences in at least two of the following areas is a strong plus:': 'Tempo-spatial data mining and analysis,.Time series analysis and prediction,.Generative models.Reinforcement Learning and/or Inverse Reinforcement Learning.Probabilistic Modeling / Bayesian Machine Learning.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-air-traffic-management-machine-learning-r00005121-jobsthatmatter-10136821?jobId=jobstreet-sg-job-10136821§ionRank=1117&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Machine Learning Engineer Intern (AI Lab) - 2022'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities': [], 'About the NLP team': 'Develop NLP and ML technologies in products;.Participate in and support the incubation of new NLP and ML technologies;.Participate in research on NLP and ML technologies..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Computer Science, Electrical and Electronics Engineering, or Statistics with specialization in machine learning, data mining, natural language processing, or other related disciplines;.Familiar with programming languages such as C/C++ and Python, and good programming skills;.', 'Preferred Qualifications': 'Experience in building machine learning and/or application systems;.Solid machine learning background and familiarity with standard machine learning techniques;.Scientific thinking and research ability;.Solid software development skills..'}, {'Career Level': 'Entry Level', 'Qualification': "Primary/Secondary School/O Level, Higher Secondary/Pre-U/'A' Level, Diploma, Advanced/Higher/Graduate Diploma", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-intern-ai-lab-2022-10122772?jobId=jobstreet-sg-job-10122772§ionRank=1118&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Scientist (Speech and Speaker Recognition) (R00011003)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted 4 hours ago']}, {'Job Responsibilities': 'Conducting research speaker recognition, verification and profiling (such as speaker accent recognition, age height estimation, etc.).Conducting research on detection and classification of acoustic scene and events.Develop speaker diarization systems on various settings.Publish papers on high ranking conferences/journals.', 'Job Requirements': 'PhD degree from high recognised Universities/Institutions.Experience with PyTorch, and/or End-to-end speech recognition, speaker verification frameworks.Experience with standard deep learning architectures such as LSTM, CNN, Transformer..Strong in programming languages, i.e. C/C++, Java, scripting languages as python, perl, bash/shell.Experience in working with Linux OS environment and high-performance computing cluster.Have research experience and publications in ICASSP, Interspeech is preferred..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-speech-and-speaker-recognition-r00011003-10147426?jobId=jobstreet-sg-job-10147426§ionRank=1119&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Senior Scientist (Advanced Process Module - Far BEOL Module), IME'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'His or her main roles and responsibilities include:': 'Understand, design, and develop bonding process capabilities, including vacuum bonding, metal-metal bonding, fusion bonding, hybrid bonding for various MEMS and advanced packaging applications..Understand the bonding requirements of various projects and deliver BKM processes accordingly..Providing guidance and mentorship to junior staff..Prepare competitive grant research project proposals and lead execution of these projects..Engage industry partners to align and develop the building blocks required for next generations advanced packaging platforms.File patents/know-hows on new development activities..Publish research findings in prestigious journals, conferences..', 'Job Requirement:': 'PhD with specialization in Electronic / Microelectronics / Material Engineering / Material Science/ Chemistry / Physics..8-10 years experience in semiconductor wafer processing with expertise in wafer-to-wafer and chip-to-wafer related bonding processes.Good fundamental knowledge of various bonding processes and mechanisms (vacuum bonding, metal-metal bonding, fusion bonding, hybrid bonding).Good Knowledge on MEMS or advanced packaging technology platforms..Good analytical, communication and presentation skills..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-scientist-advanced-process-module-far-beol-module-ime-10125520?jobId=jobstreet-sg-job-10125520§ionRank=1120&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
His or her main roles and responsibilities include:
[{'position': 'Principal Research Scientist (Engineering) (R00003838) #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Development of an IOT product line.Responsible for the offer plan and technical/economical decisions.D elivering new IOT solutions and communication architectures for energy utilities.', 'Job Requirements:': 'Master’s or PhD in engineering.Know-How on IoT applications for Energy Efficiency and Grid Applications.Project manment with PMP Certification.Knowledge in Artificial Intelligence applications, IOT platforms and communication.Experience in implementation of an open IoT platform.Cloud security experience.Proficient with SaaS, PaaS, and Openstack/Opensource technologies.Thought leader, and/or certicitation in modern IT/developer operations.Minimum 15 of experience.CWNA or relevant certification is advantous.'}, {'Career Level': 'Senior Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '15 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-research-scientist-engineering-r00003838-jobsthatmatter-10138124?jobId=jobstreet-sg-job-10138124§ionRank=1121&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Product Data Management Engineer'}, {'company_name': 'RecruitPlus Consulting Pte Ltd'}, {'small_section': ['West', 'SGD\xa03,500 - SGD\xa05,000', 'Posted on 28-Oct-22']}, {'Setup': '', 'maintain': '', 'update work centers': '', 'SAP database': '', 'Data Management.': 'Experience user in tools such as MS Access, Project, SQL server, VBA, and decision tools..Good team player and able to collaborate effectively with all levels in the organization..Strong analytical and systematic approach to problem solving..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Industrial Engineering', 'Registration No.': '200411167N', 'EA No.': '04C4142', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '19 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tRecruitPlus Consulting is an award-winning mid-career professional placement and recruitment specialist. Since 2004, we’ve honed a knack for recruiting the best and brightest for some of the most exciting organisations in Singapore. Companies that truly believe that the key to success lies in investing in the right people.\n\n\t\tAs a sectorial recruiting expert, we are the ultimate go-to guys in Human Resource services. Ones with a respected reputation. And an enviable portfolio of satisfied, successful, and happy stakeholders – both employers and jobseekers alike.\n\n\n\n\t\tPlease note that your response to this advertisement and communications with us pursuant to this advertisement will constitute informed consent to the collection, use and/or disclosure of personal data by RecruitPlus for the purpose of carrying out its business, in compliance with the relevant provisions of the Personal Data Protection Act 2012.\xa0\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/product-data-management-engineer-10112757?jobId=jobstreet-sg-job-10112757§ionRank=1122&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Setup
[{'position': 'Backend Software Engr. - Machine Learning Systems #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'Join the Dynamic Team!': 'Develop and maintain the machine learning system and platform, including training, inference, pipeline orchestration, to support core products;.Build the large scale systems for ML integrating with GPU, RDMA network and storage system;.Enrich the end to end machine learning experience, and provide machine learning resources for all the products of TikTok and its affiliates..', 'Qualifications': '', 'To be successful in this role, you have': "Bachelor's degree or above, majoring in Computer Science, Engineering or related fields..Programming experience with at least one modern language such as C/C++, Golang, Python.Experience contributing to the large scale distributed systems, multi-tenant systems (architecture, reliability and scaling).Experience contributing to Kubernetes / Kubeflow / YARN / Mesos orchestrations.Strong analytical abilities and problem solving.Good communication, self-motivation, engineering practice, documentation, etc..", 'Preferred': 'Familiar with GPU architecture, GPU cluster.Familiar with at least one deep learning framework (TensorFlow, PyTorch, MXNet, or other).Familiar with the back-end technologies, such as Django / Flask, etc..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/backend-software-engr.-machine-learning-systems-immediate-10143860?jobId=jobstreet-sg-job-10143860§ionRank=1123&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Scientist 1 #JobsThatMatter #UrgentHire'}, {'company_name': 'Illumina Singapore Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Position Summary': '', 'Job Responsibilities': 'Assist with identifying opportunity for innovation and product uses.Work alongside commercial teams within Illumina to ensure a positive customer experience.Assist with building up relationships with KOLs and triage needs of potential customers.Design workflows and work packages to deliver proposed solutions to customers.Work across a broad spectrum of the NGS process, e.g. library prep, automation, LIMS and downstream analysis.Liaise with Product Development teams to drive changes and features for new or in development products.Occasional need to travel to customer sites for engagement and support.', 'Technical requirements': 'PhD degree or equivalent in related field.1-3 years in next-generation sequencing technology.Excellent knowledge of relevant areas of NGS, library prep, automation, LIMS and downstream analysis.Knowledge of high throughput processes and process management.Experience in genomics preferable.Innovative and able to think tactically and strategically at many levels.Able to multi-task effectively and interact with different teams.Excellent verbal and written communication, analytical and interpersonal skills.Ability to communicate across many levels and disciplines of the organization as well with external partners and stakeholders.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200310311H', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research'}, {'Company Overview': '\n\tAt Illumina, we’re making genomics more useful for all, for a better understanding of human health. By shining a brighter light on genomics, together we can harness the power to build a stronger world.\n\tFrom our earliest startup days, we’ve always aspired to transform human health. Each new product is designed to empower our community to explore DNA at an entirely new scale, and discover answers to life’s biggest questions. Like what causes a cancer cell to mutate? What’s the origin of a puzzling disease? Is it possible to prevent the next outbreak? Or safeguard the world’s food supply? These challenges inspire us to push the boundaries of what’s possible, and connect more people to the technology and insights changing the world.\n\tToday we’re a global leader in genomics—an industry at the intersection of biology and technology. We’re passionate about helping our customers read and understand genetic variations through our increasingly accessible, simple solutions. The advances our solutions support are triggering a fundamental shift in healthcare and beyond. Medicine will continue to become more preventive and more precise. We will be healthier, longer. And we’ve only just begun.'}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-1-jobsthatmatter-urgenthire-10144504?jobId=jobstreet-sg-job-10144504§ionRank=1124&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Position Summary
[{'position': 'Senior Research Scientist in Science of Learning, [R00007103]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Overview': 'Cognitive, Emotional and Social Learning (CESD).\xa0Lifelong Learning, Cognition and Wellbeing (LLCW).Learning Sciences & Innovation (LS&I).Schools, Leadership and System Studies (SLSS).Teacher Professionalism and Learning (TPAL).', 'Position Summary': '', 'Requirements': 'PhD in a relevant discipline (i.e. educational neuroscience, data science, neuropsychology, cognitive science, learning sciences, and hard sciences such as chemistry, biology, physics).Minimum 5 years postdoctoral experience.Experience in cutting edge scientificresearchmethodologies and addressing intractable challenges in education.Demonstrable track record in the following areas:.Research leadership in a research centre or in a large competitive, peer-reviewed research grant.High quality publications (i.e. quality and impact of academic publisher, citations and ranking of journal publications etc.).Writing of or contribution towards research proposals which are submitted for peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences).Supervision of undergraduate and/or graduate students.Attainment of funding through a competitive peer-reviewed process.Excellent interpersonal and communication skills; and.Experience engaging with diverse stakeholders including Government stakeholders, Community Organizations and the Public.', 'Responsibilities': 'Take a leading role in the further development of SoL research programmes and in seeking and pursuing appropriate external funding in the area of SoL.Apply for and conduct quality research and work collaboratively to charge new directions for education, teaching and learning informed by scientific investigation and analyses.Disseminate the outcomes of the research including in peer-reviewed academic publications of international standing.Participate fully in the wider SoL research and service activities to OER/NIE.Take responsibility for, manage and conduct administrative and management tasks associated with SoL..Mentor junior faculty and research staff.Supervise students by research and/or dissertation (i.e. supervise MA / MSc students and / or co-supervise EdD.students)..', 'Application': 'Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements.Research statement indicating your research interests and achievements.1 to 3 of your best publications.Name of 3 referees.Cover letter addressing how you meet the requirements of this position (optional).Any other documents that demonstrate your qualifications.Please indicate the position code (OER RS/SRS: SoL) in your application..', 'Closing date': '', 'Review of applicants will continue until suitable candidates are found.': '', 'Other Information': '', 'Please note that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology, Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-in-science-of-learning-%5Br00007103%5D-10054829?jobId=jobstreet-sg-job-10054829§ionRank=1125&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Overview
[{'position': 'Research Fellow (Machine Learning for Geothermal Energy Exploration) (R00010122) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Develop modern machine learning techniques for seismic data analysis.Deploy seismic sensors and collect seismic data at possible geothermal sites in Singapore.Use advanced inversion theory to interpret real seismic reflection data.Publish scientific results in high-profile journals.', 'Job Requirements': 'PhD in mathematics, computer sciences, physics, geophysics, engineering or equivalent.Evidence of innovation and/or high quality publications in the area of computational mathematics, computer sciences, applied mathematics or geophysics.Enthusiasm, good communication skills, and able to conduct independent research.Experiences with seismic inversions and massive data processing are preferred.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-for-geothermal-energy-exploration-r00010122-urgenthire-10137464?jobId=jobstreet-sg-job-10137464§ionRank=1126&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Open Rank Tenured/Tenure Track Faculty Position in Information Systems R00010347 #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'About the School:': '', 'About the Division:': '', 'Requirements:': 'Candidates for the Assistant Professor position should have some record of publication in top-tier journal, or evidence of a strong pipeline of papers under review at top-tier journals..Candidates for the Associate Professor position should have an established record of excellence in research and teaching..Candidates for the Full Professor position must demonstrate significant achievements in research and teaching and, in particular, the leadership impact of these scholastic achievements. They must have made substantial contributions to their profession and have international visibility..', 'Key Benefits:': '', 'Application:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/open-rank-tenured-tenure-track-faculty-position-in-information-systems-r00010347-urgent-10053064?jobId=jobstreet-sg-job-10053064§ionRank=1128&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
About the School:
[{'position': 'Senior Research Scientist in Centre for Research in Child Development (OER) [NIE] (R00004719)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Overview': '', 'Requirements': '', 'Responsibilities': '', 'Application': 'A cover letter addressing how you meet the requirements of this position.A resume including a publication list, names of three referees and your desired starting date of employment.1 to 3 of your best publications\xa0.Research statement indicating your research interests.Any other documents that demonstrate your qualifications.Please indicate the position number (CRCD RS/SRS) in your application..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-in-centre-for-research-in-child-development-oer-%5Bnie%5D-r00004719-10046459?jobId=jobstreet-sg-job-10046459§ionRank=1129&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Overview
[{'position': 'Group Audit – Regional Data Analyst, AVP-#JobsThatMatter'}, {'company_name': 'Deutsche Bank AG'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Details of the Division and Team:': '', 'What we will offer you:': '', 'You can expect:': 'Flexible benefits plan including virtual doctor consultation services.Comprehensive leave benefits.Gender Neutral Parental Leave.Flexible working arrangements.25 days\xa0of annual paid leave, plus public holiday & Flexible Working Arrangement.', 'Your key responsibilities:': 'Evaluate data analytics requests and work collaboratively with auditors, data owners and developers to deliver working solutions and analytics in an agile and iterative manner..Identify data analytics opportunities and use cases, liaise with audit / investigation teams, and perform any advanced or specialized analytics work..Identify automation opportunities and develop solutions that simplify audit processes and make Group Audit more efficient..Driving innovation across Group Audit, leveraging the experience gained and data collected from successful data analytics projects..Promote the adoption and integration of data science into the Group Audit organization and inspire Group Audit colleagues by sharing background on successful adoption..Apply highest quality standards as your solutions will become an integral part of audit execution processes..Develop and present success stories to Group Audit management and internal stakeholders..', 'Your skills and experience:': 'A minimum of 3 years’ experience in a Data Analytics function within a financial institution.Highly proficient with data analytic standards, methods and algorithms, including CI/CD cycle, SDLC/Continuous delivery part of Operation & Maintenance tasks.Practical coding skills in Python, React/JS. SQL, SQL and supporting infrastructure (e.g. ML / NLP libraries).Highly proficient in data analytics tools and applications such as Tableau, Power Query, and Celonis.Working knowledge in data science, big data tools and infrastructural components – GCP/ Hadoop / PySpark / Jupyter Data Preparation (SQL, HQL, ETL, Data Warehouse architecture, OLAP).Experience in applying data science techniques (advanced analytics, machine learning, statistics, text analysis, NLP, etc.).Able to solve real world problems as well as developing data analytics and automation solutions within the operational requirements of a global bank..Working knowledge of audit and audit functions within a financial institution.Goal oriented and structured thinking with effective organizational skills as well as excellent communication skills with the ability to convey complex information in an understandable manner..A creative technologist passionate about data and information with an intrinsic motivation and curious to learn new technologies and frameworks to adopt data analytics for new ways of auditing..Master or bachelor’s degree (or equivalent) from an accredited college or university (or equivalent) in a quantitative field (Data Science, Mathematics, Statistics, Physics, Engineering, Computer Science, Economics, etc.) or equivalent work experience..\xa0.', 'How we’ll support you:': 'Flexible working to assist you balance your personal priorities.Coaching and support from experts in your team.A culture of continuous learning to aid progression.A range of flexible benefits that you can tailor to suit your needs.Training and development to help you excel in your career.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Audit & Taxation', 'Registration No.': 'S72FC2238G', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\nAbout Deutsche Bank\n\n\tAs a leading global bank with roots in Germany, we’re driving change and innovation in the industry – championing integrity, sustainable performance and innovation with our clients, and redefining our culture and relationships with each other. With operations in over 70 countries, we encourage our people to think for themselves and reward integrity. Our large but focused footprint gives us a strong position in Europe plus a significant presence in the Americas and Asia Pacific. We offer clients commercial and investment banking, retail banking and transaction banking as well as ground-breaking asset and wealth management products and services. So if you’re talented, collaborative and curious about building an exciting career in finance, you’re exactly the type of person who might succeed in our organisation.\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/group-audit-regional-data-analyst-avp-jobsthatmatter-10122973?jobId=jobstreet-sg-job-10122973§ionRank=1130&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Details of the Division and Team:
[{'position': 'Project Officer - [Machine Learning] - [R00008199] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Key Responsibilities:': 'Research on federated learning for industry 4.0.Implement deep learning algorithms.Collaborate with other team members for more efficient outcome delivery.Perform administrative works assigned by the PI like documentation, etc.', 'Job Requirements:': 'Bachelor or above in computer science/engineering or electrical/electronic engineering..Good programming ability with python.Experience with deep learning algorithms and frameworks, like TensorFlow and Pytorch.Ability to read and write research papers and technical reports.Fluent in English (written and spoken).'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-%5Bmachine-learning%5D-%5Br00008199%5D-jobsthatmatter-10062918?jobId=jobstreet-sg-job-10062918§ionRank=1133&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Engineer I (Computer Science/Computer Engineering/Electrical Engineering/Information System) (R00005775)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key Responsibilities:': 'Apply feature engineering to extract relevant features from the raw data.Utilize Deep Learning, Natural Language Processing, and Knowledge Graph for data analysis.Train, test, validate, and optimize the DL model.Build web application to demonstrate the AI model.Generate professional reports and publications of meaningful outcomes with novel insights.', 'Job Requirements:': 'Bachelor’s degree in Computer Science, Computer Engineering, Electrical Engineering, Information System or a related discipline.Familiar with Python and Node.js programming development under Linux.Familiar with basic data structures and algorithms, and proficient in object-oriented programming.Good programming habits and be familiar with git for team development.Good at summarizing, writing work documents in English and sharing technical reports in time as required.Strong sense of responsibility.Possess good communication skills and be driven by self-improvement.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-i-computer-science-computer-engineering-electrical-engineering-information-system-r00005775-10046529?jobId=jobstreet-sg-job-10046529§ionRank=1134&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Computer Vision Engineer #Worknow'}, {'company_name': 'Stellar Link Partners Pte Ltd'}, {'small_section': ['West', 'SGD\xa06,000 - SGD\xa09,500', 'Posted on 30-Oct-22']}, {'Your Key Responsibilities includes:': 'Contributing in all relevant domains from system integration to deployment of updates to clients.Leading the development and enhancement of new and existing products.Visualizing data acquired to identify features, differences in data distribution that could improve performance when deploying the model in the real world.\xa0Deploy machine vision models on edge devices after optimization to meet clients requirements.Analyzing errors of model and implementing strategies to overcome them.', '\xa0Requirements:': 'Good understanding in image classification, segmentation and feature extraction..', ' +65 9004 5401': '', 'Chan Chin How, Javier': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201622755N', 'EA No.': '21S0698', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '20 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tStellar Link Partners is a boutique search firm with an initial focus on IT, HR, Legal and assisting China-owned companies to start up/hire in Singapore.\xa0 The founding partners have a combination of more than 30 years of search/recruitment experience.\xa0 Stellar Link was borne out of our passion in what we do and the desire to create a place where like-minded people can come together to practice at the highest professional standards.\xa0 At Stellar Link, we believe the potential for greatness lies in all our us and we enjoy linking great talents to great opportunities.\xa0 Let us help you uncover your next talent.\xa0\n\n\t\tYou can find out more about us at https://stellar-link.com/\n\n\t\tStellar Link is part of the CGP Group of Companies.\n\n\n\tEA Licence number: 21S0698'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-computer-vision-engineer-worknow-10116438?jobId=jobstreet-sg-job-10116438§ionRank=1135&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Your Key Responsibilities includes:
[{'position': 'Research Fellow, (Signal Processing and Machine Learning) (R00003631)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Develop signal processing and machine learning algorithms and methods.Perform software/hardware implementation and empirical studies.Prepare reports and presentations.Conduct project presentations and seminars.Help to supervise graduate students and contribute to proposal writing.Assist the PI in various research admin tasks.', 'Job Requirements': 'Ph.D. in Electrical Engineering, Computer Science, Statistics or other related fields.Solid Mathematical skills.Background in graph signal processing, probability theory and statistical signal processing.Experience in implementing algorithms for machine learning and data analytics.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-signal-processing-and-machine-learning-r00003631-10046451?jobId=jobstreet-sg-job-10046451§ionRank=1136&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow, - [R00004943]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 29-Oct-22']}, {'Key Responsibilities:': 'Assist research project under the direction of Principal Investigator or senior research staff, and present significant progress towards the deliverables.Lead sub-projects and coordinate collaboration works.Participate in writing scientific publications and grants. Review and curation of literature.Collaborate with other team members and supervise junior members.Assist in general operation of laboratory including ordering supplies and maintenance.Train new laboratory personnel, students, and short-term visiting scientists.Comply with all laboratory safety standards and guidelines.', 'Job Requirements:': 'PhD in Chemistry, Materials Science, Biomedical Science and related fields with specialization in nanotechnology, nanofabrication, nanocharacterization, nanobiotechnology, nanobiosensors, and biomaterials.Experience on biochemistry, bioanalysis, single molecular detection, molecular cloning, protein engineering, membrane proteins.Experience on cleanroom fabrication, photolithography, electron-beam lithography, reactive ion etching, thin-film deposition, basic cell culture and fluorescence microscopy imaging are highly desired.Experience in immunostaining, cell transfection, live cell imaging, super-resolution microscopy, MATLAB, and membrane reconstruction are highly desired.Good track records with at least 1 first author scientific publication in reputable journals.Highly motivated and dedicated to the development of the project.Excellent laboratory, planning, and leadership skills.Ability to integrate well into a team of researchers with different backgrounds, and the ability to learn new techniques.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-%5Br00004943%5D-10066957?jobId=jobstreet-sg-job-10066957§ionRank=1137&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'VP, System Analyst - Data, Enterprise & Wholesale Bank Analytics'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'About UOB': '', 'About the Department': '', 'Technology and Operations ': '', 'Job Responsibilities': '', ' System Analyst': '', 'Enterprise & Wholesale Bank Analytics Team': '', 'Key responsibilities include:': 'Analyse user requirements and convert requirements to design documents.Develop system documentation to capture key design decisions.Communicate complex technical issues to business users in a language they understand.Create solution options to meet business requirements.Engage user to achieve concurrence on technology provided solution. Conduct review of solution documents along with Functional Business Analyst and Business Unit for sign-off.Create technical documents (functional/non-functional specification, design specification, training manual) for the solutions. Review interface design specifications created by development team.Perform design and development of applications according to change requests and project requirements.Participate in selection of product/tools via RFP/POC..Perform detailed estimation of projects and change requests.Review test strategy and functional test cases created by testing team\xa0.Monitor and manage risks /issues related to requirements and scope creep.Work with production support team members to conduct root cause analysis of issues, review new and existing code and/or perform unit testing.Continuously work to optimize the production run time of IT applications.Execute continuous service improvement and process improvement plans.', 'Job Requirements': '', 'Functional skillsets': 'Experience in Data Modeling, Data mapping for Data Warehouse and Data Marts solutions.Expertise in FSLDM / similar industry models and dimensional models.Financial Crime Analytics & Reporting – Transaction Monitoring, Customer Due Diligence, Payment Screening.Retail & Wholesale Data marts targeted at Digital engagement/ Acquisition/ profitability/ AUM/ Sales/ management\xa0.Expertise in design of role based fine grained access control.Data security solutions targeted at full life cycle of data\xa0.Designing cloud ready data solutions, Virtualization \xa0.', 'Technical skillsets': 'Hadoop (Cloudera).Teradata.AS400.UNIX.Informatica\xa0.', 'At least, 2 to 3 technical certifications in any of the below technologies:': 'Cloudera Hadoop distribution – Hive, Impala, Spark, Kudo, Kafka, Flume\xa0.Teradata – Bteq, GCFR, MDM.Informatica Data Integration – PC, IDR, BDM, MM, IDQ\xa0.Data modelling tools (Erwin).QlikSense\xa0.SAS.AS400.Language – SQL, Java, \xa0Python, Scala.Automation / scripting – CtrlM, Shell Scripting, Groovy\xa0.', 'Experience or certification in the below technologies will be an added advantage:': 'CI/CD software, Testing Tools - Jenkins, SonarQube.Data Analytics Tools - Qlik Sense.Version Control Tool - Aldon+LMe, CA Endeavor.Deployment Tool kit -Jenkins.Service or Incident Management (IcM) Tools - Remedy.Source Code Repository Tool - Bitbucket.Scheduling Tool - Control-M.Defect Management Tool - JIRA.Application Testing tool – QuerySurge.', 'Education': '', 'What will help you succeed in this role': 'Adopt an uncompromising attitude when it comes to quality and help raise bar of products and team members\xa0.Be a team player who communicates effectively and professionally with both internal and external customers\xa0.Identify ideas to improve system performance and impact availability.Embrace tackling and resolving complex technical design issues.Possess strong problem solving and decision-making skills while exercising good judgment.Strong analytical and problem-solving skills\xa0.Ability to work on multiple projects at a time\xa0.Be able to work under pressure and manage deadlines or unexpected changes in expectations or requirements.Good communication skills - ability to convey technical information to non-technical audience.Ability to understand the big picture\xa0.Ability to develop long lasting relationships with all levels\xa0.Deep understanding and experience in software development cycle, including Agile based rapid delivery.Collaborate with business and IT to analyse, elicit and review business requirements.Facilitate communication between vendor, project team, business stakeholders and internal IT team.Ability to work in a team distributed across multiple locations.', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/vp-system-analyst-data-enterprise-wholesale-bank-analytics-10055280?jobId=jobstreet-sg-job-10055280§ionRank=1138&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Senior Software Engineer (Data) #UrgentHire'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted 6 hours ago']}, {'Position Overview': '', 'Responsibilities:': 'Design and develop components of end to end Data Platform\xa0.Work with the team to make the Data Platform an efficient, robust and scalable platform.Enthusiastic and passionate member of a highly skilled and motivated agile development team\xa0.Contribute to a team culture that values quality, robustness, and scalability while fostering initiatives and innovation.', 'Minimum Qualifications:': 'BS or MS in computer science or a related field.Experience with Map Reduce.Experience with Hive and one relational DB.Strong problem solving skills.Strong communication skills.Ability to learn new technical skills.4+ years of experience with Big Data.Expert knowledge and experience in Hadoop 2.0 and its ecosystem.Expert programming skills in either Java, Scala or Python.Solid proficiency with Amazon Web Services.', 'Preferred Qualifications:': ''}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-software-engineer-data-urgenthire-10147132?jobId=jobstreet-sg-job-10147132§ionRank=1140&token=0~6773b4b7-f035-4d01-a6f9-ca4f1b2b904e&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Research Associate (Computer Science/Machine Learning) (R00009389)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Responsible for conducting research on the theory, methods, and application of machine learning techniques to develop AI for software security tools.Responsible for conducting the network interpretability for the decision making in software security.Responsible for writing high-quality research papers based on research results.', 'Job Requirements:': 'Master’s degree in Computer Science, Machine Learning, or other related areas.Strong knowledge and demonstrated ability in AI for security and software engineering.Familiarity with deep learning and different neural network architectures.Excellent communication and writing skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-machine-learning-r00009389-10051437?jobId=jobstreet-sg-job-10051437§ionRank=1142&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Scientist, Computing & Intelligence, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Research Scientists (Blockchain)': '', 'Requirement': 'PhD degree in Computer Science/Electrical & Electronics Engineering/Computer Engineering or equivalent..Experience in one or more areas of decentralized computing, such as Blockchain, Parallel and Distributed Computing, Cloud Computing, Edge Computing, Virtualization, Container, etc..Solid programming skills in Python, C/C++, Java, Javascript, GO, Node.JS and/or CUDA programming, Network programming, TensorFlow programming..R&D experience in Blockchain in industry and/or academia.Preferred knowledge and experience in one or more areas/topics of Blockchain, such as..Hyperledger Fabric, Tendermint, Ethereum, Bitcoin, IOTA, Quorum, Solana, etc.Theories of Blockchain and distributed ledger technology.Consensus protocol such as Proof of Work, Proof of Stake, Byzantine Fault Tolerance, etc,\xa0.Blockchain performance evaluation, analysis and optimization.Scalability improvement through Sharding.Smart contract and chain code.Cryptocurrency and tokenization.Blockchain layer 1 development.Blockchain layer 2 development.Web 3.0 and decentralized internet.Solving real-world problems with innovative application of Blockchain, such as carbon trading.Strong track record of research in Blockchain (e.g., publications in related conferences or journals)..Graduate with exceptional skill set and project experience are welcome to apply..', 'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-computing-intelligence-ihpc-10124204?jobId=jobstreet-sg-job-10124204§ionRank=1143&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Research Scientists (Blockchain)
[{'position': 'Assistant Director, Strategy Planning (DSAID) #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What you will be working on:': 'Responsible to lead the strategic planning for our DSAI capabilities and the relevant resource plans formulation, conceptualization of new initiatives for WOG to ensure progressive uplift of DSAI capabilities. This means charting out the strategy priorities and the implementation plans..Work closely with cross-functional teams to establish, formulate and monitor the DSAI programmes and initiatives and ensure they are in line with GovTech’s DSAI direction..Responsible to study and keep abreast of DSAI and related technological developments in the industry, leveraging on relevant research resources..Assess and advise senior stakeholders on the latest strategic and technological developments in DSAI, emerging information technology landscape, and innovative DSAI products and technologies that may drive changes in DSAI strategies and policies..Strategize and drive key partnerships with the DSAI ecosystem, as well as engage the industry and professional communities to augment GovTech’s DSAI capabilities..Benchmark WOG DSAI programmes, capabilities and performance against industry, international and leading institutions’ standards, best practices and norms.', 'What we are looking for:': 'Passion and love for data is paramount..Strong understanding of the different elements of Data Science & AI, and the general sense of the common tools and products associated with it..Possess strategic and critical thinking mindset, with strong ability to articulate concepts, strategies, issues and challenges with clear framing..Excellent written and presentation skills required..Strong leadership and management skills with proven stakeholder management experience..Project management experience will come in handy when charting out strategic plans that are well grounded..Bachelor degree in Computer Science, Information Systems, Engineering or equivalent..Minimum 8 years of relevant experience in strategic planning, data analytics and related domains..'}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Admin/Human Resources, Clerical/Administrative Support', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-director-strategy-planning-dsaid-jobsthatmatter-10052673?jobId=jobstreet-sg-job-10052673§ionRank=1144&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
What you will be working on:
[{'position': 'Business Data Analyst / Operation Finance Controller M/F #WorkNow #UrgentHire'}, {'company_name': 'STMicroelectronics Asia Pacific Pte Ltd (Lite ads)'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Job description': '', 'You will\xa0be\xa0involved in:': 'Leading\xa0in\xa0driving improvements in the quality\xa0and\xa0automation\xa0of\xa0financial\xa0and\xa0business/cost analyses so as\xa0to\xa0guide Management\xa0in\xa0decision making\xa0and\xa0performance monitoring.Forecasting\xa0and\xa0analysing costs\xa0of\xa0manufacturing processes, labor\xa0and\xa0inventory.To\xa0automate high level,\xa0top\xa0down, sets\xa0of\xa0analytics\xa0and\xa0dashboards\xa0to\xa0track outcomes.Creating dynamic\xa0financial\xa0dashboards for management view.Utilising analytics software\xa0to\xa0identify inefficiencies within the manufacturing operations.Helping management\xa0to\xa0make important decisions based on costs\xa0and\xa0benefits.Creating\xa0and\xa0managing budgets,\xa0and\xa0monitor spending.Conducting audits\xa0and\xa0collaborating with operations\xa0to\xa0optimize the various business processes\xa0and\xa0transactions.Monitor changes\xa0in\xa0processes or methods\xa0to\xa0calculate effects on overall costs.', 'Profile': '', 'Our ideal candidate:': 'Possesses a degree\xa0in\xa0Accountancy, Business Analytics, Data Science, Information Systems, Statistics, Industrial Engineering or other similar quantitative fields.3\xa0to\xa05\xa0years\xa0of\xa0prior experience\xa0in\xa0analytical fields / finance business processes,\xa0preferably\xa0in\xa0a semiconductor manufacturing environment.Knowledge\xa0of\xa0analytics software\xa0and\xa0process automation\xa0and\xa0preferably\xa0with prior experiences with cost control.Excellent analytical, problem-solving\xa0and\xa0logical thinking skills.Able\xa0to\xa0present a succinct\xa0and\xa0clear analysis suitable for Management\xa0communication.Able\xa0to\xa0work\xa0under time pressure with a high degree\xa0of\xa0accuracy & attention\xa0to\xa0details.Strong interpersonal\xa0and\xa0communication\xa0skills\xa0to\xa0work\xa0with colleagues from various levels\xa0and\xa0functions.Possess the ability\xa0to\xa0work\xa0independently, multitask\xa0and\xa0perform\xa0in\xa0a fast pace environment.', 'Applicants with experience\xa0in\xa0any\xa0of\xa0the following will\xa0be\xa0considered favourably.': 'Tableau.SQL.VBA.MATLAB, Python.Other analytics software (Power BI etc.).R programming.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, General/Cost Accounting', 'Registration No.': '199404407W', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Accounting / Audit / Tax Services'}, {'Company Overview': '\n\tSTMicroelectronics is a world leader in providing the semiconductor solutions that make a positive contribution to people’s lives, today and into the future.\xa0 Among the world’s largest semiconductor companies and a leading technology innovator: ~7,400 people working in R&D and product design, ~18,000 patents, ~ 9,600 patent families and ~ 550 new patent filings, employing ~46,000 employees worldwide in 11 main manufacturing sites, 80 sales & marketing offices in 35 countries and committing close to 20% in R&D.\n\t\n\t\n\t\tPeople are the foundation of ST and they drive our success. We believe there is a strong correlation between employee\'s commitment and business results. Our engaged employees will make ST even more successful. For this reason, ST has a solid infrastructure to manage the core processes related to people and, one of our top corporate priorities is "People". This corporate priority focuses on employee engagement and recognition, talent management, leadership development.\n\nOur HR Strategy\n\n\t\tOur Human Resources strategy aims to ensure the right level of hiring and retention, to match the company’s evolving requirements in terms of profiles, competencies and the dynamic integration of new people. At ST, we believe that the development of our people is the key factor for ensuring our long term success.\n\n\t\tOur Vision : Everywhere microelectronics make a positive contribution to people\'s lives, ST is there.\n\n\t\tOur Values :\n\nINTEGRITY: we conduct our business with the highest ethical standards, honor our commitments, deliver on our promises, are loyal and fair.\nPEOPLE: we behave with openness, trust and simplicity; ready to share our knowledge, encourage everyone’s contribution, develop people through empowerment, teamwork and training.\nEXCELLENCE: we strive for quality and customer satisfaction and create value for all our partners; we are flexible, encourage innovation, develop our competencies, seek responsibility and are accountable for our actions.'}, {'url': 'http://www.jobstreet.com.sg/en/job/business-data-analyst-operation-finance-controller-m-f-worknow-urgenthire-10144230?jobId=jobstreet-sg-job-10144230§ionRank=1145&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Research Associate / (Data Science & Mobility), R00004884 #LetsGetToWork -#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 4-Nov-22']}, {'Job Responsibilities': 'Survey and data collection for active mobility (walking, cycling, and riding PMD) safety.Statistical & causal correlation analysis for the collected data.Modelling and analysis of the interaction behaviour.Report writing and documentation for the project.', 'Job Requirements': 'Possess Master degree in Transportation Engineering/Data Science/Computer Science/Statistics/Social Science or related disciplines.Experience in transportation engineering.Experience in data analytics.Good interpersonal skills.Excellent teamwork awareness.Good communication and writing in English.Strong responsibility for research / work.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-data-science-mobility-r00004884-letsgettowork-urgenthire-10134675?jobId=jobstreet-sg-job-10134675§ionRank=1146&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow (Computer Science) - [R00008683] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Key Responsibilities:': 'Develop solutions for representation learning.Develop solutions for Natural Language Generation.Write and publish research papers in top-tier NLP/ML conferences (ACL, ICML, NeurIPS, ICLR, EMNLP).Collaborate with other PhD students.', 'Job Requirements:': 'PhD in Computer Science specializing in NLP, ML and Deep Learning\u200b.Skill in developing deep learning models in Pytorch.Excellent communication skill.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-%5Br00008683%5D-jobsthatmatter-10053080?jobId=jobstreet-sg-job-10053080§ionRank=1148&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Analyst Intern - Growth - #JobsThatMatter #URGENT*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Build and manage metrics in an analytical driven approach to identify business issues and opportunities in a fast-changing industry;.Prototype analysis pipelines and quickly provide insights to business inquiries;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendations on appropriate solutions..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Statistics, Applied Mathematics, Computer Science or a related technical discipline from a university;.Experience in data manipulation with SQL, Python or other programming-languages/tools;.Experience in data analysis, visualization and reporting;.'}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-intern-growth-jobsthatmatter-urgent*-10119494?jobId=jobstreet-sg-job-10119494§ionRank=1149&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Scientist, Engineering Mechanics, IHPC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Requirements': 'PhD in Computational Mechanics / Computational Materials Science / Applied Math / Applied Physics.Strong understanding of Continuum Mechanics, Dislocation Mechanics, Plasticity and Fracture to develop robust models for thermal and thermomechanical processing and to deduce correlations between Structure-Process-Properties.Good familiarity with structure of Linear and Non-Linear Finite Element Method (FEM) and ability to populate elements of virtual specimens with constitutive laws, including nonlinear stress-strain properties and fracture criteria..Good coding skills for scientific computing.Ability to write and maintain code, such as user materials and user element subroutines for commercial FEM codes.Possess good publication track record.', 'The above eligibility criteria are\xa0not\xa0exhaustive. A*STAR may include additional selection criteria\xa0based\xa0on its prevailing recruitment policies. These policies may be amended\xa0from\xa0time to time without notice. We regret that only shortlisted\xa0candidates\xa0will be notified.': []}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-engineering-mechanics-ihpc-10124212?jobId=jobstreet-sg-job-10124212§ionRank=1150&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Job Requirements
[{'position': 'Research Fellow [Chemistry/Material Science/Physics] - (R00007424) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Key Responsibilities:': 'Development and characterization of innovative liquid/solid separation processes from e-waste leaching solutions.Liquid/solid extraction efficiency of unitary columns using different extractant molecules grafted or impregnated on specific solid matrices.Design of a continuous process based on the most interesting systems for the selective recovery of the metal ions of interest, including using simulated moving-bed chromatography.Implementation of the process at pilot scale (~10 L/h) to demonstrate its feasibility and to give first hints for cost analysis from the perspective of development at industrial size.', 'Job Requirements:': 'Ph.D in Chemistry/ Materials Science/Physics.Strong background in Materials chemistry/ chemistry.Experience with energy stor system or electrochemical system (batteries).Strong background on Al ion battery and new stable anode and cathode development.Interest in initiating activities on new non-conventional energy stor system with innovative mind.Good hand on experience with experience in company working environments\xa0.Good command of oral and written English.Strong publication/patent records will be preferred.Strong hand on skill for testing prototype set up and maintenance devices.Good understanding of the surface energy tuning, electronic band structure etc.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-%5Bchemistry-material-science-physics%5D-r00007424-urgent-10060518?jobId=jobstreet-sg-job-10060518§ionRank=1151&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Executive / Executive – Performance Analytics, Statistics & Support Services - (SATS01132-9918)'}, {'company_name': 'SATS Ltd.'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'About SATS – Feed and Connect Communities': '', 'KEY RESPONSIBILITIES': 'Analyse and model existing business initiatives and processes. Make recommendations for improvements and introduce new solutions through technology or process change..', 'KEY REQUIREMENTS': 'Degree in Computer Science, Finance or Business IT with analytical, strong interpersonal and communication skills..Minimum 3 to 5 years of experience as a business or functional analyst..Ability to work under tight timeline..Has an interest in the air cargo industry and preferably with experience in air logistics industries..Able to work with internal and external stakeholders..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, General/Cost Accounting', 'Registration No.': '197201770G', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '13 days', 'Industry': 'Aerospace / Aviation / Airline', 'Benefits & Others': 'Dental, Miscellaneous allowance, Medical, Sports (e.g. Gym), Business (e.g. Shirts), Regular hours, Saturdays or shift may be required for operational positions'}, {'Company Overview': "SATS – Feed and Connect CommunitiesSATS is Asia's leading provider of food solutions and gateway services. Using innovative food technologies and resilient supply chains, we create tasty, quality food in sustainable ways for airlines, foodservice chains, retailers and institutions. With heartfelt service and advanced technology, we connect people, businesses and communities seamlessly through our comprehensive gateway services for customers such as airlines, cruise lines, freight forwarders, postal services and ecommerce companies.Fulfilling our purpose to feed and connect communities, SATS is delighting customers in over 60 locations and 14 countries across the Asia Pacific, UK, and the Middle East. SATS has been listed on the Singapore Exchange since May 2000. For more information, please visit\xa0www.sats.com.sg."}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-executive-executive-performance-analytics-statistics-support-services-sats01132-9918-10118563?jobId=jobstreet-sg-job-10118563§ionRank=1152&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
About SATS – Feed and Connect Communities
[{'position': 'Principal, Data Architect #Urgent #Seekbetter'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Principal, Data Architect': '', 'Overview': '', 'Summary:': '', 'The\xa0Data Architect': "Will interface with technology\xa0and\xa0specific business / functional areas for\xa0the\xa0development\xa0and\xa0management\xa0of\xa0the\xa0firm's data assets..Advises internal\xa0and\xa0external business\xa0and\xa0technology groups by providing strategic direction, guidance,\xa0and\xa0data domain expertise in addressing business issues\xa0and\xa0opportunities..Responsible for understanding available data architecture principles/guidelines and contributing\xa0to\xa0the\xa0best practices, standards, and frameworks supporting\xa0the\xa0firm's data strategy..Responsible for gathering/deciphering business requirements into an architecturally sound data designs for transactional, analytical,\xa0and\xa0reporting data taking into consideration volume, velocity,\xa0and\xa0quality\xa0of\xa0data..Implementing data management methods\xa0and\xa0tools to achieve data architectural goals including data governance, data management, conceptual/logical/physical\xa0data modeling, DDL generation, data catalogs, data quality, data classification, data profiles,\xa0and\xa0data lineage..Responsible for\xa0the\xa0delivery\xa0of\xa0high-quality data architectural solutions, including enterprise\xa0and\xa0line\xa0of\xa0business architectures, while ensuring compliance with company policies..Initiates\xa0and\xa0drives processes that unleash\xa0the\xa0value\xa0of\xa0the\xa0Company's data assets\xa0to\xa0gain competitive advantage in\xa0the\xa0marketplace using data science\xa0and\xa0AI/ML techniques\xa0and\xa0tools..Strategizes\xa0and\xa0contributes\xa0to\xa0enterprise\xa0level\xa0technological initiatives on data governance, management,\xa0and\xa0usage.\xa0.In\xa0addition\xa0to\xa0the\xa0individual contributor primary responsibilities shown below, may also\xa0have\xa0managerial responsivities, such as: recruits, directs, motivates\xa0and\xa0develops staff, maximizing their individual contribution, their professional growth\xa0and\xa0their ability\xa0to\xa0function effectively with their colleagues as a team..Defines\xa0and\xa0implements data architecture for corporate data governance\xa0and\xa0data design principles..Ensures data management business solution deliveries..Adheres\xa0to\xa0the\xa0established data architecture methodologies\xa0and\xa0standards, and\xa0in\xa0compliance with company policy..Works closely with senior management\xa0to\xa0educate\xa0and\xa0to\xa0articulate resource requirements necessary\xa0to\xa0promote Data Strategy goals..Oversees warehousing activities\xa0of\xa0the\xa0organization\xa0to\xa0assure\xa0the\xa0strategic goals\xa0of\xa0the\xa0organization\xa0are\xa0met,\xa0and\xa0to\xa0assure integration\xa0of\xa0corporate data constructs (logical\xa0and\xa0physical\xa0database designs)..Works toward architectures enterprise data solutions..Performs enterprise planning\xa0and\xa0designing solutions for emerging business\xa0and\xa0complex technology environments including: cloud persistence migration, data lake,\xa0and\xa0data warehousing..Identifies\xa0and\xa0recommends ways\xa0to\xa0drive more value out\xa0of\xa0the\xa0company's data..Designs stable\xa0and\xa0flexible high performance data solutions, maximizing data reuse\xa0and\xa0avoiding data redundancy, according\xa0to\xa0the\xa0current\xa0and\xa0anticipated business rules, following Agile development techniques..Works with other stakeholders in optimizing data solutions..", 'Requirements/Experience:': "Bachelor's\xa0degree\xa0in\xa0computer science\xa0or\xa0a related discipline,\xa0or\xa0equivalent\xa0work\xa0experience required.A minimum\xa0of\xa0ten (10)\xa0years\xa0of\xa0experience\xa0in\xa0IT with a minimum (4)\xa0years\xa0in\xa0data management/architecture services required;\xa0.Recent\xa0and\xa0Relevant experience\xa0in\xa0some combination\xa0of\xa0Data Platforms, Technical Skills\xa0and\xa0Tools..Experience\xa0in\xa0the\xa0securities\xa0or\xa0financial services industry\xa0is\xa0a plus..", 'Employer Description:': '', 'EEO Statement:': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-data-architect-urgent-seekbetter-10144880?jobId=jobstreet-sg-job-10144880§ionRank=1156&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Principal, Data Architect
[{'position': 'Principal, Data Management & Quantitative Analysis #Seekbetter #JobsThatMatter'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Principal, Data Management & Quantitative Analysis': '', 'Overview': '', 'What we\xa0do:': '', 'JOB DESCRIPTION:': 'Play a significant\xa0role\xa0in\xa0the\xa0design, research, development\xa0and\xa0deployment\xa0of\xa0a suite\xa0of\xa0contextual trading analytics..Develop research quant libraries..Create multi-asset class market impact models..Develop real-time decision support tools..Provide domain expertise in solving research-intensive portfolio implementation challenges..Present research findings\xa0to\xa0internal\xa0and\xa0external clients\xa0and\xa0constituents..Develop\xa0and\xa0maintain expert-level\xa0understanding\xa0of\xa0market micro structure globally\xa0and\xa0across asset classes..Embrace\xa0and\xa0promote API-driven solutions, utilizing open source resources\xa0and\xa0cloud-based\xa0architecture..Collaborate with internal teams\xa0and\xa0vendors\xa0to\xa0implement research\xa0in\xa0the\xa0production\xa0environment.', 'PREFERRED QUALIFICATIONS:': "Degree\xa0in\xa0computer science, statistics\xa0or\xa0similar - PhD highly preferred.3+\xa0years' experience\xa0in\xa0research\xa0and\xa0data science roles.Solid coding skills in Python, R, C++\xa0or\xa0Java.Keen understanding\xa0of\xa0REST, gRPC\xa0and\xa0other API-related frameworks, concepts\xa0and\xa0tools.Exposure\xa0to\xa0and\xa0comfort with high performance, low latency computing systems.Experience with real-time systems.Proficiency with AWS, Azure\xa0or\xa0other cloud-based\xa0environments.Handling real-time market data feeds across asset classes and regions.Deep knowledge\xa0of\xa0time series database technologies.Experience\xa0in\xa0PostgreSQL, Redis\xa0and\xa0other DB solutions.Expertise\xa0in\xa0ML\xa0and\xa0optimization technologies.Deep understanding\xa0of\xa0financial engineering\xa0and\xa0mathematical finance concepts.Collegial\xa0and\xa0collaborative disposition - team player!.Great\xa0presentation skills - be\xa0able\xa0to\xa0present research findings\xa0to\xa0a wide range\xa0of\xa0audiences.Advanced\xa0degree\xa0in\xa0quantitative analysis preferred..12+\xa0years\xa0total\xa0work\xa0experience preferred..Experience\xa0in\xa0quantitative finance\xa0and\xa0technology preferred..", 'Employer Description:': '', 'EEO Statement:': []}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-data-management-quantitative-analysis-seekbetter-jobsthatmatter-10145138?jobId=jobstreet-sg-job-10145138§ionRank=1157&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Principal, Data Management & Quantitative Analysis
[{'position': 'Manager, Business Analyst (iShopChangi) (5167)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'You will be responsible for the below areas:': 'Design and perform business-oriented, comprehensive data analysis (both sales and web analytics data) to monitor business performance , identify trends, generate key insights and discover potential business opportunities, both at day to day operational and strategic level.Develop Business Dashboards & Automation of Reporting across functions.Conduct Pricing Competitive Benchmark and develop pricing strategy along with internal stakeholders to help drive standard configurations and profitable growth.Support in Marketing Experimentation through Segmentation, Operationalization & Post-Mortem Analysis.Build customer segmentation strategies together with performance marketing team and implement short and long-term plans for growth and retention of customers to increase profitable growth..Provide suggestions on marketing experiments to run, develop actionable insights insights about the customer / business and collaborate with various stakeholders to design meaningful marketing promotion and digital experiments to optimize conversion performance and improve business performance.Develop basic analytical models with tools that help solve business problems / provide directions for our online business.Provide insightful analysis to management and internal stakholders for decision making.Work with Analytics / Data Science team to interpret the output of the predictive models to develop digital marketing experimentation plan.Work with the Tech team to drive marketing technology changes and enhancement to support performance goal.Support and manage adhoc key projects and/or business initiatives.', 'Requirements:': 'Degree in Business / Statistics / Computer Science or related field.Possess strong analytical skills with at least 5 years experience in Data Analytics and Business Intelligence.Strong background in statistical concepts and calculations.Innovative and strong analytical and algorithmic problem solvers.Experience with scripting languages (e.g., Python) for orchestration and data manipulation.Data engineering experience, including SQL and experience manipulating structured and unstructured data sources for analysis..Technically advanced in MS Office (Excel and Powerpoint) and business Intelligence tools (eg Microstrategy, Tableau).Knowledge of data modeling and database technologies..Experience working in a matrix cross-functional organization and being a team player.Experience working in digital marketing and hands-on digital experiments for eCommerce will be a bonus.Familiarity in Campaign Measurement, Predictive Modelling, Segmentation, Hypothesis Testing, Cross Sell and Up Sell Analytics, Forecasting, A/B Testing.Familiarity in marketing tools - Adobe Marketing Cloud and Oracle Responsys will be a bonus.Strong acumen / interest in consumerism trends and eCommerce developments.Strong communication skills (verbal and written/visual) to create and deliver compelling presentations of experimentation plans and insights to teams, senior management and internal & external stakeholders..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-business-analyst-ishopchangi-5167-10057451?jobId=jobstreet-sg-job-10057451§ionRank=1158&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
You will be responsible for the below areas:
[{'position': 'Project Officer, (Food Toxicology) (R00010574)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:\xa0': 'Provide expertise and support FRESH research staff working on the development and implementation of in vitro toxicological methods for food safety.Learn and run in-house protocols for the in vitro micronucleus assay and oversee validation testing with expanded chemical classes.Investigate establishment of in-house Ames Bacterial Mutation assay.Help develop new in-house protocols for in vitro toxicity endpoint testing.Culture and maintain in vitro human 2D and 3D cell culture models.Plan, execute, manage and troubleshoot experiments.Keep detailed and accurate records of experiments, data and analysis to support and protect data integrity and intellectual property.Contribute to multiple projects and work with collaborators to achieve project milestones.Help track and report FRESH project deliverables.Support lab admin and project management (procurement, contracts, meeting management).Maintain general lab functions and cleanliness.Ensure appropriate safety and risk assessments are in place for lab activities.Actively integrate into the FRESH team and assist where possible on other FRESH lab activities if time permits.', 'Job Requirements:': 'Minimum Bachelor’s degree in (food/in vitro/genetic) toxicology, cell biology, biochemistry, molecular biology or food science..At least 2 years’ experience in an academic or industrial research setting.Strong hands-on experience in 2D and 3D cell/tissue culture is mandatory (good aseptic technique).Experience in conducting genotoxicity assays (OECD 487, OECD 471 & Comet assay) is highly preferred.Knowledge of hazard identification and risk assessment frameworks is highly desirable.Experience working in a preparative chemistry/toxicology lab setting is highly preferred.Experience working with light/fluorescence/ confocal microscopy is preferred.Experience with tissue barrier integrity measurement, LCMS/GCMS, RT-PCR, ELISA, western blot is a plus.Experience working with animal/ human tissues is a plus.Experience/ knowledge of immunological mechanisms of food allergy is a plus.Must have great attention to details, highly independent at the same time a team player, motivated, pro-active and creative to accomplish complex tasks.Interested in interaction with multiple teams for collaborative work.Enthusiasm to learn new approaches and drive research projects.Excellent skills in\xa0record keeping/documentation and good time management.Excellent verbal and written communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-food-toxicology-r00010574-10046256?jobId=jobstreet-sg-job-10046256§ionRank=1159&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow, (Signal Processing & Machine Learning) - (R00003631)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Responsibilities': 'Develop signal processing and machine learning algorithms and methods.Perform software/hardware implementation and empirical studies.Prepare reports and presentations.Conduct project presentations and seminars.Help to supervise students and contribute to proposal writing.Assist the PI in various research admin tasks.', 'Job Requirements': 'Ph.D. in Electrical Engineering, Computer Science, Statistics or other related fields.Solid Mathematical skills.Background in graph signal processing, probability theory and statistical signal processing.Experience in implementing algorithms for machine learning and data analytics.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-signal-processing-machine-learning-r00003631-10053899?jobId=jobstreet-sg-job-10053899§ionRank=1160&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'ESG Data Analyst'}, {'company_name': 'Kerry Consulting Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa08,000 - SGD\xa08,300', 'Posted on 20-Oct-22']}, {'Description': '', 'Responsibilities': '', 'Skills and experiences required': "Min. Degree in Business/Finance or related disciplines.At least 3 years of relevant working experience in business intelligence, data analysis and/or data visualisation.Experience in a wide variety of technologies including R and/or Python, SQL, API, and MS Excel.Strong understanding of Microsoft Power Platform (i.e., Power BI, Power Automate) and Experience in using the platform's programming language (particularly Power Query and DAX) is highly desirable.Familiar with software development practices (as applied to analytics) such as Agile, DevOps or CI/CD.Good understanding of Microsoft Azure application services, is a nice-to-have.Background in Data Science/Computer Engineering is a plus.CFA Level 1-3, or good understanding of ESG and asset management, is a plus.", 'To Apply': '', '[email\xa0protected]': []}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200307397W', 'EA No.': '16S8060', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tHeadquartered in Singapore since 2003, Kerry Consulting is Singapore\'s leading Search & Selection firm. Our consulting team is the most experienced, and amongst the largest, in the ASEAN region.\n\n\t\tWe provide services to many of the world\'s leading companies and financial institutions. We are committed to creating positive long term outcomes for both our clients and our candidates. Our focus is on "Returning the Human to Resourcing".\n\n\n\tTo find out more, please visit our website at www.kerryconsulting.com\n\n\tLicence No: 16S8060\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/esg-data-analyst-10084051?jobId=jobstreet-sg-job-10084051§ionRank=1161&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Research Engineer (Visual Analytics) (R00010454)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Description:': 'Research into Visual Search and Video Analytics related work, including object detection, person re-identification (reID) & tracking, and search & retrieval.Creation of large-scale datasets for research and algorithm evaluation.Be part of a research team in the execution of funded research projects.Assist in drafting of proposals for research grants in the above areas.', 'Job Requirements:': 'Bachelors degree in Computer Science and/or Engineering, Data Science & Analytics, Mathematics, or related field.Research experience in Computer Vision, Pattern Recognition, Deep Learning, and working with large-scale datasets, in particular in a university or research lab.Experience with object detection & segmentation, domain adaptation, and adversarial learning is essential.Proficiency in software such as Caffe, PyTorch, TensorFlow, TensorRT, OpenCV, and programming languages such as C/C++ and Python, as well as Linux (eg. Ubuntu) is essential.Knowledge of GPU computing, CUDA programming, optimization (eg. with TensorRT), and industry experience in engineering software development would be an advantage.Good inter-personal skills, with the ability to work with people from varied backgrounds.Proficient in English.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-visual-analytics-r00010454-10046316?jobId=jobstreet-sg-job-10046316§ionRank=1162&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Machine Learning Engr., Recommendation - TikTok #JobsThatMatter* #Seekbetter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Build industry leading recommendation system; develop highly scalable classifiers and tools leveraging machine learning;.Understand product objectives and machine learning techniques; improve model and recommendation strategy;.Understand user behavior and apply ML algorithms to optimize content consumption and production experience;.Understand content security strategy and apply ML algorithms to improve content audit process;.Work with TikTok cross functional teams to grow TikTok in important regional markets..', 'Qualifications': "Bachelor's degree in computer science or a related technical discipline, with at least 2 years of related work experience;.Solid experience with data structures or algorithms;.Software development experience through hands on coding in a general purpose programming language;.Experience in one or more of the following areas: machine learning, recommendation systems, data mining or other related areas;.Strong communication and teamwork skills;.Passion about technologies and solving challenging problems.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engr.-recommendation-tiktok-jobsthatmatter*-seekbetter-10118066?jobId=jobstreet-sg-job-10118066§ionRank=1163&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Analyst Intern - Growth*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Build and manage metrics in an analytical driven approach to identify business issues and opportunities in a fast-changing industry;.Prototype analysis pipelines and quickly provide insights to business inquiries;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendations on appropriate solutions..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Statistics, Applied Mathematics, Computer Science or a related technical discipline from a university;.Experience in data manipulation with SQL, Python or other programming-languages/tools;.Experience in data analysis, visualization and reporting;.'}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-intern-growth*-10119659?jobId=jobstreet-sg-job-10119659§ionRank=1164&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Computer Vision Research Intern #WorkNow*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': "Conduct cutting-edge research in the fields of computer vision and machine learning;.Ensure technologies get successfully applied to ByteDance's products;.Incubate new products with computer vision and machine learning technologies..", 'Qualifications': 'Research experience in but not limited to the following areas (as main authors of published papers at CVPR, ICCV, ECCV, etc.):.Image/video search.Image/video classification/understanding.Object detection, segmentation, and tracking.Scene understanding.Facial analysis.Pose and gesture.3D vision.Highly competent in algorithms and programming, prefer winners in ACMICPC, NOI/IOI, Top coder and Kaggle..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/computer-vision-research-intern-worknow*-10120336?jobId=jobstreet-sg-job-10120336§ionRank=1167&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Project Executive, Data Analysis (Healthcare background is a MUST)'}, {'company_name': 'Triton AI Pte Ltd'}, {'small_section': ['West', 'Posted on 21-Oct-22']}, {'Up to $5,500, Permanent Role with AWS + 3 months Variable Bonus': 'Up to $5,500, Permanent Role with AWS + 3 months Variable Bonus.Healthcare Industry located at West near MRT stations.', 'Healthcare Industry located at West near MRT stations': 'Entry level is welcome to apply.', 'Entry level is welcome to apply': 'Healthcare background is a MUST.', 'Healthcare background is a MUST': 'Assist in identifying and implementing process improvements within and across Functional Groups and/or respective programmes..Complete content build and testing of the system as guided/requested by stakeholders..Be involved in programme management work areas including but not limited to conducting requirements analysis, functional testing, system implementation, end-user training and coordinating with appointed IT partners for on-going support to users..Be an integral member of the Next Generation Electronic Medical Records (NGEMR) project, by supporting the leads of the assigned Functional Group in recording and translating their business needs into business requirements..Organizing, coordinating project/workgroup meetings, including scheduling, booking and preparing of rooms/virtual sessions, collating of meeting attendance, minutes taking and tracking matters arising for matters related to the assigned Functional Group..Healthcare/IT Business Analysts who take an interest in process improvement, value creation and/or programme management to provide support & improve healthcare..A tertiary degree from a recognized university in IT.Preferably 2-4 years of relevant working experience with project/programme management and/or business analysis in a healthcare/healthcare IT setting.', '\xa0connie#triton-ai.com': []}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Healthcare, Practitioner/Medical Asst', 'Registration No.': '21C0661', 'EA No.': '21C0661', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '5 days', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'TRITON AI\xa0(EA License Number 21C0661)\xa0is a Singaporean-owned talent resource organization formed with the purpose of developing a Singaporean core for our clients.Established since 2011 and formally operating as Talent Touche Pte Ltd,\xa0TRITON AI\xa0has undergone a total rebranding exercise in 2021 in alignment with our mission to enhance the effectiveness of Talent Acquisition and People-Powered Projects with\xa0Technology\xa0and\xa0Artificial Intelligence.\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-executive-data-analysis-healthcare-background-is-a-must-10089979?jobId=jobstreet-sg-job-10089979§ionRank=1168&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Up to $5,500, Permanent Role with AWS + 3 months Variable Bonus
[{'position': 'NLP Scientist - AI Lab'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': [], 'About The Team': 'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..', 'Qualifications': "Bachelor's degree or above, majoring in Computer Science, or related fields.Rich research experience in but not limited to the following areas (as main authors of published papers at ACL, EMNLP, NIPS, ICML, etc.):.Syntactic analysis.Language generation.Knowledge and inference.Reinforcement learning.Deep learning and representation learning.Highly competent in algorithms and programming, prefer winners in ACMICPC, NOI/IOI and Kaggle;.Ability to work and collaborate well with team members;.Ability to work independently;.Senior candidates have the ability to organize and lead teams and projects.."}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-scientist-ai-lab-10132687?jobId=jobstreet-sg-job-10132687§ionRank=1169&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow - (R00005121) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Key Responsibilities:': 'Undertake research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data mining, doing analytics, and building high quality strategic planning system for future for Air Traffic Management systems.Provide expertise on algorithmic concepts for the broader applied analytics of ATM and inspire the adoption of advanced analytics and data science across the entire breadth of ATM system..', 'Job Requirements:': 'PhD Degree in Computer Science/Aerospace Eng/Operation Research.Good programming skill (Python / MATLAB / C++).Good English writing and communication skills.Independent and team player.Good publication records.Demonstrated relevant experience in Artificial Intelligence / Machine Learning.Publication track record in peer-reviewed and reputed journals/conferences related to Artificial Intelligence / Machine Learning / AI&ML applied to ATM.Hands-on experience in using machine learning libraries such as Scikit-learn, etc..Hands-on experience in using deep learning library (either TensorFlow or PyTorch).', 'Experiences in at least two of the following areas is a strong plus:': 'Tempo-spatial data mining and analysis,.Time series analysis and prediction,.Generative models.Reinforcement Learning and/or Inverse Reinforcement Learning.Probabilistic Modeling / Bayesian Machine Learning.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-r00005121-seekbetter-10144763?jobId=jobstreet-sg-job-10144763§ionRank=1170&token=0~8101c22c-0fbd-4c0c-a81b-8148f5a372cf&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow - (Mathematical AI for Molecular Data Analysis) - (R00008503) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Perform molecular data analysis, including molecular dynamics analysis, quantum mechanism analysis, geometric and topological modeling.Data analysis with machine learning and deep learning models.', 'Job Requirements': 'PhD in Mathematics, computer sciences, bioinformatics, computational physics/chemistry/biology, or other related areas.Previous experience on topological data analysis, machine learning and molecular data analysis is preferred.Have good training on computation, algorithm design and modeling.Research areas on applied topology, computational geometry/topology, molecular dynamics, bioinformatics, data analysis, and machine learning.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-mathematical-ai-for-molecular-data-analysis-r00008503-seekbetter-10141978?jobId=jobstreet-sg-job-10141978§ionRank=1172&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Assistant, [Information & Computer Science/Mathematics] - (R00005020)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'School of Computer Science and Engineering (SCSE) invites applications for the position of Research Assistant.': '', 'Key Responsibilities:': 'Conduct research on security analysis of smart contract and testing vulnerabilities in well-known open-source blockchain projects.Develop automatic vulnerability detection tools for blockchain.', 'Job Requirements:': 'Bachelor’s in Information Computer Science, Mathematics, Software Engineering or related discipline.Expertise in software engineering, software programming, computer security and testing.Research experience in software testing, software analysis and related areas.Excellent communication and writing skills.Able to conduct research and write reports/articles independently and within teams.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-%5Binformation-computer-science-mathematics%5D-r00005020-10070689?jobId=jobstreet-sg-job-10070689§ionRank=1173&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
School of Computer Science and Engineering (SCSE) invites applications for the position of Research Assistant.
[{'position': '#Data Scientist - 22436757 - #JobsThatMatter#'}, {'company_name': 'Citibank N.A.'}, {'small_section': ['Singapore', 'Posted on 23-Oct-22']}, {'Job Background/context:': '', 'Key Responsibilities:': 'Identify valuable data sources and automate collection processes..Undertake preprocessing of structured and unstructured data..Analyze large amounts of information to discover trends and patterns..Build predictive models and machine-learning algorithms..Combine models through ensemble modeling..Present information using data visualization techniques..Propose solutions and strategies to business challenges..Collaborate with engineering and product development teams..The candidate needs to be able to present back the findings to the business in a business friendly manner.', 'Knowledge/Experience:': '', 'Essential': [], 'Desirable': [], 'Skills: (technical skills)': 'Experience working in a cloud environment with large data sets.', 'Qualifications: ': 'Master’s degree or Ph.D. in computer science, math, engineering, or a related quantitative field.Demonstrated leadership and project/program management skills.Certification from a recognized institution on one of data analytics, machine learning and deep learning.Consistently demonstrates clear and concise written and verbal communication.'}, {'Career Level': 'Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '8 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200309485K', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\n\t\tCiti is more than a global financial services company. It’s an engine for progress. Join us, and you’ll have the chance to get involved in progress in all its shapes and forms, right across the world. From the micro to the macro, from Australia to Zambia, the work we do has real positive impact. Wherever you are and whatever you do, progress starts here.\n\n\nMission: Citi's mission is to serve as a trusted partner to our clients by responsibly providing financial services that enable growth and economic progress. Our core activities are safeguarding assets, lending money, making payments and accessing the capital markets on behalf of our clients. We are Citi, the global bank – an institution connecting millions of people across hundreds of countries and cities.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-22436757-jobsthatmatter-10095562?jobId=jobstreet-sg-job-10095562§ionRank=1174&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Job Background/context:
[{'position': 'Research Fellow (Explainable AI & Neuro-inspired AI for Air Traffic Management Systems) (R00004310)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key Responsibilities:': "Conduct research in human-centered AI and data science for ATM systems.Develop explainable, cognitive- and neuro-inspired algorithms for ATM problems.Improve transparency, reliability, resiliency behind AI's decisions and recommendations.Study ATCO's experiences (i.e., trust and experience) with intelligent tools.", 'Job Requirements:': 'PhD degree in computer science or electrical engineering.Strong theoretical background in machine learning, computational intelligence and optimization.Experience in real-world machine-learning and data science projects.Strong programming skills in Python, C++.Experience in the human-machine interface and aerospace engineering is a plus.Good English writing and communication skills.Independent and team player.Good publication records.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-explainable-ai-neuro-inspired-ai-for-air-traffic-management-systems-r00004310-10046490?jobId=jobstreet-sg-job-10046490§ionRank=1175&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Engineer Intern, Growth *'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Build data pipelines and reports to portray business status, based on a deep understanding of our fast changing business with data-driven approaches;.Extract information and signals from a broad range of data and build hierarchies to accomplish analytical and mining goals for “Packaged Business Capability” such as growth, gaming and search;.Continually improve the integrity of data pipelines to provide a comprehensive data service..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Data Science or a related technical discipline from a university;.Experience in SQL and an additional object-oriented programming language (e.g., Python, Java, or Scala);.Experience in issue tracking and problem-solving on data pipelines;.Strong analytical thinking and exceptional attention to details..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-intern-growth-*-10120320?jobId=jobstreet-sg-job-10120320§ionRank=1177&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Intern - R&D Mircroarray (Gul) - 212924BR'}, {'company_name': 'Thermo Fisher Scientific'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'How Will You Make an Impact?': '', 'What will you do?': '', 'You will be involved in': 'Collaborate\xa0and\xa0assist scientists in their experimentation..Execute experiments following protocols independently\xa0and\xa0perform accurate record keeping..Adhere to company policies\xa0and\xa0procedures following research\xa0and\xa0development scientific standards..Assist with laboratory management duties, such as equipment maintenance, reagents inventory\xa0and\xa0purchasing, general housekeeping..Participate in the development of\xa0new\xa0testing procedures/assays to support the release of\xa0new\xa0products..Possess\xa0good\xa0knowledge of chemical preparation\xa0and\xa0waste disposal..', 'How will you get here?': '', 'Education': '', 'Experience': 'Working\xa0knowledge of real-time PCR will be an advantage..', 'Knowledge, Skills, Abilities': 'Strong\xa0written\xa0and\xa0verbal communications skills..Work\xa0independently in a quick paced\xa0environment..Proficient in Microsoft office..Requires\xa0strong\xa0organizational skills\xa0and\xa0attention to details..Must be self-motivated, results oriented,\xa0and\xa0work\xa0well in team setting with minimal supervision..Proficient to read\xa0and\xa0interpret documents such as procedure manuals, operating\xa0and\xa0maintenance instructions..', 'Learning outcome:': '', 'By end of internship, you will': 'Communicates clearly.Works well in teams.Shows initiative\xa0and\xa0independent learning.Understand laboratory operation and safety guidelines.Operation\xa0and\xa0maintenance of standard laboratory equipment.Develop critical thinking, report writing\xa0and\xa0analytical skills.Theoretical understanding of classical and real-time PCR.Understand PCR design strategies.Applied PCR techniques.Hands-on experience with Thermo Fisher instrumentation.Basic understanding of PCR analysis and associate data.Industry standard unidirectional workflow for molecular applications.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '200510503Z', 'Company Size': 'More than 5000 Employees', 'Industry': 'BioTechnology/Pharmaceutical/Clinical research', 'Benefits & Others': 'Regular hours, Mondays - Fridays, -'}, {'Company Overview': '\n\tThermo Fisher Scientific Inc. (NYSE: TMO) is the world leader in serving science, with annual revenue of approximately $40 billion. Our Mission is to enable our customers to make the world healthier, cleaner and safer. Whether our customers are accelerating life sciences research, solving complex analytical challenges, increasing productivity in their laboratories, improving patient health through diagnostics or the development and manufacture of life-changing therapies, we are here to support them. Our global team of more than 100,000 colleagues delivers an unrivaled combination of innovative technologies, purchasing convenience and pharmaceutical services through our industry-leading brands, including Thermo Scientific, Applied Biosystems, Invitrogen, Fisher Scientific, Unity Lab Services, Patheon and PPD. For more information, please visit www.thermofisher.com.'}, {'url': 'http://www.jobstreet.com.sg/en/job/intern-r-d-mircroarray-gul-212924br-10053595?jobId=jobstreet-sg-job-10053595§ionRank=1178&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
How Will You Make an Impact?
[{'position': 'Data scientist I #Urgent'}, {'company_name': 'Jabil Circuit (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 24-Oct-22']}, {'Job Description': '', 'JOB SUMMARY': '', 'ESSENTIAL DUTIES AND RESPONSIBILITIES': '', 'JOB QUALIFICATIONS': '', 'KNOWLEDGE REQUIREMENTS': '', 'Accessibility Accommodation': []}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200203640M', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Manufacturing / Production', 'Benefits & Others': 'Dental, Medical, Parking, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': '\n\n\nCompany Overview\n\n\n\t\t\tBusiness disruption across multiple sectors is accelerating at record pace. Getting increasingly innovative products to market quickly, reliably and securely, continues to separate winners from losers in markets around the world.\n\n\n\t\t\tAnd that’s why some of the world’s best-known brands partner with Jabil.\n\n\n\t\t\tBuilt on a foundation of empowered employees in over 100 plants in 29 countries, Jabil focuses on helping customers with world-leading global manufacturing and design services. We create and build world’s most well-known and respected products and components in industries ranging from medical equipment to smart phones to electric cars. Our teams work on products that help connect people, advance technology, and improve the world we share. Worldwide, we are in over 100 sites across 29 countries.\n\n\t\t\tWe believe in hiring the right people, putting them in positions where they can make contributions, and giving them the tools and the authority they need to make decisions. If you have a quality-first mentality in everything that you do and are passionate about achieving results, then Jabil is the place for you.\xa0\xa0\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-i-urgent-10097715?jobId=jobstreet-sg-job-10097715§ionRank=1179&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Associate (Computer Science) - (R00003106)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key Responsibilities:': 'accurate dynamic 3D reconstruction of facial shape, and motion.inference of underlying personal attributes including but not limited to gender, , emotions and moods.output im/video manipulation such as video-driven facial animation of avatars and caricatures, face relighting and facial attribute transfer between different individuals.Carry out extensive amounts of software coding on the latest research platforms.Build and showcase research demo systems.Conduct data collection and processing.Involved in writing research papers.', 'Job Requirements:': "Master's in computer science or related discipline.Bachelor's in computer science or related discipline, with good honours classification or equivalent are welcome to apply.Strong programming skills in C/C++ and Python.Previous experience in a related project, or experience with the latest deep learning platforms, is a bonus.Communicates well in English.Has high integrity, self-motivation, independence and proactiveness."}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-r00003106-10056058?jobId=jobstreet-sg-job-10056058§ionRank=1181&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Lead Data Scientist, - (2200012277) #Immediate'}, {'company_name': 'ALLEGIS GLOBAL SOLUTIONS (SINGAPORE) PTE. LTD'}, {'small_section': ['Singapore', 'Posted on 24-Oct-22']}, {'About Standard Chartered\xa0': '', 'Together we:': '', 'Do\xa0the\xa0right\xa0thing': '', 'Never settle,': '', 'Be\xa0better together,': '', 'In\xa0line with our Fair Pay Charter,': '', 'Core bank funding for retirement savings,\xa0medical\xa0and\xa0life insurance,': '', 'Time-off': '', 'Flexible\xa0working': '', 'Proactive wellbeing support': '', 'A continuous learning culture': '', 'Being part\xa0of\xa0an inclusive\xa0and\xa0values driven organisation,': '', 'Recruitment assessments -': '', 'The\xa0Role\xa0Responsibilities': '', '\ufeffHence\xa0the\xa0following\xa0are\xa0key:': 'Design\xa0and\xa0develop client centric\xa0and\xa0bank wide ML-powered analytical products.Provide necessary data analytics support\xa0to\xa0various internal stakeholders, including (but\xa0not\xa0limited\xa0to): sales, relationship managers, leadership, traders.Develop machine learning\xa0and\xa0advanced analytics solutions with\xa0the\xa0aim\xa0of\xa0improving yields\xa0from\xa0the\xa0business\xa0and\xa0enable improved customer experience..Work\xa0alongside existing analytics teams\xa0to\xa0enable consistent approach\xa0to\xa0data requirements.Work\xa0alongside engineering team\xa0to\xa0make\xa0the\xa0models production-ready\xa0and\xa0deployable for use\xa0of\xa0internal customers.', 'Regulatory\xa0& Business Conduct': 'Display exemplary conduct\xa0and\xa0live by\xa0the\xa0Group’s Values\xa0and\xa0Code\xa0of\xa0Conduct..Take personal responsibility for embedding\xa0the\xa0highest standards\xa0of\xa0ethics, including\xa0regulatory\xa0and\xa0business conduct, across Standard Chartered Bank. This includes understanding and ensuring compliance with, in letter and spirit,\xa0all\xa0applicable laws, regulations, guidelines\xa0and\xa0the\xa0Group Code\xa0of\xa0Conduct..Lead\xa0to\xa0achieve\xa0the\xa0outcomes set out\xa0in\xa0the\xa0Bank’s Conduct Principles: [Fair Outcomes for Clients; Effective Financial Markets; Financial Crime Compliance;\xa0The\xa0Right\xa0Environment.] *.Effectively\xa0and\xa0collaboratively identify, escalate, mitigate\xa0and\xa0resolve risk, conduct\xa0and\xa0compliance matters..', 'Key Stakeholders': 'Global Head\xa0of\xa0Digital Channels\xa0and\xa0Data Analytics, Global Heads\xa0of\xa0Credit\xa0and\xa0Macro Trading\xa0.', 'Our\xa0Ideal\xa0Candidate': 'MSc./PhD\xa0in\xa0a quantitative discipline (e.g. mathematics, physics, computer science, engineering).Ability\xa0to\xa0learn\xa0new\xa0skills (e.g.\xa0new\xa0programming\xa0languages,\xa0new\xa0business terminology).'}, {'Career Level': 'Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '11C4535', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tAllegis Global Solutions is the exclusive Contingent HR services provider for one of the world’s leading banks.\n\n\t\tAt Allegis Global Solutions we’re proud to be the leader in global talent solutions. We draw upon decades of industry expertise to develop innovative tools, products, processes and strategies focused on outcome. Moreover, we’re incredibly proud to have built a culture that empowers our people to make their mark while making deep connections that will last a lifetime. With our passion and culture for talent, we are truly transforming the way the World acquires talent.\n\n\n\t\tOur Client is one of the world's most international banks with over 1,100 branches, offices and outlets in 67 countries. They operate in some of the world's most dynamic markets and have been for over 150 years. More than 90 per cent of their income and profits are derived from Asia, Africa and the Middle East. Their brand promise, Here for good, underlines their distinctive approach.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-scientist-2200012277-immediate-10097986?jobId=jobstreet-sg-job-10097986§ionRank=1183&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
About Standard Chartered
[{'position': 'Research Fellow, - (Computer Science), [R00007173] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Conduct research and development related to Machine Learning and Deep Learning and spatial-temporal data mining.', 'Job Requirements:': 'PhD in Computer Science or related disciplines.At least 2 of experience in machine learning and spatial-temporal data mining and data manment.Good knowledge of and machine learning applications.Excellent publication records.Good spoken and written English.Strong research ability.Strong leadership quality.Good interpersonal skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-%5Br00007173%5D-jobsthatmatter-10055128?jobId=jobstreet-sg-job-10055128§ionRank=1184&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Deputy Director, Quantitative Strategy (DSAID) #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Team Introduction': '', 'How do we work:': '', 'Outcome Driven': '', 'Start Small and Move Fast': '', 'Ownership': '', 'Job Overview': '', 'What you will be working on:': 'Lead analytics engagement with agencies through retainers and forward deployed teams.Directly manage a team of data scientists, engineers and engagement managers.Guide the respective team leads to cultivate and execute a pipeline of impactful projects with agencies at the WOG level.Understand and appreciate technical blockers faced by the team and develop and advocate for organisational or resourcing solutions with senior management to help clear the blockers.Forge common ground and align expectations between the various stakeholders which include business end users, data and IT teams, as well as senior managements to ensure that resources are focused on creating business value.Engage and help elicit the business problem at hand, analyze and break down problems, understand how to define metrics and translate heuristic problem statements into computational problems answerable with data..Develop a coherent data story and influence problem owners and stakeholders on actionable insights that emerge from the analysis..Monitor the developments in data science within and outside Government, identify opportunities for growth and position the team to capitalize on these opportunities.Lead and inspire technical teams, forge a positive culture for staff retention among data scientists.to ensure that the forward deployed teams are operating in close alignment to DSAID’s approach and philosophy towards data science.', 'What we are looking for:': 'Experience in programme management.Experience in managing technical team such as data scientists and engineers.Strong stakeholder management and organisational skills.Excellent presentation and communication skills.Good understanding and appreciation of data science concepts, methodology and project lifecycle.Having a quantitative bent and a highly analytical mind, able to analyse and break down problems.Good understanding of public sector organisations and processes.'}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/deputy-director-quantitative-strategy-dsaid-jobsthatmatter-10052759?jobId=jobstreet-sg-job-10052759§ionRank=1185&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Team Introduction
[{'position': 'Lead Data Scientist / (2200012277) *'}, {'company_name': 'ALLEGIS GLOBAL SOLUTIONS (SINGAPORE) PTE. LTD'}, {'small_section': ['Singapore', 'Posted on 25-Oct-22']}, {'About Standard Chartered\xa0': '', 'Do\xa0the\xa0right\xa0thing': '', 'Never settle,': '', 'Be\xa0better together,': '', 'In\xa0line with our Fair Pay Charter,': '', 'Core bank funding for retirement savings,\xa0medical\xa0and\xa0life insurance,': '', 'Time-off': '', 'Flexible\xa0working': '', 'Proactive wellbeing support': '', 'A continuous learning culture': '', 'Being part\xa0of\xa0an inclusive\xa0and\xa0values driven organisation,': '', 'Recruitment assessments -': '', 'The\xa0Role\xa0Responsibilities': 'Design\xa0and\xa0develop client centric\xa0and\xa0bank wide ML-powered analytical products.Provide necessary data analytics support\xa0to\xa0various internal stakeholders, including (but\xa0not\xa0limited\xa0to): sales, relationship managers, leadership, traders.Develop machine learning\xa0and\xa0advanced analytics solutions with\xa0the\xa0aim\xa0of\xa0improving yields\xa0from\xa0the\xa0business\xa0and\xa0enable improved customer experience..Work\xa0alongside existing analytics teams\xa0to\xa0enable consistent approach\xa0to\xa0data requirements.Work\xa0alongside engineering team\xa0to\xa0make\xa0the\xa0models production-ready\xa0and\xa0deployable for use\xa0of\xa0internal customers.', 'Regulatory\xa0& Business Conduct': 'Display exemplary conduct\xa0and\xa0live by\xa0the\xa0Group’s Values\xa0and\xa0Code\xa0of\xa0Conduct..Take personal responsibility for embedding\xa0the\xa0highest standards\xa0of\xa0ethics, including\xa0regulatory\xa0and\xa0business conduct, across Standard Chartered Bank. This includes understanding and ensuring compliance with, in letter and spirit,\xa0all\xa0applicable laws, regulations, guidelines\xa0and\xa0the\xa0Group Code\xa0of\xa0Conduct..Lead\xa0to\xa0achieve\xa0the\xa0outcomes set out\xa0in\xa0the\xa0Bank’s Conduct Principles: [Fair Outcomes for Clients; Effective Financial Markets; Financial Crime Compliance;\xa0The\xa0Right\xa0Environment.] *.Effectively\xa0and\xa0collaboratively identify, escalate, mitigate\xa0and\xa0resolve risk, conduct\xa0and\xa0compliance matters..', 'Key Stakeholders': 'Global Head\xa0of\xa0Digital Channels\xa0and\xa0Data Analytics, Global Heads\xa0of\xa0Credit\xa0and\xa0Macro Trading\xa0.', 'Our\xa0Ideal\xa0Candidate': 'MSc./PhD\xa0in\xa0a quantitative discipline (e.g. mathematics, physics, computer science, engineering).Ability\xa0to\xa0learn\xa0new\xa0skills (e.g.\xa0new\xa0programming\xa0languages,\xa0new\xa0business terminology).'}, {'Career Level': 'Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '11C4535', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tAllegis Global Solutions is the exclusive Contingent HR services provider for one of the world’s leading banks.\n\n\t\tAt Allegis Global Solutions we’re proud to be the leader in global talent solutions. We draw upon decades of industry expertise to develop innovative tools, products, processes and strategies focused on outcome. Moreover, we’re incredibly proud to have built a culture that empowers our people to make their mark while making deep connections that will last a lifetime. With our passion and culture for talent, we are truly transforming the way the World acquires talent.\n\n\n\t\tOur Client is one of the world's most international banks with over 1,100 branches, offices and outlets in 67 countries. They operate in some of the world's most dynamic markets and have been for over 150 years. More than 90 per cent of their income and profits are derived from Asia, Africa and the Middle East. Their brand promise, Here for good, underlines their distinctive approach.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-scientist-2200012277-*-10101050?jobId=jobstreet-sg-job-10101050§ionRank=1187&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
About Standard Chartered
[{'position': 'NLP Engineer - AI Lab'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': [], 'About The Team': 'Responsible for development of NLP technologies in our products.Participate in and support the incubation of new NLP technologies.Participate in research on NLP technologies.', 'Qualifications': "Bachelor's degree or above, majoring in Computer Science, or related fields.Rich experiences and strong skills in development of technologies in some of the following areas,.Natural language understanding.Natural language generation.Knowledge and reasoning.Recommendation and search.Reinforcement learning.Deep learning and representation learning.Machine Translation.Strong analytical and problem-solving skills..Strong computer science and coding skills (e.g. Python/Java/Go/C/C++);.Work and collaborate well with team members;.Senior candidates have the ability to organize and lead teams and projects.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-engineer-ai-lab-10132676?jobId=jobstreet-sg-job-10132676§ionRank=1188&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Assistant Manager/ Manager, Product Analytics, Tracking & Development (iChangi App) (5767)'}, {'company_name': 'Changi Airport Group (Singapore) Pte. Ltd.'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities:': 'Review\xa0and\xa0enhance the analytics\xa0and\xa0tracking regime for iChangi app\xa0and\xa0other associated digital products.Develop\xa0new\xa0reporting dashboards to support iChangi app’s agile development.Work\xa0with user engagement team to develop a holistic way to assess feature performance.Lead\xa0and\xa0implement iChangi’s personalization\xa0and\xa0experimentation framework,\xa0and\xa0work\xa0with developers to implement capabilities\xa0and\xa0features needed to support personalization\xa0and\xa0experimentation.Steward agile development processes\xa0and\xa0release management of products.Work\xa0with other business units to develop suitable models for segmenting users\xa0based\xa0on click-through behaviors\xa0and\xa0other data points,\xa0and\xa0to deploy these models to power personalization on the app.Work\xa0with business stakeholders to plan, design, run\xa0and\xa0evaluate A/B experiments on the app\xa0.Develop key metrics to measure the success of the products\xa0and\xa0determine next steps\xa0and\xa0work\xa0with the tech team to ensure the necessary analytics capabilities are implemented\xa0.Champion value-driven development by planning\xa0and\xa0conducting post-mortem analysis, user testing,\xa0and\xa0experimentation, to validate feature\xa0fit.', 'Requirements:': 'At least 3\xa0years\xa0of experience in a relevant\xa0or\xa0similar position\xa0.Have experience with Adobe Analytics, Adobe Target\xa0and\xa0other relevant web tracking softwares.Experience with customer segmentation, machine learning\xa0and\xa0big data analysis.Strong\xa0organisation\xa0and\xa0stakeholder management skills.Demonstrate\xa0strong\xa0ability to translate data to actionable insights.Ability to solve problems creatively\xa0and\xa0effectively.Results\xa0and\xa0customer oriented.A\xa0good\xa0team player that is resourceful\xa0and\xa0able to\xa0work\xa0independently.Ability to multi-task\xa0and\xa0thrive in a dynamic\xa0and\xa0fast paced\xa0environment\xa0.Motivated\xa0and\xa0driven, with a curiosity\xa0and\xa0openness to constantly look for\xa0new\xa0solutions\xa0and\xa0ways of\xa0working\xa0to tackle\xa0new\xa0challenges\xa0.Excellent written\xa0and\xa0verbal communication skills..Degree\xa0in Business / Data Analytics / Economics / Information Technology / Information Systems / Computer Science or a related field preferred.'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200910817N', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Aerospace / Aviation / Airline'}, {'Company Overview': "As one of the world's leading airport companies, Changi Airport Group manages Changi Airport and undertakes key functions including airport operations and management, air hub development, commercial activities and airport emergency services. We aspire to build a company where ordinary people achieve extraordinary results; one where our people possess a passion for service and are committed to teamwork, integrity and excellence. Working together with our colleagues and partners to achieve the best outcome, we deliver innovative services and create a world-class experience for our passengers. With a set-up of multiple businesses, we present challenging work and diverse opportunities for our employees to further their personal and professional growth, providing a platform for them to develop and see through their ideas and contributions, making an impact to our organization and to the communities we serve locally and globally. Together, we are exceptional people, connecting lives."}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-manager-manager-product-analytics-tracking-development-ichangi-app-5767-10056329?jobId=jobstreet-sg-job-10056329§ionRank=1189&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Fellow, (Artificial Intelligence) (R00010346)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Description:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.', 'Job Requirements:': 'Research and Comprehensive Skills:.Coding Skills:.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-r00010346-10046381?jobId=jobstreet-sg-job-10046381§ionRank=1191&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Engineer II, - (Big Data & IoT) (R00009221) -#WorkNow-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Key Responsibilities:\xa0': '', '\xa0': '', 'Job Requirements:\xa0': 'Masters from a reputed institute.Must have a minimum 4 years of hands-on experience in building the data pipeline using Python, Kafka & Spark.Must have solid concepts on IoT & Sensors.Must have experience in pulling data from Gateways / Edge Devices.Must have done minimum 2 end to end Big Data Pipeline implementations, either on cloud or on-premise.Experience in configuring or developing custom code components for data ingestion, data processing, and data provisioning, using Big data & distributed computing platforms such as Python Spark, and Cloud platforms such as AWS or Azure..Must have hands-on knowledge of Spark RDD, DataFrame, MLLib and Streaming API.Must have solid experience in advance python programming.Knowledge of Python ML will be an added advantage.Proficiency in data modelling, for both structured and unstructured data, for various layers of storage.Must have ability to collaborate closely with business analysts, architects, and client stakeholders to create technical specifications..Must have expertise in building the CI / CD Pipeline & Automatics deployment of jobs.', 'Skills and Proficiency': 'Solid Python Programming skills.Spark, Kafka, Spark RDD, Streaming API.Pandas, Numpy, MatplotLib, Scikit-learn.Git-lab, CI / CD Pipeline.Docker.Excellent Communication Skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-ii-big-data-iot-r00009221-worknow-jobsthatmatter-10138870?jobId=jobstreet-sg-job-10138870§ionRank=1192&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Research Scientist B (Electrical & Electronics Engineering/Material Science/Physics/Chemistry) (R00008964)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'To develop III-V compound semiconductor-based LDs and its integration with external switches.Formulate and execute DOEs for process development/process optimization.Sourcing of required equipment/tool for the fabrication of LDs and its testing.Design of Epi-layer design, Layout, process steps and recipes for the fabrication of LDs.Prepare the run-sheets for the full fabrication of LDs up to the level of packaging.Work with the Fab manager/module leaders for the smooth flow of LD fabrication.Contribute to research reports for project deliverables, new project proposal drafting and etc....Perform other duties related to optical devices and its integration or assigned by higher management.Preparing process documentations with the standard of ISO 9001:2015 or ISO 9001:2018.', 'Job Requirements': ''}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-b-electrical-electronics-engineering-material-science-physics-chemistry-r00008964-10046462?jobId=jobstreet-sg-job-10046462§ionRank=1193&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Engineer, - Global Payments #WorkNow'}, {'company_name': 'BYTEDANCE PTE. LTD.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities:': "Improve payment performance and drive business growth of ByteDance's core businesses, such as e-commerce, TikTok, and games;.Develop data warehouse and data query services.Develop data-related product requirements, and be able to independently understand requirement, design schemes, and implement..", 'Qualifications': "Bachelor's degree or above in Computer Science, Statistics, Mathematics or other related majors;.Familiarity with at least one programming language such as Python, Java, Scala, Go, etc.;.A strong engineering background and interest in data;.Prior experience with writing and debugging data pipelines using a distributed data framework (Hadoop/ Spark/ Flink /Storm etc.);.Proficient in databases, strong SQL/ETL development ability;."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201923456H', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Vision, Regular hours, Mondays - Fridays, Casual & Business'}, {'Company Overview': "\n\n\t\tFounded in 2012, ByteDance's mission is to inspire creativity and enrich life. With a suite of more than a dozen products, including TikTok, Helo, and Resso, as well as platforms specific to the China market, including Toutiao, Douyin, and Xigua, ByteDance has made it easier and more fun for people to connect with, consume, and create content.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-global-payments-worknow-10124518?jobId=jobstreet-sg-job-10124518§ionRank=1194&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Data Ops Engineer (Python) | 12-Months Contract'}, {'company_name': 'Manpower Staffing Services (S) Pte Ltd - SCS'}, {'small_section': ['Central', 'Posted on 17-Oct-22']}, {'Job Scope:': '', 'Job Qualifications:': 'Degree in Computer Science or equivalent.At least 3 years of professional experience in data analytics.Experience building production-grade data pipelines.Experience in programming/scripting languages, preferably Python and SQL.Passionate about designing resilient data pipelines and systems, including data audits, unit tests, and documentation.Have AWS cloud experience (AWS certification is a plus).Have CI/CD experience.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '.', 'EA No.': '02C3423', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tManpower is the global leader in contingent and permanent recruitment workforce solutions. It is part of ManpowerGroup, the world leader in innovative workforce solutions, which creates and delivers high-impact solutions that enable clients to achieve their business goals and enhance their competitiveness.\n\n\t\tManpower has provided organizations in Singapore with a continuum of staffing solutions from the incidental to the strategic since 1996, working with businesses to help them win. In the Human Age, where talent has replaced access to capital as the key competitive differentiator, Manpower Singapore leverages its trusted brand to develop a deep talent pool, providing clients with access to the people they need, fast. Manpower Singapore creates powerful connections between organizations and the talent they need to enhance their competitiveness and unleash their workforce potential. By creating these powerful connections, we help everybody achieve more than they imagined, and power the future of work.\n\n\t\tSee what is humanly possible at manpower.com.sg.\xa0\n\n\t\tPlease note that your response to this advertisement and communications with us pursuant to this advertisement will constitute informed consent to the collection, use and/or disclosure of personal data by Manpower for the purpose of carrying out its business, in compliance with the relevant provisions of the Personal Data Protection Act 2012.\xa0To learn more about ManpowerGroup's Global Privacy Policy, please visit https://www.manpower.com.sg/privacy-policy\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-ops-engineer-python-%7C-12-months-contract-10073760?jobId=jobstreet-sg-job-10073760§ionRank=1196&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Job Scope:
[{'position': 'Research Fellow, - (Mathematical AI for Molecular Data Analysis) - (R00008503)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Perform molecular data analysis, including molecular dynamics analysis, quantum mechanism analysis, geometric and topological modeling.Data analysis with machine learning and deep learning models.', 'Job Requirements': 'PhD in Mathematics, computer sciences, bioinformatics, computational physics/chemistry/biology, or other related areas.Previous experience on topological data analysis, machine learning and molecular data analysis is preferred.Have good training on computation, algorithm design and modeling.Research areas on applied topology, computational geometry/topology, molecular dynamics, bioinformatics, data analysis, and machine learning.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-mathematical-ai-for-molecular-data-analysis-r00008503-10140222?jobId=jobstreet-sg-job-10140222§ionRank=1197&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Senior Manager, Ecosystem & Capability Development (1-Year Direct Contract)#JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What you will be working on:': 'Reporting to the Director, GovTech Digital Academy.Identify and build an integrated network of senior practitioners and global technology and knowledge partners across major domains – Cloud, Data Science, AI/ML, Cyber Security, Software Engineering, Product Management etc.Examine public agencies’ digital maturity and digital transformation plans with a focus on designing and executing concrete roadmaps, especially in the areas of digital upskilling and manpower capability building.Analyze and deep dive into the emerging skills and cross-functional capabilities required for a future-focused and digitally-enabled public service workforce. Implement relevant and progressive interventions that directly addresses gaps, needs, and ambitions\xa0.Engage key internal and external stakeholders for an aggregated understanding of priorities towards digital transformation.', 'What we are looking for:': 'Regional or global experience designing and executing collaborations and partnerships, ideally with major technology companies\xa0.Experience and success in delivering innovation projects, solutioning, and executing strategy and digital transformation roadmaps.Expertise in learning needs analysis – by organizations or job roles; upskilling, reskilling, and a competency-based approach to professional skills development.Knowledge of key technologies and methodologies – eg., Cloud, AI/ML, Data Science & Analytics, Cyber Security, Design Thinking, Sensors & IoT, Agile etc.Strong communication and influencing skills with the ability to unpack complex problems with clarity, focus, and concision. Experience engaging senior stakeholders, including C-suite.Hands-on doer with a sharp and analytical mind. Enjoys problem solving and leveraging on collective insights to make informed win-win decisions.Entrepreneurial and nimble. Able and willing to iterate and move forward swiftly; comfortable navigating an evolving technological landscape that demands dynamic assessment and decision making.'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '7 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-manager-ecosystem-capability-development-1-year-direct-contract-jobsthatmatter-10052655?jobId=jobstreet-sg-job-10052655§ionRank=1199&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
What you will be working on:
[{'position': 'Big Data Lead #Immediate #WorkNow #UrgentHire'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'About the Job:': 'The Job is to design, define, maintain, and support\xa0the architecture of existing product. As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system. You will also be the backend lead of a small dynamic team of software developers..You will\xa0work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..', 'About the Team:': 'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..', 'Responsibilities:': 'The candidate is responsible for developing and working with peers to build sustainable and well-defined components that can enhance or introduce new innovative features to existing product..', 'As the backend team lead,\xa0your will provide leadership in the following:': 'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work\xa0with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work\xa0with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..', 'Basic Qualifications:': 'Bachelor’s degree in Computer Science, Computer Engineering, or a software related discipline, from an accredited\xa0college\xa0or\xa0university.Must have hands-on experience in Big Data (Hadoop, HBase, Hive, Scala).Must have hands-on experience in Spark development, Sqoop, Flume, Kafka, nifi and Python.Must have experience with creating web services that can run in a high availability Cloud environment that can easily be monitored.Must have hands on experience in Java, spring, microservices, REST API, spring Boot, Scala, Hadoop, Spark, Kafka, Postgres, Docker, Kubernetes..Proven success working in a team-oriented environment and demonstrated problem solving skills..Must have an ability to identify, formulate, and solve engineering problems.', 'Desired Qualifications:': 'Experience in Architecture, design, implementation, and deployment of high volume, highly available, cloud-based systems would be a plus.Hands on experience in Java/Scala/Python or any programming language software development skills.Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..A proactive and eager nature for tackling new challenges.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-lead-immediate-worknow-urgenthire-10141803?jobId=jobstreet-sg-job-10141803§ionRank=1200&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing'}]
About the Job:
[{'position': 'NLP Scientist - AI Lab #JobsThatMatter #WorkNow'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': [], 'About The Team': 'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..', 'Qualifications': "Bachelor's degree or above, majoring in Computer Science, or related fields.Rich research experience in but not limited to the following areas (as main authors of published papers at ACL, EMNLP, NIPS, ICML, etc.):.Syntactic analysis.Language generation.Knowledge and inference.Reinforcement learning.Deep learning and representation learning.Highly competent in algorithms and programming, prefer winners in ACMICPC, NOI/IOI and Kaggle;.Ability to work and collaborate well with team members;.Ability to work independently;.Senior candidates have the ability to organize and lead teams and projects.."}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-scientist-ai-lab-jobsthatmatter-worknow-10144663?jobId=jobstreet-sg-job-10144663§ionRank=1202&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow, (Mathematic Modeling of Macromolecular Assembly) (R00010338)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Description:': 'Perform high-end cell biological imaging, and quantitative imaging analysis to understand how biomolecular assembly in vivo and in vitro, including but not limited to single-molecule imaging and super-resolution imaging.Carry out different quantitative protein biochemistry works regarding protein purification, protein interaction, and protein function in regulating cytoskeleton assembly.', 'Job Requirements:': 'PhD in biochemistry, biophysics, and molecular and cell biology.Prior related research experience would be advantageous\xa0.Ability to work independently as well as teamwork.\xa0.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-mathematic-modeling-of-macromolecular-assembly-r00010338-10046653?jobId=jobstreet-sg-job-10046653§ionRank=1203&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Analytics Head - Cards'}, {'company_name': 'Citibank N.A.'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Responsibilities:': "Develop and articulate analytical framework to solve business challenges in personal Loans and Credit card business..Extract actionable insights based on advanced analysis of customer behavior.Lead and develop reporting subordinates, especially around developing sound analytical approach to solve business problems.Drive innovative thinking about leveraging new tools/methods to transform the analytical capability of the organization.Understand regulatory implications and develop mitigation / opportunity strategies.Ensure robust quantity control in the analytical processes.Cross functional leadership (communication and influencing) to drive towards common goal.The incumbent will leverage industry best practices, navigate and leverage internal relationships and become the key point of contact to ensure delivery and adoption.Appropriately assess risk when business decisions are made, demonstrating particular consideration for the firm's reputation and safeguarding Citigroup, its clients and assets, by driving compliance with applicable laws, rules and regulations, adhering to Policy, applying sound ethical judgment regarding personal behavior, conduct and business practices, and escalating, managing and reporting control issues with transparency, as well as effectively supervise the activity of others and create accountability with those who fail to maintain these standards..", 'Qualifications:': '10+ years of experience.Experience in financial services.Ability in strategic thinking and the ability to frame business problems.Excellent analytical, technical and/or statistical skills with proven ability to translate large volumes of data.An influencer who communicates clearly and frequently to both technical analysts and non-technical business leaders.Intellectually curious, consistently seeking and developing new opportunities.Market research experience..', 'Education:': 'Bachelors/University degree, Master’s degree preferred.'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '200309485K', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\n\t\tCiti is more than a global financial services company. It’s an engine for progress. Join us, and you’ll have the chance to get involved in progress in all its shapes and forms, right across the world. From the micro to the macro, from Australia to Zambia, the work we do has real positive impact. Wherever you are and whatever you do, progress starts here.\n\n\nMission: Citi's mission is to serve as a trusted partner to our clients by responsibly providing financial services that enable growth and economic progress. Our core activities are safeguarding assets, lending money, making payments and accessing the capital markets on behalf of our clients. We are Citi, the global bank – an institution connecting millions of people across hundreds of countries and cities.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/analytics-head-cards-10128879?jobId=jobstreet-sg-job-10128879§ionRank=1204&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Big Data Lead #Immediate #Urgent #Seekbetter #UrgentHire'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'About the Job:': 'The Job is to design, define, maintain, and support\xa0the architecture of existing product..As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system..You will also be the backend lead of a small dynamic team of software developers..You will\xa0work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..', 'About the Team:': 'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..', 'Responsibilities:': 'The candidate is responsible for developing and working with peers to build sustainable and well-defined components that can enhance or introduce new innovative features to existing product..', 'As the backend team lead,\xa0your will provide leadership in the following:': 'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work\xa0with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work\xa0with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..', 'Basic Qualifications:': 'Bachelor’s degree in Computer Science, Computer Engineering, or a software related discipline, from an accredited\xa0college\xa0or\xa0university.Must have hands-on experience in Big Data (Hadoop, HBase, Hive, Scala).Must have hands-on experience in Spark development, Sqoop, Flume, Kafka, nifi and Python.Must have experience with creating web services that can run in a high availability Cloud environment that can easily be monitored.Must have hands on experience in Java, spring, microservices, REST API, spring Boot, Scala, Hadoop, Spark, Kafka, Postgres, Docker, Kubernetes..Proven success working in a team-oriented environment and demonstrated problem solving skills..Must have an ability to identify, formulate, and solve engineering problems.', 'Desired Qualifications:': 'Experience in Architecture, design, implementation, and deployment of high volume, highly available, cloud-based systems would be a plus.Hands on experience in Java/Scala/Python or any programming language software development skills.Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..A proactive and eager nature for tackling new challenges.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-lead-immediate-urgent-seekbetter-urgenthire-10139462?jobId=jobstreet-sg-job-10139462§ionRank=1205&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
About the Job:
[{'position': 'Data Scientist - #182251#WorkNow'}, {'company_name': 'Credit Suisse (Singapore) Limited'}, {'small_section': ['Singapore', 'Posted on 24-Oct-22']}, {'Your field of responsibility': '', 'As part of the role your responsibilities include:': 'Work closely with Business Users, Product Owners, Business Engineers, Data Scientists, and technology team to understand data science and machine learning requirements..Design & build AI/ML platform to automate predictive models and run data science use cases at scale.Work closely with Data Scientist to deploy data science prototypes in production.Monitor the algorithms and ensuring that they generate accurate results..Documenting machine learning processes..Keeping abreast of developments in machine learning..Responsible to ensure that AI/ ML solutions meets bank-wide ML modelling guidelines and standards.', 'Your future colleagues': '', 'Your skills and experience': '', 'Must have skills:': 'Advanced degree in computer science, data science, mathematics, statistics, physics or a related field..Extensive data modeling and data architecture skills.Solid programming skills in Python, R or Java, hands on experience in SQL & PL/SQL, ETL tool (PowerCentre Informatica) and Linux and Control-M knowledge is plus..Knowledge of Hadoop (Kafka, Spark, Impala, Hive)..Extensive knowledge of ML frameworks, libraries, data structures, data modeling, and software architecture..In-depth knowledge of mathematics, statistics, and algorithms..Ability to develop, monitor, debug and maintain a CI/CD pipeline that feeds into a production deployment..Good command and experience in building and maintaining Data Science and Business Intelligence applications..Excellent analytical and problem-solving abilities..', 'Nice to have skills:': 'Prior experience deploying applications on a cloud environment..Experience with Containerization.Ability to work in a SCRUM team and focus on delivery as well as concurrently on a number of different topics and to be able to change focus quickly as needed..', 'Your new employer': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197702363D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\tThe Credit Suisse Group purpose is at the core of everything we do. It underpins the value we create and has powered our progress for more than 160 years. It captures the essence of 'why' we exist as an organization. It motivates us when we come to work every day and serves as our North Star when we make decisions. Ultimately, it serves to define who we are and what we should be doing for our employees, clients and stakeholders.\n\tOur strategy builds on Credit Suisse's core strengths: our position as a leading wealth manager with strong global investment banking capabilities and our strong presence in our home market of Switzerland. We seek to follow a balanced approach to wealth management, aiming to capitalize on both the large pool of wealth within mature markets as well as the significant growth in wealth in Asia Pacific and other emerging markets.\n\tWe serve our clients through three regionally focused divisions: Swiss Universal Bank, International Wealth Management and Asia Pacific. These regional businesses are supported by an integrated global Investment Bank. Our Asset Management business is managed as a separate division, emphasizing the strategic importance of the asset management business for the bank and its clients.\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-182251-worknow-10096329?jobId=jobstreet-sg-job-10096329§ionRank=1206&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Your field of responsibility
[{'position': 'Smart Nation Fellowship Programme #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What’s in it for you?': '', 'What can you expect?': 'Build digital platforms, apps, and analytical and engineering solutions that transform ideas into tangible results..Collaborate with a dynamic team to co-create solutions to public sector problems..Engage with senior decision makers across government on the intersection of technology and public policy..', 'How can you succeed?': 'Expertise in artificial intelligence, blockchain, cloud, data science, cybersecurity, software development, UI/UX design, sensors and IoT, or other cutting edge technologies..Previous experience working on data, technology or engineering projects..Possess an advanced PhD, post-doctorates, or tenure-track faculty (less than 3 years on the job), or between 3 to 7 years of working experience..Candidates with tenure-track (more than 3 years on the job) or tenured faculty, or at least 8 years of working experience will be considered for a senior fellow role..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/smart-nation-fellowship-programme-jobsthatmatter-10053203?jobId=jobstreet-sg-job-10053203§ionRank=1207&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
What’s in it for you?
[{'position': 'Research Associate, (Mechatronics) #SGUnitedJobs #RIE (R00005723)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Descriptions:': 'Lead research and development capability in intelligent robotics/automation systems.Define, participates and leads cross-disciplinary integrative projects to achieve mission and goal.Execute prototyping to verify, and validate overall technology performance and analyse data.Provide advice and counsel in creative solutions with multiple stake holders.Identify technology gap, challenges and market opportunities.', 'Requirements:': "Master's Degree in Mechatronics or related studies.Experience in translate advanced machine vision to intelligent robotics motion.There will be a 6-12 months industry attachment."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-mechatronics-sgunitedjobs-rie-r00005723-10046585?jobId=jobstreet-sg-job-10046585§ionRank=1208&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Job Descriptions:
[{'position': 'Research Associate (Mechatronics) #SGUnitedJobs #RIE (R00005724)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Descriptions:': 'Lead research and development capability in intelligent robotics/automation systems.Define, participates and leads cross-disciplinary integrative projects to achieve mission and goal.Execute prototyping to verify, and validate overall technology performance and analyse data.Provide advice and counsel in creative solutions with multiple stake holders.Identify technology gap, challenges and market opportunities.', 'Requirements:': ''}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-mechatronics-sgunitedjobs-rie-r00005724-10046586?jobId=jobstreet-sg-job-10046586§ionRank=1209&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Job Descriptions:
[{'position': 'Assistant Professor in Economics and Data Science, - [R00006466]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 1-Nov-22']}, {'Emoluments': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/assistant-professor-in-economics-and-data-science-%5Br00006466%5D-10072660?jobId=jobstreet-sg-job-10072660§ionRank=1210&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Emoluments
[{'position': 'Research Fellow (Skin Omics Group), A*SRL'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Responsibilities:': 'Manage in vitro,\xa0in vivo, clinical sample preparation for metabolomics analysis.Perform sample analysis on targeted (QQQ) and untargeted (QTOF) metabolomics mass spectrometry workflows.Operate, troubleshoot, and maintain mass spectrometry instrumentation (LCMS, DESI, MALDI, QTOF).Analyze data with relevant vendor software and bioinformatics tools.Integrate metabolomics dataset with metadata (e.g. demographics) and other omics dataset (e.g. metagenomics).Manage the supervision and mentoring of junior scientists and students.Present results to industry partners, collaborators, and senior staff.Stay up to date with relevant scientific and technical developments.Maintain neat laboratory notes, prepare scientific reports, presentations, and manuscripts.Assist in laboratory safety management and risk assessments.', 'Qualifications:': 'Ph.D. in Chemistry, Biochemistry, Pharmacy, or equivalent\xa0.Experience with sample preparation for mass spectrometry workflows and analytical pipelines for omics data is essential.Experience with mass spectrometry imaging, vendor-specific software (Thermo Scientific, Waters) and open-source analysis software (Skyline) would be a plus.\xa0.Able to work in a multi-disciplinary team, possess strong organizational and project management skills, demonstrate initiative and able to work independently.High level interpersonal skills and ability to communicate effectively with a wide range of people, including the ability to clearly consult and liaise with internal and external stakeholders.Willing to learn and unafraid to explore outside current domain area.Excellent\xa0verbal and written communication skills.'}, {'Career Level': 'Senior Manager', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-skin-omics-group-a*srl-10065964?jobId=jobstreet-sg-job-10065964§ionRank=1212&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Associate (Artificial Intelligence) R00010348 #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 27-Oct-22']}, {'Job Description:': '', 'Job Requirements:': '', 'Research and Comprehensive Skills:': 'Independent and self-motivated researcher.Good paper reading and writing skills.Excellent publication record, including top-tier journals and conference papers in the related fields.Strong in Mathematics.', 'Coding Skills:': 'Familiar with any of the major deep learning libraries, including Pytorch, TensorFlow, MatConNet.Familiar with the image processing and optimization toolboxes in Matlab.Comfortable with Linux environment, including using vim, git, tmux, bash, etc.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-artificial-intelligence-r00010348-jobsthatmatter-10051655?jobId=jobstreet-sg-job-10051655§ionRank=1214&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Assistant (Computer Science/Electrical & Electronic Engineering) (R00007434)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:\xa0': 'Develop solutions for representation learning.Develop solutions for end-to-end clustering.Write and publish research papers in top-tier NLP/ML conferences (ACL, ICML, NeurIPS, ICLR, EMNLP).Collaborate with other PhD students\xa0.', 'Job Requirements:\xa0': '\u200bBS in Computer Science/Electrical & Electronic Engineering specializing in NLP, ML and Deep Learning.Skill in developing deep learning models in Pytorch.Excellent communication skill.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-electrical-electronic-engineering-r00007434-10051253?jobId=jobstreet-sg-job-10051253§ionRank=1215&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Livestream Business Data Analyst'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Responsibilities': "Establish analytical framework for the TikTok Live streaming team: root cause analysis, core metrics monitoring, and automated dashboards to surface key data insights to stakeholders and inform product strategies..Evaluate and forecast the impact of product features on creators, agencies, operation and the TikTok ecosystem..Dive deep into the data to understand how creator, 3rd parties, and viewer behaviors change with the evolution of our product. Understand top performers and use data to explore and analyze actionable operational strategies..Act as our team's thought leader on best practices and move towards a long-term vision of sustainable and thriving data processes..Work hand-in-hand with operation, product, engineering, and design to proactively influence and inform teammates' decisions throughout the business lifecycle..", 'Qualifications': 'Bachelor degree or above, major in mathematics, statistics, computer science is preferred; or major in science or engineering or engaged in data statistics, analysis, modeling related working areas after graduation..5+ years of domain experience in a mobile or consumer internet business, or in a high-velocity, high-growth product or team..Data analysis ability, familiar with Hive SQL, Python, R. Familiarity of machine learning Knowledge will be a plus..Familiar with statistics and dashboard, preferred to have experience in user growth, metrics creation, A/B testing, and data modeling..An impact-oriented, customer-centric approach to data analysis; Exceptional analysis, communication, and strategy report writing skills..Has a “can-do” attitude with a strong sense of ownership to execute end-to-end projects. Self-driven and able to manage and balance ongoing requests with proper prioritization..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/livestream-business-data-analyst-10130098?jobId=jobstreet-sg-job-10130098§ionRank=1216&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Scientist - Diagnostics R&D (Up to $5500 / Central) - CT2'}, {'company_name': 'MCI Career Services Pte Ltd'}, {'small_section': ['Queenstown', 'SGD\xa04,000 - SGD\xa05,500', 'Posted on 19-Oct-22']}, {'Job Summary': '', 'Job Description\xa0': 'Expertise in molecular biology techniques like DNA/RNA manipulation and amplification..Experience in microbiology and cell culture techniques such as bacteria, fungi, or virus isolation..Expertise/Experience in aptamers or antibodies..Experience in point of care devise or cartridge development..Perform data analyses & interpretation, and report writing.\xa0.', 'Job Requirements': 'PhD in Microbiology, Molecular or Cell Biology, Immunology or other suitable life science discipline.\xa0.2 to 5 years’ experience in industry or diagnostics R&D is advantageous..', 'APPLY NOW BUTTON': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200701947W', 'EA No.': '06C2859', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '15 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tWith over 100 professional employees, our consultants have been managing over 2,500 monthly advertisement and successfully matched 5,000 over job placement yearly. We are here to connect, source and deliver to meet your needs.\n\n\n\t\tWe have 4 subsidiaries; our companies strive to provide support to people and organizations in realizing their true potential that would enhance businesses with the right individual. We believe that we will only provide you with the best services because we are not here just to help but also to make companies interesting!\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-diagnostics-r-d-up-to-%245500-central-ct2-10080653?jobId=jobstreet-sg-job-10080653§ionRank=1217&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Job Summary
[{'position': 'NLP Scientist, - AI Lab #LetsGoToWork'}, {'company_name': 'BYTEDANCE PTE. LTD.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities': [], 'About The Team': 'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..', 'Qualifications': "Bachelor's degree or above, majoring in Computer Science, or related fields.Rich research experience in but not limited to the following areas (as main authors of published papers at ACL, EMNLP, NIPS, ICML, etc.):.Syntactic analysis.Language generation.Knowledge and inference.Reinforcement learning.Deep learning and representation learning.Highly competent in algorithms and programming, prefer winners in ACMICPC, NOI/IOI and Kaggle;.Ability to work and collaborate well with team members;.Ability to work independently.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201923456H', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Vision, Regular hours, Mondays - Fridays, Casual & Business'}, {'Company Overview': "\n\n\t\tFounded in 2012, ByteDance's mission is to inspire creativity and enrich life. With a suite of more than a dozen products, including TikTok, Helo, and Resso, as well as platforms specific to the China market, including Toutiao, Douyin, and Xigua, ByteDance has made it easier and more fun for people to connect with, consume, and create content.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-scientist-ai-lab-letsgotowork-10124773?jobId=jobstreet-sg-job-10124773§ionRank=1219&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Machine Learning Engr. - (Recommendation) - TikTok e-Commerce #Immediate #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': 'Work on recommendation systems, involving contents of various forms ranging from products, short videos to live streams, with each unified recommendation model fulfilling heterogeneous E-commerce scenarios/goals across multiple countries..Optimize e-commerce recommendation models at massive scales, using deep learning/transfer learning/multi-task learning techniques..Data mining and analysis to improve the quality of recommended contents..Conduct research on various topics, which aim to optimize content recommendation circulation, ranging from ensuring diversity and new discovery in recommendation contents, to cold-start problem for new users/items and discovery of high-quality products/live streamers..Develop innovative and state-of-the-art e-commerce models and algorithms.', 'Qualifications': 'Strong in data structures and algorithms, with excellent problem-solving ability and programming skills.Experience in applied machine learning, familiar with one or more of the algorithms such as Collaborative Filtering, Matrix Factorization, Factorization Machines, Word2vec, Logistic Regression, Gradient Boosting Trees, Deep Neural Networks etc..Experience in working with main components of recommendation systems(recall, sort, reranking, cold-start problem), with good understanding of mainstream recommendation models used in the industry.Experience in C++ and Python; at least one of the Big Data tools (For eg. Hive sql/Spark/Mapreduce; at least one of the Deep Learning tools(For eg. Tensorflow/Pytorch).Possess strong communication skills, positive mindset, good teamwork skills, and eagerness to learn/implement new technology and experiment.', 'Preferred Qualifications': 'Experience in personalized recommendation, online advertising, information retrieval or related fields..Publications at KDD、NeurIPS、WWW、SIGIR、WSDM、CIKM、ICLR、ICML、IJCAI、AAAI、RecSys and related conferences.Excellent performance in data mining, machine learning, or ACM-ICPC/NOI/IOI competitions.Developed widely-recognized machine learning project(s) on github or personal webpage.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engr.-recommendation-tiktok-e-commerce-immediate-urgenthire-10144185?jobId=jobstreet-sg-job-10144185§ionRank=1220&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Big Data Engineer - Data Engineering - (WD38319)'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Technical Competencies': 'Operating Systems (Linux).Databases (MySQL/MariaDB).Hadoop (Cloudera).Bigdata Technologies (Apache Spark, Impala, Python).Ansible, Python.Dockers , Kubernetes.', 'Responsibilities': 'Collaborates and works with Engineering team to develop technical solutions, plans and configuration, in response to requirements from Business and Application teams..Plan and build efficient data platforms, systems and infrastructure for intelligent engines which empower business critical features leveraging background of distributed systems and scalable analytics..Derive engineering principals for running platform in most optimized way. Conducts performance analysis and tuning on regular basis..Supports Innovation; Identify new areas of improvement for data infrastructure, big data technology with an eye to solve business problems..Assess common patterns and problems to create standardized solutions by centrally building core services and technology frameworks for analytics, intelligence and data technology teams..Automate system operations and establish zero touch routines..Apply new technology and process to improve system supportability, recoverability, availability and performance. Leverage and establish best practices for Big Data Platform.Perform application tuning, code reviews and share guidance to different application teams to ensure platform efficiency and stability..Supports a clear communication strategy that keeps all relevant stakeholders informed and provides an opportunity to influence the direction of the work.', 'Requirements': 'Possess good understanding and experience with analytical frameworks and languages such as SQL, Python, Docker, Kubernetes, Ansible etc..Well-versed in data analytics concepts, technologies and applications.Proven background of performance tuning and triage for Data infrastructure.Hands-on experience in implementing data Infrastructure solution.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-engineer-data-engineering-wd38319-10122312?jobId=jobstreet-sg-job-10122312§ionRank=1221&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Technical Competencies
[{'position': 'Site Reliability Engineer - Applied Machine Learning'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': '', '[About Tiktok]': '', '[About the Role]': '', 'Qualifications': '', 'Minimum Qualifications': 'Bachelor’s degree in Computer Science or equivalent with 3+yrs relevant experience..Proven experience in analyzing and troubleshooting distributed systems..Prior experience designing and maintaining large-scale systems..Experience programming in at least one of the following languages: Python or C/C++..', 'Preferred Qualifications': 'Ability to thrive in a fast-paced environment.\xa0.Strong understanding of code optimizing and routine tasks automation..Proficiency in at least one machine learning framework: TensorFlow, PyTorch, MXNet or PaddlePaddle..Solid background of algorithms and data structures..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/site-reliability-engineer-applied-machine-learning-10133474?jobId=jobstreet-sg-job-10133474§ionRank=1222&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Big Data Lead - #Immediate #Worknow #UrgentHire #Seekbetter'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'About the Job:': 'The Job is to design, define, maintain, and support\xa0the architecture of existing product. As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system. You will also be the backend lead of a small dynamic team of software developers..You will\xa0work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..', 'About the Team:': 'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..', 'Responsibilities:': 'The candidate is responsible for developing and working with peers to build sustainable and well-defined components that can enhance or introduce new innovative features to existing product..', 'As the backend team lead,\xa0your will provide leadership in the following:': 'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work\xa0with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work\xa0with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..', 'Basic Qualifications:': 'Bachelor’s degree in Computer Science, Computer Engineering, or a software related discipline, from an accredited\xa0college\xa0or\xa0university.Must have hands-on experience in Big Data (Hadoop, HBase, Hive, Scala).Must have hands-on experience in Spark development, Sqoop, Flume, Kafka, nifi and Python.Must have experience with creating web services that can run in a high availability Cloud environment that can easily be monitored.Must have hands on experience in Java, spring, microservices, REST API, spring Boot, Scala, Hadoop, Spark, Kafka, Postgres, Docker, Kubernetes..Proven success working in a team-oriented environment and demonstrated problem solving skills..Must have an ability to identify, formulate, and solve engineering problems.', 'Desired Qualifications:': 'Experience in Architecture, design, implementation, and deployment of high volume, highly available, cloud-based systems would be a plus.Hands on experience in Java/Scala/Python or any programming language software development skills.Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..A proactive and eager nature for tackling new challenges.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-lead-immediate-worknow-urgenthire-seekbetter-10141534?jobId=jobstreet-sg-job-10141534§ionRank=1223&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
About the Job:
[{'position': 'Principal Research Scientist, (Engineering) (R00003838) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Development of an IOT product line.Responsible for the offer plan and technical/economical decisions.D elivering new IOT solutions and communication architectures for energy utilities.', 'Job Requirements:': 'Master’s or PhD in engineering.Know-How on IoT applications for Energy Efficiency and Grid Applications.Project manment with PMP Certification.Knowledge in Artificial Intelligence applications, IOT platforms and communication.Experience in implementation of an open IoT platform.Cloud security experience.Proficient with SaaS, PaaS, and Openstack/Opensource technologies.Thought leader, and/or certicitation in modern IT/developer operations.Minimum 15 of experience.CWNA or relevant certification is advantous.'}, {'Career Level': 'Senior Manager', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '15 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-research-scientist-engineering-r00003838-seekbetter-10136231?jobId=jobstreet-sg-job-10136231§ionRank=1224&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow - (Computer Science/Vision/Graphics) (R00010451)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:\xa0': 'Contribute to design and development of the perception system of our autonomous mobile robot project..Support collaboration with academia and help translate state of the art academic research results in mobile robotics and machine learning to production ready systems..Contribute to the development of internal infrastructure for managing the training, testing/quality assurance, and deployment of both machine learning models and software modules for the perception system..Provide support and leadership in system architecture design for autonomous mobile robot systems..Represent Continental-NTU Corp Lab in national and international initiatives..Carry out project planning, tracking, and reporting..', '\xa0': '', 'Job Requirements:\xa0': 'Must hold\u202fa PhD degree in computer science, computer vision, computer graphics, robotics, video game programming, or machine learning..Proven track record in research excellence as evidenced by published in at least one of the following conferences as an author, SIGGRAPH, CVPR, ICCV, ECCV, ACCV, WACV, BMVC, ICCP, ISMAR, NeurlPS, ICLR, ICRA, IROS, RSS, or in major CV/CG/Robotics/Machine learning journals..Must be passionate about generating new ideas, solving problems, and building working systems..Must be self-motivated, proven collaborators, good communicators, attentive to details, and keen to learn..Ideally have practical experience working in an academic or industrial research environment.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-vision-graphics-r00010451-10046307?jobId=jobstreet-sg-job-10046307§ionRank=1225&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Associate, (Computer Science & Data Science) - R00005334'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Key Responsibilities:': 'The Research Associate (RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning..The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data..', 'Job Requirements:': 'Master degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal and graph data.Programming skills and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-data-science-r00005334-10065487?jobId=jobstreet-sg-job-10065487§ionRank=1226&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Analyst - Internal Audit & Risk Control - (APAC) #LetsGetToWork'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': 'Identify and acquire the necessary data from relevant source systems needed for the audit projects..Planning, development, and execution data analysis procedures to create sustainable and repeatable data analytics in the assessment of IT and business processes..Assist in all phases (planning, fieldwork, and reporting) of the IT audit projects which includes but is not limited to performing walkthroughs, testing of technology controls across the Information Security Governance and Operations, Incident Response, Identity & Access Management, Data Privacy, Application Vulnerability Management, etc.', 'Qualifications': 'Has a university degree. Preferred areas of study: Information Systems or Computer Science, engineering, or comparable qualification/background.Solid experience with data analytics tools (e.g. SQL, Python).3 - 6 years of experience in Data analytics.Industry Experience: Prior intelligence experience in E-commerce, internet, - High-tech, Telco, financial, or other fast paced and global environments..Information security and data privacy experiences will be of added advantage..Open to 20%-30% travel. Please note that this will only be applicable when travel restrictions are lifted..Preferred certifications: CISA, CISSP, CISM, CIA etc..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Audit & Taxation', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-internal-audit-risk-control-apac-letsgettowork-10144770?jobId=jobstreet-sg-job-10144770§ionRank=1227&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Lecturer/Senior Lecturer in Data Analytics (R00009474) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 7-Nov-22']}, {'Requirements:': 'Applicants should have extensive industry and/or academic experience, a passion for teaching and preferably possess a Masters’ degree in information systems, computer science, statistics, or a closely related discipline, with the relevant professional qualifications..We are keen on applicants with strong industry experience in implementing data analytics and artificial intelligence solutions. Mastery in programming languages such as R, SAS, or Python is necessary. Candidates should be able to deploy statistical as well as machine learning analytical solutions using these tools..Candidates should demonstrate teaching excellence at the undergraduate/graduate level, and are able to engage in curriculum development and course administration for undergraduate and graduate analytics courses..Candidates should have a passion for teaching, excel at teaching and work closely with students. Candidates must have the versatility to teach multiple courses at the undergraduate and graduate levels. Lecturers and Senior Lecturers are expected to excel at teaching and service, work closely with students, and contribute to practice-based research and development of courses that leverage technology-enabled learning. Appointment terms are for three years. As we are expanding our course offerings, we seek versatile individuals who can teach courses at the undergraduate and graduate levels..NTU offers an internationally-competitive salary commensurate with the candidate’s qualifications and experience..', 'Application:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/lecturer-senior-lecturer-in-data-analytics-r00009474-urgenthire-10141922?jobId=jobstreet-sg-job-10141922§ionRank=1228&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Requirements:
[{'position': 'E-commerce Data Analysis Manager #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': "Responsible for data analysis for TikTok e-commerce's global business products independently, including merchant product, creator product, etc.; and data analysis of e-commerce overseas operation strategy including Merchant Strategy, Creator Strategy, etc.;.Measure performance of each e-commerce product in overseas countries, and provide product optimization suggestions;.Design the event tracking system for each module of global e-commerce products, verify the accuracy of event tracking system after release, and maintain the event tracking system and specifications in subsequent versions;.Describe the situation of business, explain the fluctuations of business and provide valuable suggestions with reports..Design the monitoring systems independently to reflect any changes of business in time..Design A/B test, and give the optimal product design scheme according to the data performance after launch;.Follow up the data analysis of local operation teams in several overseas markets, support the operation effect and give the follow-up optimization suggestions;.Cooperate with PM / Ops team / R&D to promote the implementation of optimization scheme, and to bring about the actual improvement and growth of business;.Cooperate with R&D and Data PM to build data systems and user-friendly data products to support business..", 'Qualifications': 'Bachelor degree or above, major in mathematics, statistics, computers is preferred; or major in science or engineering or engaged in data statistics, analysis, modeling related working areas after graduation;.Proficient in SQL and tableau and familiar with Python or R for data analysis..At least 5 years of working Experience in data analysis, and have a good business sense in ecommerce product analysis is preferred;.Overseas working experience or analytical experience is preferred;.Able to complete English reports and communicate with global staff independently;.Have a strong learning ability and curiosity; ability to quickly pick up domain knowledge in new areas; Can lead a small project team to support business;.Have a strong ability to work under pressure, have the courage to overcome difficulties and accept challenges..'}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/e-commerce-data-analysis-manager-immediate-10143983?jobId=jobstreet-sg-job-10143983§ionRank=1230&token=0~e08a8871-42c3-4f01-ac8d-b2fd73d084c5&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Machine Learning Engineer, E-Commerce Risk Control'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': [], 'The E-Commerce Risk Control (ECRC) team is missioned:': 'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics..Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..', 'Qualifications': 'Bachelor or degrees above in computer science, statistics, math, internet security or other relevant STEM majors (e.g. finance if applying for financial fraud roles)..Solid data science skills. Proficiency in statistical analytical tools, such as SQL, R and Python..Familiarity with machine learning or social/content online platform analytics. Bonus given to proficiency in modern machine learning applications..Ability to think critically, objectively, rationally. Reason and communicate in result-oriented, data-driven manner. High autonomy..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-e-commerce-risk-control-10145239?jobId=jobstreet-sg-job-10145239§ionRank=1233&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Principal Engineer - 22WD61070 #UrgentHire'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted 6 hours ago']}, {'Position Overview': '', 'Responsibilities': 'Research, design and building machine learning and deep learning solutions to new problems.Lead machine learning based research with cross-functional teams to discover new business opportunities.Advocate and implement the best practices, in terms of knowledge, technology and process, to ensure the team is working effectively to deliver customer value while also constantly learning to remain up to date in a rapidly changing domain.Collaborate effectively with product management, engineering, design and other stakeholders to deliver products that have a quantifiable impact on Autodesk’s business.', 'Minimum Qualifications': 'Proven track record overseeing machine learning projects at all stages, from initial conception to implementation and optimization.Collaborative, respectful, and inclusive engineer who is interested to work in a diverse and global team.', 'Preferred Qualifications': '3+ years’ experience in developing and shipping machine learning, natural language processing or deep learning models.Experience in Python.Experience in deep learning libraries, such as PyTorch and TensorFlow.Experience working with big data platforms (Hadoop, Spark, Hive) and orchestration frameworks (Airflow) and analytic environments (SageMaker).Experience working with AWS services like ECR, S3 & Lambda.Experience in data pre-processing and building ML pipelines.Strong communicator who can explain complex topics to both a technical and non-technical audience.Excellent communication skills, project management skills, and technical management skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-engineer-22wd61070-urgenthire-10147130?jobId=jobstreet-sg-job-10147130§ionRank=1234&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Research Fellow (Char and activated carbon) - [R00007916]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Coordinate the project execution and communication among the collaborating parties.Work synergistically with PI and Co-I in experimental designs, conducting experiments, troubleshooting and data analysis.Provide expertise on modification and application of char generated from the pyrolysis of waste/biomass for different potential areas which include purification/adsorption processes, catalytic conversion, and electrochemistry reactions.Design and conduct the screening, testing, usage, and optimization of char and activated carbon in different applications (sorbent, catalysis, electrochemistry, etc.).Perform characterization of materials applied and the modified char/activated carbon produced.Provide training to research associate/assistant on the relevant skills for the proposed project.Summarise the findings in this project and produce the progress reports, final report and scientific recommendations.', 'Job Requirements': 'Ph.D. degree in Chemical Engineering, Environmental Engineering, Electrochemistry, Analytical Chemistry, or a relevant field.Experience in production, testing, modification and application of char and activated carbon.Extensive knowledge in various applications of char/activation and carbon characterization is desired.Good record of peer-reviewed papers is advantageous.Scientific article, proposal and report writing skills are required.Good interpersonal skills.Good English writing and communication skills.Excellent teamwork awareness.Productive, hard-working and dedicated to the completion of any task assigned.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Chemical Engineering', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-char-and-activated-carbon-%5Br00007916%5D-10051649?jobId=jobstreet-sg-job-10051649§ionRank=1235&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Computer Vision Research Scientist, - Data Monetization Technology*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Responsibilities': 'Conduct cutting-edge research in the fields of computer vision and machine learning..Ensure technologies get successfully applied to products..Incubate new products with computer vision and machine learning technologies..', 'Qualifications': 'Ph.D. degree in Computer Science, Computer Engineering or other relevant majors..Rich research experience in but not limited to the following areas (as main authors of published papers at CVPR, ICCV, ECCV, ICML, NeurIPS, and ICLR).Image/video search.Image/video classification/understanding.Object detection, segmentation, and tracking.Representation learning (multi-modality, pre-training, vision transformer, etc.).OCR.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/computer-vision-research-scientist-data-monetization-technology*-10104258?jobId=jobstreet-sg-job-10104258§ionRank=1236&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow (Char and activated carbon) - R00007916'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Coordinate the project execution and communication among the collaborating parties.Work synergistically with PI and Co-I in experimental designs, conducting experiments, troubleshooting and data analysis.Provide expertise on modification and application of char generated from the pyrolysis of waste/biomass for different potential areas which include purification/adsorption processes, catalytic conversion, and electrochemistry reactions.Design and conduct the screening, testing, usage, and optimization of char and activated carbon in different applications (sorbent, catalysis, electrochemistry, etc.).Perform characterization of materials applied and the modified char/activated carbon produced.Provide training to research associate/assistant on the relevant skills for the proposed project.Summarise the findings in this project and produce the progress reports, final report and scientific recommendations.', 'Job Requirements': 'Ph.D. degree in Chemical Engineering, Environmental Engineering, Electrochemistry, Analytical Chemistry, or a relevant field.Experience in production, testing, modification and application of char and activated carbon.Extensive knowledge in various applications of char/activation and carbon characterization is desired.Good record of peer-reviewed papers is advantageous.Scientific article, proposal and report writing skills are required.Good interpersonal skills.Good English writing and communication skills.Excellent teamwork awareness.Productive, hard-working and dedicated to the completion of any task assigned.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Chemical Engineering', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-char-and-activated-carbon-r00007916-10046426?jobId=jobstreet-sg-job-10046426§ionRank=1237&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Machine Learning Engineer Intern (Content Safety) - 2022'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'About the team': '', 'Responsibilities': "Build industry-leading content safety systems for TikTok;.Develop highly-scalable classifiers, tools, models and algorithms leveraging cutting-edge machine learning, computer vision and data mining technologies;.Understand product objectives and improve trust and safety strategy and model's performance;.Work with cross-functional teams to protect TikTok globally..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in computer science or a related technical discipline;.Solid experience in at least one of the following areas: machine learning, pattern recognition, NLP, data mining, or computer vision;.Experience in recommendation, search, advertising, or other related projects;.Published papers in the top AI conferences or journals is a plus, including KDD, IJCAI, WWW, WSDM, ICML, NeurIPS, CVPR, ECCV, ICCV, ACL, etc.;.Competition experience in machine learning, data mining, CV, NLP, etc.;.Good understanding of data structures and algorithms;.Passion for techniques and solving challenging problems..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-intern-content-safety-2022-10129990?jobId=jobstreet-sg-job-10129990§ionRank=1238&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
About the team
[{'position': 'Research Associate (Computer Science/Electrical Engineering) (R00007741)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Develop data analytics framework for a data centre deployed in tropical environment.Analyze data collected from various sensors and other indicators from the data center.', 'Job Requirements:': '\u200bMaster’s degree in Computer Science, Electrical Engineering, or related disciplines.Strong research experience.Good track record of publications.Good teamwork and collaboration skills.Research background in optimization and/or game theory.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-electrical-engineering-r00007741-10051398?jobId=jobstreet-sg-job-10051398§ionRank=1239&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow/Scientist (Translational Biophotonics Laboratory), IBB'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Job\xa0description:\xa0': 'Develop novel optical and/or electronic imaging and spectroscopy systems, including hardware implementation, software interface and data/image processing for medical and agri-food technology applications.Work closely with scientists from various backgrounds and clinicians from hospital clusters in Singapore to develop technologies and conduct translational research\xa0.Present analysis results and project solutions to technical leads and senior leaders as necessary\xa0.Ensure deliverables are completed on-time.', 'Requirements:\xa0': 'Ph.D in engineering, physics and/or photonics.Applicants with relevant project experience will be\xa0considered.Experience/skills in optical/photonics system development for spectroscopy imaging applications.Good knowledge in software interfacing with hardware instruments, such as LabVIEW, Python or MATLAB\xa0.Skills in data or image processing using Python, MATLAB or other programming languages\xa0is advantageous.Good oral and written communication skills.Able to work in a multidisciplinary team, demonstrate initiative and work independently with strong interpersonal skills.Good publication record in international journals.Interest for translational research.Interest/experience in product commercialization is advantageous\xa0.'}, {'Career Level': 'Senior Manager', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-scientist-translational-biophotonics-laboratory-ibb-10066080?jobId=jobstreet-sg-job-10066080§ionRank=1240&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Job description:
[{'position': 'Data Framework Engineer #JobsThatMatter #Immediate #Seekbetter #UrgentHire'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Description': 'You can join our mission to make a real difference through rapid solution development, turning measurement science IP into killer apps, on a hardware/OS agnostic, modern C++ foundation, delivered into an always-on, everywhere available, app store ecosystem..Being part of the software development team, you will\xa0work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems. You will also investigate new technologies and applications and apply modern software engineering practices such as design reviews, code review, unit testing and usability testing..', 'Responsibilities': 'Leads the design and implementation of Keysight’s analytics software..Responsible for both software and system design, as well as implementation in collaboration with our team of software engineers..Define and design the technical methodology to implement policies, guidelines, tools, metrics, and standards for managing metadata.Ensure data quality and integrity..Works closely with the team members and architect to create/ manage products and establish best practices..', 'Qualifications': 'Bachelor’s degree in Computer Science, Computer Engineering or a software related discipline, from an accredited college or\xa0university.Experience working with product development/engineering and product management.2+\xa0years\xa0in Big Data (Hadoop, HBase, Hive, Scala),2+\xa0years\xa0in Spark development, Sqoop, Flume, Kafka, nifi and Python.Experience in design, implementation, and deployment of high volume, highly available, cloud-based systems..Must have experience with creating web services that can run in a high availability Cloud environment that can easily be monitored.Must have hands on experience in Java, spring, microservices, REST API, spring Boot, Scala, Hadoop, Spark, Kafka, Postgres..Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK, Docker, Kubernetes..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..Proven success working in a team-oriented environment and demonstrated problem solving skills..Must have an ability to identify, formulate, and solve engineering problems.Activeness in Technical Communities.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-framework-engineer-jobsthatmatter-immediate-seekbetter-urgenthire-10139621?jobId=jobstreet-sg-job-10139621§ionRank=1241&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Research Scientist (Catalysis and Reaction Engineering), ISCE2'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-catalysis-and-reaction-engineering-isce2-10052507?jobId=jobstreet-sg-job-10052507§ionRank=1242&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
[{'position': 'Data Operations Specialist - Data Solutions Center'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Work closely with stakeholders to capture requirements for data labeling projects.Support data product managers in prioritising the labeling project backlog.Track the progress of data labeling projects and manage resources to ensure timely completion.Enhance on the service and quality of labelled data delivery.Expose to various machine learning techniques and business use-cases.Experience the entire model pipeline from data gathering to model delivery and maintenance.Solid foundations of maths and algorithms, and data project management is preferred.Outstanding skill of communication, collaboration, project management, excellent team player and strong ownership.Strong interest in process optimisation and improvement.Highly conscientious.Interest in machine learning/model training.Experience in BI tools, data visualizations, one general purpose programming language (e.g., Java, C/C++, Python) would be required.Experience and knowledge in artificial intelligence, computer vision, machine learning, large-scale distributed systems and other fields are highly preferred.', 'Qualifications': "Bachelor's degree in Computer Science, Engineering, Business Analytics or equivalent practical experience.Experience with Excel and SQL is strongly required."}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-operations-specialist-data-solutions-center-10119090?jobId=jobstreet-sg-job-10119090§ionRank=1243&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Principal Research Scientist, - (Information Technology) - #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Senior Principal Research Scientist [Information Technology/Computer Engineering]': '', 'Job Requirements:\xa0': "\u200bA PhD in IT, Computer Engineering, or any other relevant field.12 of experience after PhD , preferably in cybersecurity research or IoT system architecture, including at least 5 of project manment experience. Applicants with a master's and a minimum of 16 working experience will be considered.A proven track record of international publications in relevant fields.Familiar with IoT, virtualization and distributed systems.Experience in international research collaboration, security information and event manment (SIEM), malware analysis, machine learning, cyber systems (CPS), or security architectures/frameworks is a plus.Proficient in technical reporting/presentations, have good verbal communication skills and be ability to work independently and in a team to realize the proposed works."}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Singapore'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-principal-research-scientist-information-technology-worknow-10060811?jobId=jobstreet-sg-job-10060811§ionRank=1244&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Senior Principal Research Scientist [Information Technology/Computer Engineering]
[{'position': 'Research Scientist, - R00007657 #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Overview': 'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention.', 'Requirements': 'PhD in a relevant discipline (e.g. developmental psychology, developmental science, \xa0child development, educational psychology, linguistics, early intervention, or special education).Minimum 2 years of post-PhD experience (Research Scientist).Demonstrated ability to lead a research team;.Demonstrable track record in the following areas:.High quality publications (please provide samples and information on the \xa0quality and impact of your work based on citations and ranking of journal publications);.Planning and writing research projects that are funded through competitive peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences);.Proficiency in the design and testing of instruments is desirable;.Excellent interpersonal and communication skills (spoken and written English);.Ability to work collaboratively within a team environment..', 'Responsibilities of Research Scientists': 'Collaborate with colleagues to design and implement the centre’s research programme.Take a leading role in the development of research projects and programmes and in seeking and pursuing appropriate external funding;.Disseminate the outcomes of research in peer-reviewed publications of international standing;.Manage and conduct administrative and management tasks associated with your programme of research;.Participate in research of strategic importance to NIE;.Participate in the wider research and service activities of NIE;.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-r00007657-seekbetter-10142267?jobId=jobstreet-sg-job-10142267§ionRank=1246&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Overview
[{'position': 'Data Engineer - TikTok'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': '', 'About TikTok': '', 'Team Introduction': '', "If you're looking for a challenging ground to push your limits, this is the team for you!": 'Translate business requirements & end to end designs into technical implementations and responsible for building batch and real-time data warehouse.Manage data modeling design, writing, and optimizing ETL jobs.Collaborate with the business team to building data metrics based on data warehouse.Responsible for building and maintaining data products.Involvement in rollouts, upgrades, implementation, and release of data system changes as required for streamlining of internal practices.', 'Qualifications': 'At least 5 years in software engineering and 2 years of relevant experience in data engineering.Proficient in creating and maintaining complex ETL pipelines end-to-end while maintaining high reliability and security.Familiar with data warehouse concept and have production experience in modeling design.Familiar with at least 1 distributed computing engine (e.g. Hive, Spark, Flink).Familiar with at least 1 NoSQL database is a plus (e.g. HBase).Excellent interpersonal and communication skills with the ability to engage and manage internal and external stakeholders across all levels of seniority.Strong collaboration skills with the ability to build rapport across teams and stakeholders.'}, {'Career Level': 'Senior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-tiktok-10132928?jobId=jobstreet-sg-job-10132928§ionRank=1248&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Research Engineer I - (Computer Science) (R00010614) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Description:': 'Gather system requirements by defining and analyzing system problems.Design and implement natural language processing (NLP) algorithms and models for semantic analysis, e.g., word embedding, named-entity recognition, coreference resolution and parsing, and ontology and knowledge graph constructions.Application of NLP in knowledge and information retrieval, and relevancy ranking with spatiotemporal consideration.Conduct “translational” research to apply the state-of-the-art solutions at scale for real world challenges.Documentation and scientific reporting.', 'Job Requirements:': 'PhD in computer science.Some experience and research background in AI and NLP.Passionate about NLP and AI related research, innovations and their applications.Proficient in one or more programming languages (e.g., Python, C/C++, etc.) and research packages/modules.Experience in large-scale text processing and analytics.Good track records in publication.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-engineer-i-computer-science-r00010614-urgenthire-10137490?jobId=jobstreet-sg-job-10137490§ionRank=1249&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Computer Vision Research Scientist, Data Monetization Technology* #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 25-Oct-22']}, {'Responsibilities': 'Conduct cutting-edge research in the fields of computer vision and machine learning..Ensure technologies get successfully applied to products..Incubate new products with computer vision and machine learning technologies..', 'Qualifications': 'Ph.D. degree in Computer Science, Computer Engineering or other relevant majors..Rich research experience in but not limited to the following areas (as main authors of published papers at CVPR, ICCV, ECCV, ICML, NeurIPS, and ICLR).Image/video search.Image/video classification/understanding.Object detection, segmentation, and tracking.Representation learning (multi-modality, pre-training, vision transformer, etc.).OCR.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/computer-vision-research-scientist-data-monetization-technology*-urgenthire-10102495?jobId=jobstreet-sg-job-10102495§ionRank=1250&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow (Computer Science/Engineering/Mathematics)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key Responsibilities:': 'Conduct research on 3D part design and analysis using deep learning techniques in HP-NTU Digital Manufacturing Corp Lab.Explore and develop new computational models and algorithms for 3D modeling, shape analysis, simulation and 3D printing.Implement and develop software prototypes to demonstrate the proposed algorithms and models.Write technical reports, research papers, technological disclosures, etc.', 'Job Requirements:': 'PhD in Computer Science, Engineering, Mathematics or related disciplines..Familiar with computer graphics, computer vision and deep learning.Having good research experience in 3D reconstruction, geometric modeling and 3D shape analysis.Proficiency in programming with C/C++, QT, Python.Having experience of publishing research papers in reputed journals or conferences.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-engineering-mathematics-10055639?jobId=jobstreet-sg-job-10055639§ionRank=1251&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior AI Researcher'}, {'company_name': 'Spring Professional (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 14-Oct-22']}, {'Senior\xa0AI Researcher': 'Golden Opportunity with\xa0EV MNC\xa0.Competitive Remuneration\xa0Package.One of the Best AI Research team in Singapore.', 'About the Client': '', 'Main Duties & Responsibilities': 'Lead or participate in the project which aims for solving diverse problems from the automotive industry covering acquiring data, algorithm development, and system implementation.Drive research from concepts to feasible output to determine the viability of ideas and technologies that leverage AI/ML.Acquire the state of the art technologies in AI/ML and present ways to use them for solving real-world problems.Develop and operate the AI algorithm that is implemented in the manufacturing process.Generate and document intellect property(IP) as appropriate as a result of the research conducted.Collaborate with data scientists, engineers, or managers as a one team.', 'Education Backgrounds': "Ph.D. or Master's degree in Computer Science, Electrical Engineering, Industrial Engineering or equivalent practical experience\xa0.Total over 2 years of research or development experience in Artificial Intelligence, Machine Learning, Computer Vision, Statistics, Data Analytics, or Data Science.Research experience in the manufacturing industry is preferred but not required.", 'Professional Skills': 'Research experience in the following: Image classification/detection/segmentation, Anomaly detection, Representation Learning, Generative models, Image Processing with deep models or other related fields of computer vision].Understanding of state-of-the-art theories in computer vision.Experiences in publishing papers or articles from the research practices.Skills/experience with one or more programming language including Python, C++, or Java\xa0.Expertise in deep learning framework including PyTorch, or TensorFlow.Experiences in the development of AI or ML-based services are preferred.', 'What to Expect': '', 'Interest & Apply': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199703060N', 'EA No.': '09C5803', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tSpring Professional is an international firm specialising in mid-senior level recruitment for the industries of corporate functions, engineering, finance & accounting, financial services, IT, life sciences, property & construction, sales & marketing, as well as supply chain & logistics across the Asia region, with offices in China, Hong Kong, Japan, Malaysia, Singapore, South Korea, Taiwan and Thailand.\n\n\t\tSpring Professional is a wholly-owned subsidiary of The Adecco Group based in Zurich, Switzerland. As the world's leading provider of workforce solutions with more than 33,000 FTE employees and around 5,100 branches in 60 countries and territories around the world, the Adecco Group offers a wide variety of services, connecting approximately 700,000 associates with our clients every day. The services offered fall into the broad categories of temporary staffing, permanent placement, career transition and talent development, as well as outsourcing and consulting. The Adecco Group is a Fortune Global 500 company.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-ai-researcher-9977956?jobId=jobstreet-sg-job-9977956§ionRank=1252&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Senior AI Researcher
[{'position': 'Research Fellow, - (Data Science, Blood Sugar Dynamics/Diabetes) (R00010120) -#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Job Description:': 'Conduct cross-disciplinary research in monitoring of diabetic condition in healthy and affected individuals. This involves analysis of the continuously measured blood sugar concentration dynamics in diabetics, pre- and none-diabetic individuals. Correlation of these measurements with food nutritional composition and the individuals’ psychological and physical life-stress levels.\xa0 Collaborate with metabolic disease researchers from NTU LKC School of Medicine and TTS Hospital Singapore..Take part in current initiatives in SG health care and digital wellbeing. This project is specifically focused on providing advice for elderly people with type 1 and 2 diabetes and pre-diabetic condition and development of personal data-based dietary recommendations assisting with the decision making process such as insulin injections, food type and nutrition, exercises.\xa0 Collaborate with Temasek Centre for Applied Nutrition Services & Glycemic Index Research Unit. \xa0.', 'Job Requirements:': 'PhD in biology, bioinformatics, metabolic diseases, nutrition, or related fields. This position also welcomes applicants with qualifications at MSc or BSc level (to be offered at Research Associate or Project Officer, respectively), if the right experience, technical qualifications, and expertise is met..Prior research experience..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]N).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-data-science-blood-sugar-dynamics-diabetes-r00010120-urgenthire-10134387?jobId=jobstreet-sg-job-10134387§ionRank=1253&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Fellow, - (Air Traffic Management/Machine Learning) (R0000#UrgentHire5 121)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Undertake research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data mining, doing analytics, and building high quality strategic planning system for future for Air Traffic Management systems.Provide expertise on algorithmic concepts for the broader applied analytics of ATM and inspire the adoption of advanced analytics and data science across the entire breadth of ATM system..', 'Job Requirements:': 'PhD Degree in Computer Science/Aerospace Eng/Operation Research.Good programming skill (Python / MATLAB / C++).Good English writing and communication skills.Independent and team player.Good publication records.Demonstrated relevant experience in Artificial Intelligence / Machine Learning.Publication track record in peer-reviewed and reputed journals/conferences related to Artificial Intelligence / Machine Learning / AI&ML applied to ATM.Hands-on experience in using machine learning libraries such as Scikit-learn, etc..Hands-on experience in using deep learning library (either TensorFlow or PyTorch).', 'Experiences in at least two of the following areas is a strong plus:': 'Tempo-spatial data mining and analysis,.Time series analysis and prediction,.Generative models.Reinforcement Learning and/or Inverse Reinforcement Learning.Probabilistic Modeling / Bayesian Machine Learning.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-air-traffic-management-machine-learning-r0000-urgenthire5-121-10131980?jobId=jobstreet-sg-job-10131980§ionRank=1254&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Scientist, - (RF Localization) [R00007408] #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Responsibilities': '', 'Job Requirements': 'PhD degree (Entry level candidates will be considered) in Electrical & Electronics Engineering or other related fields.Strong background and knowledge in modern RF communications/sensor array signal processing.Good understanding of GNSS processing, RF propagation models, Ray-Tracing methods..Strong algorithm development and programming skills on MATLAB.Knowledge on machine learning or deep learning.Familiarity with Ettus USRP devices, GNU Radio/Labview programming, Wireless Insite and MicroWave Office are plus factors.Good publication record.Excellent communication skills in English.Appointment grade and starting salary will depend on the candidates’ qualification and relevant experience. Qualified applicants are invited to send in their application with detailed resumes..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electronics', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-rf-localization-%5Br00007408%5D-urgent-10060589?jobId=jobstreet-sg-job-10060589§ionRank=1257&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Scientist (Electrical & Electronics Engineering/Material Science/Physics/Chemistry) (R00005702)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Develop III-V compound semiconductor-based LDs fabrication and its integration with external switches.Formulate and execute DOEs for process development/process optimization.Sourcing of required equipment/tool for the fabrication of LDs and its testing.Design of Epi-layer, Layout design, fabrication process steps and recipes for the fabrication of LDs.Prepare the run-sheets for the full fabrication of LDs up to the level of packaging.Work with the Fab manager/module leaders for the smooth flow of LD fabrication.Contribute to research reports for project deliverables, new project proposal drafting and etc..Perform other duties related to optical devices and its integration or assigned by higher management.Prepare process documentations with the standard of ISO 9001:2015 or ISO 9001:2018.', 'Job Requirements': ''}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-electrical-electronics-engineering-material-science-physics-chemistry-r00005702-10046507?jobId=jobstreet-sg-job-10046507§ionRank=1258&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Scientist - (Engineering) (R00009510)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Review, finalize and maintain ADRFI-2 Platform documents and specifications improving upon QA/QC processes and development milestone specifications and signing off Platform deliverables,.Review and improve upon Platform user interfaces, input/output formats and information content to ensure Platform’s ease of use from stakeholders’ perspectives..Review insurance data received from different ASEAN countries and enhancing data format/protocols for incorporation into the economic/loss databases residing on the Platform..Track Platform development and manage software coders engaged by ICRM to ensure compliance with Platform development specifications..Implement QA/QC practices and processes in all phases of ADRFI-2 Platform development and deployment..', 'Job Requirements:': '5+ years\xa0 of experience in a leadership role with the insurance related Platform development and deployment, including relevant exposure to cat risk modelling..M.Sc. in an engineering or science related field; B.Sc. holders may be considered for the more junior position if they have significant, relevant experience beyond the minimum required..Demonstrated 3+ years of experience in the capacity of leading a data/analytics Platform development team..Understanding and having previous work experience with risk modelling, risk assessment, and uncertainty quantification in exposure and loss data..High level of hands-on proficiency in data analysis, data mining and data manipulation software tools, as well as excellent knowledge of a GIS software required..Hands-on demonstrated experience and knowledge of relevant software skills preferred (e.g. SQL, GIS, Matlab, R, Python)..A team player with a high-degree of self-motivation..Highly organized with strong analytical organizational skills necessary for project management, and communicating effectively with management and project teams.\xa0.Excellent written and verbal skills, as evidenced by technical writings and presentations at meetings..The Ideal candidate would have developed data products or components in multiple capacities in his/her career..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-engineering-r00009510-10051410?jobId=jobstreet-sg-job-10051410§ionRank=1259&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Research Scientist - (R00005119) #Urgent-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Play a leading role in both research and development of novel and/or enhanced assistive technologies to improve the safety of fleet drivers by (i) categorizing their driving behaviors through profiling; (ii) monitoring their well-being; and (iii) assessing driving risks and reporting to fleet manager/operator and/or drivers.', 'Job Requirements:': 'PhD degree in Computer/Electrical/Mechatronics Science or Statistics.Minimum 6 years of experience in software or hardware development, integration and refinement.Solid application background in AI for computer vision and/or data analytics.Strong project management skills.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-r00005119-urgent-jobsthatmatter-10136768?jobId=jobstreet-sg-job-10136768§ionRank=1260&token=0~42804255-afb0-4ac6-9dd4-355cf9562b18&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Analyst'}, {'company_name': 'Peoplebank Singapore Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa04,700 - SGD\xa07,500', 'Posted on 14-Oct-22']}, {'Job Responsibilities:': 'Provide management with clear insights and recommendations into drivers of revenue, market trends, risks, and opportunities leading to revenue enhancing sales & product actions..Engage in deep dive analyses to understand business performance and provide concise summaries and recommendations to management..Support critical financial planning processes such as revenue forecasting, sales target setting, revenue calls preparation, and sales performance evaluations..Work with cross-functional teams to develop business cases / strategic plans backed by relevant analyses and insights\xa0.', 'Job Requirements:': 'BA/BS degree in a quantitative field of study preferred with a strong academic record.Min 3-6 years experience in data analyst, strategy consulting, corporate finance or similar commercial analytical role\xa0.Advanced proficiency in spreadsheets/ modelling..Familiarity with, and/or enthusiasm for SQL and working with large volumes of complex day.Strategic thinking and an aptitude for problem solving,\xa0.Excellent communication skills: ability to craft and deliver clear, coherent and concise messages to senior business leaders\xa0..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199802032E', 'EA No.': '08C5248', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tPeoplebank Singapore Pte Ltd is a leading multi-specialists recruitment company covering IT, Accounting & Finance, Banking & Financial Services, Sales & Marketing, HR, Legal and Business Support.\xa0We place the brightest professionals into some of the region’s top employers.\n\n\n\tWe ensure that the services we provide are cost-effective and timely staffing solutions, so that our clients can continue to focus on results. Our core competency is the placement of temporary, contract, contract-to-hire, and permanent professionals.\n\n\n\tPeoplebank Singapore is part of the Chandler Macleod Group, Asia Pacific’s leading talent solutions provider and an arm of RGF Staffing, 4th largest recruitment company globally, owned by Recruit Holdings.\n\tOur goal is to exceed the expectations of our clients, by providing the highest quality and true value in every aspect of our service.\n\n\tOur team of qualified Consultants comes from a diverse range of industries and backgrounds. They are trained professionals with many years of experience and are able to quickly and efficiently match your skills and career objectives with job or project opportunities. We offer attractive salary and benefits packages for all our positions. Feel free to send in your resume for any of our job postings or call our office to enquire or chat with our Consultants.\n\n\tEA Licence Number : 08C5248\n\n\tCompany Website: www.peoplebank.asia\n\tAddress: 8 Cross Street, #23-07, Manulife Tower, Singapore, 048424.\n\tCompany Mainline: +65 6429 1250\n\tMain email: [email\xa0protected]\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-10067119?jobId=jobstreet-sg-job-10067119§ionRank=1262&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Data Framework Engineer #UrgentHire#WorkNow #Seekbetter'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Description': 'You can join our mission to make a real difference through rapid solution development, turning measurement science IP into killer apps, on a hardware/OS agnostic, modern C++ foundation, delivered into an always-on, everywhere available, app store ecosystem..Being part of the software development team, you will\xa0work\xa0in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..You will also investigate new technologies and applications and apply modern software engineering practices such as design reviews, code review, unit testing and usability testing..', 'Responsibilities': 'Leads the design and implementation of Keysight’s analytics software..Responsible for both software and system design, as well as implementation in collaboration with our team of software engineers..Define and design the technical methodology to implement policies, guidelines, tools, metrics, and standards for managing metadata.Ensure data quality and integrity..Works closely with the team members and architect to create/ manage products and establish best practices..', 'Qualifications': 'Bachelor’s degree in Computer Science, Computer Engineering or a software related discipline, from an accredited college or\xa0university.Experience working with product development/engineering and product management.2+\xa0years\xa0in Big Data (Hadoop, HBase, Hive, Scala),2+\xa0years\xa0in Spark development, Sqoop, Flume, Kafka, nifi and Python.Experience in design, implementation, and deployment of high volume, highly available, cloud-based systems..Must have experience with creating web services that can run in a high availability Cloud environment that can easily be monitored.Must have hands on experience in Java, spring, microservices, REST API, spring Boot, Scala, Hadoop, Spark, Kafka, Postgres..Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK, Docker, Kubernetes..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..Proven success working in a team-oriented environment and demonstrated problem solving skills..Must have an ability to identify, formulate, and solve engineering problems.Activeness in Technical Communities.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-framework-engineer-urgenthire-worknow-seekbetter-10141541?jobId=jobstreet-sg-job-10141541§ionRank=1263&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Research Fellow (Physics/Imaging/Biomedical Engineering/Life Sciences) R00010328'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key': '', 'Responsibilities:\xa0': 'Directly responsible for analysing the structural and functional MRI data and neuroimaging data from other imaging modalities viz., MEG, EEG, fNIRS, tDCS and TMS.Developing MATLAB programmes for paradigms, brain computer interfacing and machine learning as per the requirements.Data/Image processing using image processing software: CONN, BrainVoyager, EEGlab, nirslab..Programming skills in E-Prime, MATLAB, Psychopy & Python.Guiding/Mentoring attachment URECA/ scholarly project students.Training the staff to analyse the images obtained from MRI, MEG, EEG & fNIRS.Collaborating and assisting the PIs from diverse disciplines in their research.Working towards enhancing the research capabilities in CoNiC by procuring advanced software thereby delivering productive results for in-house and collaborative research.Provide documentation of inventions for patent applications; review alternative technology or processing methods as it relates to the invention.Present development work at scientific conferences, and report progress regularly to Management.Completion of commercial product-grade image processing algorithms and implementation applicable to medical imaging projects.Completion of quality assurance and validation of the algorithm.', 'Job Requirements:\xa0': 'PhD in Physics, imaging, Biomedical Engineering, Life Sciences, or related fields.Software skills such as Matlab, Brainvoyager, python, Psychopy and Eprime are needed.Proficiency in MATLAB and C/C++ is mandatory.Able to deal with highly confidential and/or sensitive matters with tact and discretion.Good team worker and able to work with stakeholders from different departments.Able to exercise good judgement and use initiatives to troubleshoot and address issues.Willing to learn new imaging techniques and related software.Troubleshooting the issues and ensuring uninterrupted functioning of analysis.Able to deliver intellectual inputs/neuroimaging solutions to PIs and students in their research.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-physics-imaging-biomedical-engineering-life-sciences-r00010328-10051492?jobId=jobstreet-sg-job-10051492§ionRank=1264&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Key
[{'position': 'Research Scientist, - (Microfabrication) [R00007961] #Urgent #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Develop manufacturing processes for micro-/nano- fabrication of materials.Characterize the structure and properties of the materials.Develop Processing-Structure-Properties relationships.', 'Job Requirements': 'Ph.D. in Mechanical Engineering, Materials Science and Engineering, Electrical Engineering or related field.Knowledge in Micro-/ Nano- fabrication, especially non-traditional microelectronics processing techniques.Proficiency with optics, control systems and flexible materials are highly valued but not mandatory.Excellent written and verbal communication in the English language is expected.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-microfabrication-%5Br00007961%5D-urgent-urgenthire-10142027?jobId=jobstreet-sg-job-10142027§ionRank=1265&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Sr./Research Fellow (Bio-Data Science) - [R00007165] #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 27-Oct-22']}, {'Job Responsibilities': '', 'Job Requirements': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/sr.-research-fellow-bio-data-science-%5Br00007165%5D-worknow-10055822?jobId=jobstreet-sg-job-10055822§ionRank=1267&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate, (Computer Science) - [R00006380]- #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Preprocess real brain imaging data for further analytical tasks.Perform literature review and background study on graph analytics for brain network analysis.Design new Data Mining & Machine Learning techniques for brain network analysis; develop/implement prototypes of the solutions, and validate their effectiveness empirically.Publish the research work in conferences and journals.', 'Job Requirements:': 'Possess Master degree in Computer Science, or a related discipline with a focus on Machine Learning, Data Mining, or Statistics.Experiences in designing and developing graph analytics and/or brain network analysis technologies.Good programming skills in e.g., Python, Matlab, C++, etc.Good interpersonal skills.Excellent teamwork awareness.Good communication and writing in English.Strong research experience/track record will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-%5Br00006380%5D-jobsthatmatter-10137154?jobId=jobstreet-sg-job-10137154§ionRank=1270&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Machine Learning Engineer, Content Safety'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': "Build industry-leading content safety systems for TikTok;.Develop highly-scalable classifiers, tools, models and algorithms leveraging cutting-edge machine learning, computer vision and data mining technologies;.Understand product objectives and improve trust and safety strategy and model's performance;.Work with cross-functional teams to protect TikTok globally..", 'Qualifications': 'Major in computer science or a related technical discipline;.Solid experience in at least one of the following areas: machine learning, pattern recognition, NLP, data mining, or computer vision..Experience in the recommendation, search, advertising, or other related projects..Published papers in the top AI conferences or journals is a plus, including KDD, IJCAI, WWW, WSDM, ICML, NeurIPS, CVPR, ECCV, ICCV, ACL, etc.;.Competition experience in machine learning, data mining, CV, NLP and others..Experience in content moderation or trust & safety is a plus;.Well understanding of data structures and algorithms;.Great communication and teamwork skills;.Passion for techniques and solving challenging problems..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-content-safety-10132830?jobId=jobstreet-sg-job-10132830§ionRank=1271&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior /Research Fellow, [Bio-Data Science] - [R00007165] - #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 28-Oct-22']}, {'Job Responsibilities': '', 'Job Requirements': 'You should have a PhD in Computational Biology, Data Science, Computer Science, or Bioinformatics..Other relevant s may also be considered..You should have at least 4 of experience working with mass spectrometry data and/or have experience working with network models..'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-fellow-%5Bbio-data-science%5D-%5Br00007165%5D-worknow-10060514?jobId=jobstreet-sg-job-10060514§ionRank=1272&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Scientist (RF Localization) [R00007408]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': '', 'Job Requirements': 'PhD degree (Entry level candidates will be considered) in Electrical & Electronics Engineering or other related fields.Strong background and knowledge in modern RF communications/sensor array signal processing.Good understanding of GNSS processing, RF propagation models, Ray-Tracing methods..Strong algorithm development and programming skills on MATLAB.Knowledge on machine learning or deep learning.Familiarity with Ettus USRP devices, GNU Radio/Labview programming, Wireless Insite and MicroWave Office are plus factors.Good publication record.Excellent communication skills in English.Appointment grade and starting salary will depend on the candidates’ qualification and relevant experience. Qualified applicants are invited to send in their application with detailed resumes..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electronics', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-rf-localization-%5Br00007408%5D-10046430?jobId=jobstreet-sg-job-10046430§ionRank=1273&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow (Computer Science and Engineering) (R00008362)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Key Responsibilities:': 'Understand the research project and work context as a scientific research staff in the team.Apply scientific, technical and software engineering skills to conduct research.Develop prototypes to demonstrate successful application of the research.Facilitate technical development, testing and refinements of research project.Promote collaborative and translational research work.Documenting research plans and progress, and writing reports\u200b.', 'Job Requirements:': 'Ph.D. Degree in Computer Science and Engineering or related fields.Has demonstrable experience in topics at the intersection of robust optimization, data analytics and machine learning.Programming fluency in Python, C/C++ or Java is required.Proficiency in developing and deploying algorithms to both academic and industrial environment are expected.Prior background in model-based or evolutionary methods for multi-objective optimization is a plus.Highly motivated, independent and able to work as a team.Effective communication and report writing skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-and-engineering-r00008362-10053264?jobId=jobstreet-sg-job-10053264§ionRank=1274&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow, - [LKC Medicine] R00010529'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Lee Kong Chian School of Medicine invites applications for:': '', 'Research Fellow in the laboratory of Associate Professor Eric Yap': '', 'Job Responsibilities:': 'Design and conduct wet lab and dry lab experiments independently.Perform data analysis and interpretation for publication.Mentor and supervise students and junior lab members.Contribute to lab procurement and lab safety management.Perform and manage international-level wet lab and in silico research in environmental molecular microbiology.', 'Skills & qualifications:': 'PhD in microbiology, molecular biology or related fields.Experience in microbiology and molecular biology methods, such as culture isolation, antibiotics susceptibility testing, DNA extraction, PCR and library preparation.Experience in bacterial whole genome sequencing and genome assembly.Experience handling large datasets for bioinformatic analysis.1 year experience in handling Biological Safety Level 2+ (BSL2+).Ability to handle microbes competently and safely up to Biological Safety Level 2+ (BSL2+).Good aseptic technique.Strong interpersonal skills for collaborative working, to be self-motivated, well-organized and focused.Excellent communication and interpersonal skills.Possess a sense of initiative and proactiveness.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-%5Blkc-medicine%5D-r00010529-10070172?jobId=jobstreet-sg-job-10070172§ionRank=1275&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Lee Kong Chian School of Medicine invites applications for:
[{'position': 'Machine Learning Engr. (Search), - TikTok e-Commerce'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'Job Description': 'Participate in building e-Commerce recommendation algorithms and systems, including commodity search algorithm in TikTok shop..Design & build query understanding models, analyze and extract relevant information from query of TikTok creators..Design, develop, evaluate and iterate on predictive models for ranking (e.g. Click Through Rate), including but not limited to building real-time data pipelines, feature engineering, model optimization and innovation..Design and build supporting/debugging tools as needed..', 'Qualifications': '', 'Requirements': "Bachelor's degree or higher in Computer Science or related fields..Strong programming and problem-solving ability..Experience in applied machine learning, familiar with one or more of the algorithms such as Collaborative Filtering, Matrix Factorization, Factorization Machines, Word2vec, Logistic Regression, Gradient Boosting Trees, Deep Neural Networks, Wide and Deep etc..Experience in Deep Learning Tools such as Tensorflow/Pytorch..Experience with at least one programming language like C++/Python or equivalent..", 'Preferred Qualifications': 'Experience in recommendation system, online advertising, information retrieval, natural language processing, machine learning, large-scale data mining, or related fields..Publications at KDD, NEURIPS, WWW, SIGIR, WSDM, ICML, IJCAI, AAAI, RECSYS and related conferences/journals, or experience in data mining/machine learning competitions such as Kaggle/KDD-cup etc..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engr.-search-tiktok-e-commerce-10144734?jobId=jobstreet-sg-job-10144734§ionRank=1276&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow, - [R00009581]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 28-Oct-22']}, {'Research Fellow (Organic Chemistry/Materials Science/Biomedical Engineering) (R00009581)': '', 'Key Responsibilities:': 'Design and synthesize the optical molecular/nanoparticle probes for imaging application.Design and synthesize nanomedicines.Characterize them.Conduct experiments in cell and animals.Analyze the data.Write manuscripts and patents.', 'Job Requirements:': 'Phd in Organic Chemistry, Materials Science, Or Biomedical Engineering related fields are required..At least three years synthesis experience.At least two years cell culture and animal handling experience.Published at least three research papers with the first authorship.Min 3 years of experience.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-%5Br00009581%5D-10060512?jobId=jobstreet-sg-job-10060512§ionRank=1277&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Research Fellow (Organic Chemistry/Materials Science/Biomedical Engineering) (R00009581)
[{'position': 'Data Framework Engineer [Intermediate level, Contract] #UrgentHire #Seekbetter'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Description': 'At Keysight, we help companies address their toughest challenges with precision and confidence..We offer the most precise electronic measurement tools in the industry, with advanced software to match..Our employees leverage their insight and passion to revolutionize electronic measurements and make a difference in the world..Keysight Singapore Center of Excellence is launching a new software development center in Singapore, chartered to create a new generation of software for electronic product design and test for customers around the world..With strong collaborations & partnerships with local universities here in Singapore, the center will attract top local graduates from computer science, artificial intelligence, systems programming and electrical/electronic/computer engineering schools..You can join our mission to make a real difference through rapid solution development, turning measurement science IP into killer apps, on a hardware/OS agnostic, modern C++ foundation, delivered into an always-on, everywhere available, app store ecosystem..Being part of the software development team, you will work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..You will also investigate new technologies and applications and apply modern software engineering practices such as design reviews, code review, unit testing and usability testing..', 'Responsibilities': 'Leads the design and implementation of Keysight’s analytics software..Responsible for both software and system design, as well as implementation in collaboration with our team of software engineers..Define and design the technical methodology to implement policies, guidelines, tools, metrics, and standards for managing metadata.Ensure data quality and integrity..Works closely with the team members and architect to create/ manage products and establish best practices..', 'Qualifications': 'Bachelor’s degree in Computer Science, Computer Engineering or a software related discipline, from an accredited college or university.Experience working with product development/engineering and product management.2+ years in Big Data (Hadoop, HBase, Hive, Scala),2+ years in Spark development, Sqoop, Flume, Kafka, nifi and Python.Experience in design, implementation, and deployment of high volume, highly available, cloud-based systems..Must have experience with creating web services that can run in a high availability Cloud environment that can easily be monitored.Must have hands on experience in Java, spring, microservices, REST API, spring Boot, Scala, Hadoop, Spark, Kafka, Postgres..Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK, Docker, Kubernetes..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..Proven success working in a team-oriented environment and demonstrated problem solving skills..Must have an ability to identify, formulate, and solve engineering problems.Activeness in Technical Communities.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-framework-engineer-%5Bintermediate-level-contract%5D-urgenthire-seekbetter-10141494?jobId=jobstreet-sg-job-10141494§ionRank=1278&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Associate, Big Data Analyst, Consumer Banking Operations, Technology & Operations - (WD41447)'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Business Function': '', 'Responsibilities': 'Design and develop data visualization reports/dashboards that gives insights on Turn-Around-Time and Tail\u200b Management. Perform analysis on Service Requests such as Straight Through Processing/Non-Straight Through Processing split and volume distribution by source/channel\u200b..Fulfil requests from Ops team in Ops Metrics extraction for process improvement, investigation and performance management, reporting..Develop data visualization insights relating to CASA account opening, Giro application, and ATM CSAT..Deploy/Decommission QlikView dashboard to/from QMC; Maintain QMC task refresh schedules to ensure dashboards are refreshed according to the required day & time\u200b; Support troubleshooting on dashboard availability in QV access point..Perform data profiling and analysis; translate unstructured information into structured information..Analyse and perform performance tuning for jobs and Queries..', 'Requirements': 'Bachelor’s degree in Computer Science, Information System, Statistics, Mathematics, or related disciplines..2+ years of work experience ideally with experience in banking or financial industry; preferably in Big Data or in a Business Analyst role..Highly proficient in data manipulation..Good working knowledge in Big Data, Python, SQL, and dashboard tools like Qlikview, Tableau, etc..Good knowledge of AWS cloud computing, parallel data processing, and big data stack, e.g. Spark, Pyspark and Hadoop/Yarn, Kafka, etc is a plus..Experience in automated testing and Agile delivery is a plus..Be data sensitive with sound presentation skills..Possess technical mindset, great attention to detail, independent and a ‘can-do’ attitude..A team player with good time-management and leadership skills..Good interpersonal and communication skills..Ability to work under tight deadline and handle multiple projects..', 'Apply Now': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Banking/Financial', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/associate-big-data-analyst-consumer-banking-operations-technology-operations-wd41447-10122456?jobId=jobstreet-sg-job-10122456§ionRank=1279&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Business Function
[{'position': 'Research Fellow - (Mathematical AI for Molecular Data Analysis)-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Responsibilities': 'Perform molecular data analysis, including molecular dynamics analysis, quantum mechanism analysis, geometric and topological modeling.Data analysis with machine learning and deep learning models.', 'Job Requirements': 'PhD in Mathematics, computer sciences, bioinformatics, computational physics/chemistry/biology, or other related areas.Previous experience on topological data analysis, machine learning and molecular data analysis is preferred.Have good training on computation, algorithm design and modeling.Research areas on applied topology, computational geometry/topology, molecular dynamics, bioinformatics, data analysis, and machine learning.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-mathematical-ai-for-molecular-data-analysis-jobsthatmatter-10138928?jobId=jobstreet-sg-job-10138928§ionRank=1280&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Intern, Data Scientist (DPE-SPG-Engineering) #JobsThatMatter'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 22-Oct-22']}, {'Position Overview': '', 'Responsibilities': 'Data Analysis.Data Engineering.Developing code using machine learning models.', 'Minimum Qualifications': 'Undergraduate in Computer Science/ Computer Engineering/ Electrical Engineering.', 'Preferred Qualifications': 'Knowledge of data science and machine learning concepts.Strong programming skills.Able to navigate a steep learning curve.', 'Learning Benefits': 'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.', 'About Autodesk': '', 'Are you an existing contractor or consultant with Autodesk? Please search for open jobs and apply internally (not on this external site). If you have any questions or require support, contact ': '', 'Autodesk Careers': '', '.': []}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/intern-data-scientist-dpe-spg-engineering-jobsthatmatter-10094156?jobId=jobstreet-sg-job-10094156§ionRank=1281&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Research Fellow (Mathematical AI for Molecular Data Analysis) (R00008503)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Responsibilities': 'Perform molecular data analysis, including molecular dynamics analysis, quantum mechanism analysis, geometric and topological modeling.Data analysis with machine learning and deep learning models.', 'Job Requirements': 'PhD in Mathematics, computer sciences, bioinformatics, computational physics/chemistry/biology, or other related areas.Previous experience on topological data analysis, machine learning and molecular data analysis is preferred.Have good training on computation, algorithm design and modeling.Research areas on applied topology, computational geometry/topology, molecular dynamics, bioinformatics, data analysis, and machine learning.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-mathematical-ai-for-molecular-data-analysis-r00008503-10139088?jobId=jobstreet-sg-job-10139088§ionRank=1283&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate, - (Machine Learning) - R00008645'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Job Responsibilities': 'Conduct research and system development on advanced machine learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks..Collaborate with other researchers and industry partners..Publish research in top journals and conferences.', 'Job Requirements': 'Master degree in Electrical Engineering, Robotics, Computer Science & Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in machine learning and human-machine interaction.Relevant experience and/or publications on image/video processing and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-machine-learning-r00008645-10144004?jobId=jobstreet-sg-job-10144004§ionRank=1286&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Senior Education Research Scientist in Office of Education Research [NIE] (R00010525)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Requirements for Senior Education Research Scientist': 'PhD in a relevant discipline;.Preferably with 5 years postdoctoral experience or equivalent relevant to Learning Sciences and/or Technology-Enhanced Learning;.Experience in cutting edge scientific research methodologies and addressing intractable challenges in education and involvement in translation work;.Demonstrable track record in the following areas:.Research leadership in a research group or center.High quality publications (i.e. quality and impact of academic publisher, citations and ranking of journal publications etc.).Writing of or contribution towards research proposals which are submitted for peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences);.Attainment of funding through a competitive peer-reviewed process;.Excellent interpersonal and communication skills; and.Experience working with Government stakeholders.Demonstrable track record in the following areas:.Research leadership in a research centre or in a large competitive, peer-reviewed research grant.Supervision of undergraduate and/or graduate students.Experience engaging with diverse stakeholders including Government stakeholders, Community Organizations and the Public.', 'Principal Education Research Scientist': '', 'Responsibilities of Senior Education Research Scientists': 'Take a leading role in the further development of the research programmes and in seeking and pursuing appropriate external funding in the area;.Apply for and conduct quality research and work collaboratively to charge new directions for education, teaching and learning informed by scientific investigation and analyses;.Disseminate the outcomes of the research including in peer-reviewed academic publications of international standing and translation of research findings into NIE and MOE school programmes.Participate fully in the wider research and service activities to OER/NIE;.Take responsibility for, manage and conduct administrative and management tasks;.Mentor junior faculty and research staff;.Supervise students by research and/or dissertation (i.e. supervise M.A. / M.Sc. students and / or co-supervise Ed.D. students).Provide administrative and service support to the office and/or NIE as assigned by the people manager.', 'Closing Date': '', '(OER SERS: OER) ': 'Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research interests and achievements;.1 to 3 of your best publications;.Name of 3 referees;.Cover letter addressing how you meet the requirements of this position (optional);.Any other documents that demonstrate your qualifications.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-education-research-scientist-in-office-of-education-research-%5Bnie%5D-r00010525-10046340?jobId=jobstreet-sg-job-10046340§ionRank=1288&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Requirements for Senior Education Research Scientist
[{'position': 'Data Analyst Intern, - Growth #Urgent'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Build and manage metrics in an analytical driven approach to identify business issues and opportunities in a fast-changing industry;.Prototype analysis pipelines and quickly provide insights to business inquiries;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendations on appropriate solutions..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Statistics, Applied Mathematics, Computer Science or a related technical discipline from a university;.Experience in data manipulation with SQL, Python or other programming-languages/tools;.Experience in data analysis, visualization and reporting;.'}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-intern-growth-urgent-10118261?jobId=jobstreet-sg-job-10118261§ionRank=1289&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Scientist - (Engineering) - (R00009510)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 27-Oct-22']}, {'Key Responsibilities:': 'Review, finalize and maintain ADRFI-2 Platform documents and specifications improving upon QA/QC processes and development milestone specifications and signing off Platform deliverables,.Review and improve upon Platform user interfaces, input/output formats and information content to ensure Platform’s ease of use from stakeholders’ perspectives..Review insurance data received from different ASEAN countries and enhancing data format/protocols for incorporation into the economic/loss databases residing on the Platform..Track Platform development and manage software coders engaged by ICRM to ensure compliance with Platform development specifications..Implement QA/QC practices and processes in all phases of ADRFI-2 Platform development and deployment..', 'Job Requirements:': '5+ years\xa0 of experience in a leadership role with the insurance related Platform development and deployment, including relevant exposure to cat risk modelling..M.Sc. in an engineering or science related field; B.Sc. holders may be considered for the more junior position if they have significant, relevant experience beyond the minimum required..Demonstrated 3+ years of experience in the capacity of leading a data/analytics Platform development team..Understanding and having previous work experience with risk modelling, risk assessment, and uncertainty quantification in exposure and loss data..High level of hands-on proficiency in data analysis, data mining and data manipulation software tools, as well as excellent knowledge of a GIS software required..Hands-on demonstrated experience and knowledge of relevant software skills preferred (e.g. SQL, GIS, Matlab, R, Python)..A team player with a high-degree of self-motivation..Highly organized with strong analytical organizational skills necessary for project management, and communicating effectively with management and project teams.\xa0.Excellent written and verbal skills, as evidenced by technical writings and presentations at meetings..The Ideal candidate would have developed data products or components in multiple capacities in his/her career..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-engineering-r00009510-10046533?jobId=jobstreet-sg-job-10046533§ionRank=1290&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Engineering Associate / Engineer / Senior Engineer –Trust and AI Technologies,TAIT'}, {'company_name': 'HONG KONG APPLIED SCIENCE AND TECHNOLOGY RESEARCH INSTITUTE (ASTRI)'}, {'small_section': ['Hong Kong', 'Posted on 26-Oct-22']}, {'Job Responsibilities:': 'Assist in ITF R&D project as assigned.Perform research and development of algorithms and software in emerging technologies related to NLP, recommendation, computer vision, cybersecurity, blockchain, voicebot, virtual agent.Research and evaluate state-of-the-art AI models and develop working prototypes including data preparation, model development and validation.Conduct software test and write development documents.', 'Requirements:': 'Graduate in STEM-related discipline such as Computer Science, Electronic Engineering, Information Engineering and Mathematics or relevant discipline.A bachelor’s degree, master’s degree or a doctoral degree’s holders are welcomed to apply.For Bachelor’s degree holders, they will be considered for the position of Engineering Associate.For Master’s degree holders, they will be considered for the position of Engineer.For Doctoral degree’s holders, they will be considered for the position of Senior Engineer.Experience in one or more of below programming languages: Python/Java/JavaScript/ NodeJS/Go/C++/C/R.Experience/knowledge in machine learning or software development..Experience in deep learning frameworks such as TensorFlow, PyTorch is a plus.Knowledge of Docker, Kubernetes is a plus.Experience in Blockchain, Smart Contract, Cybersecurity related projects is a plus.Good command of both written/spoken English.'}, {'Career Level': 'Entry Level', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electronics', 'Registration No.': '-', 'Company Size': '501 - 1000 Employees', 'Industry': 'Consulting (IT, Science, Engineering & Technical)', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\nThe Hong Kong Applied Science and Technology Research Institute (ASTRI)\xa0was established by the Hong Kong SAR Government in 2000 with a mission to enhance the city’s global competitiveness. To remain globally prominent, Hong Kong strives to find new ways for its traditional sectors to thrive, and for the potential of emerging sectors to be unleashed. Harnessing the power of technology is key to achieving this.\n\n\t\tASTRI lives up to its mission by pursuing applied Research and Development (R&D) that is delivering technological solutions that strengthen institutions, improve businesses, and benefit communities. Its R&D endeavours focus on five key areas of applications:\n\n\n\t\t\t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Smart City\n\n\t\t\t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Financial Technologies\n\n\t\t\t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Intelligent Manufacturing\n\n\t\t\t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Health Technologies\n\n\t\t\t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Application Specific Integrated Circuits\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/engineering-associate-engineer-senior-engineer-trust-and-ai-technologies-tait-5139001/origin/my?jobId=jobstreet-my-job-5139001§ionRank=1292&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Senior Research Engineer I (Computer Science) - (R00010619) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Description:': 'Gather system requirements by defining and analyzing system problems.Design and implement natural language processing (NLP) algorithms and models for semantic analysis, e.g., word embedding, named-entity recognition, coreference resolution and parsing, and ontology and knowledge graph constructions.Application of NLP in knowledge and information retrieval, and relevancy ranking with spatiotemporal consideration.Conduct “translational” research to apply the state-of-the-art solutions at scale for real world challenges.Documentation and scientific reporting.', 'Job Requirements:': 'PhD in computer science.Some experience and research background in AI and NLP.Passionate about NLP and AI related research, innovations and their applications.Proficient in one or more programming languages (e.g., Python, C/C++, etc.) and research packages/modules.Experience in large-scale text processing and analytics.Good track records in publication.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-engineer-i-computer-science-r00010619-urgenthire-10137488?jobId=jobstreet-sg-job-10137488§ionRank=1294&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Fellow - (Machine Learning) - (R00008200) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Research on federated learning for industry 4.0.Implement deep learning algorithms.Lead a team of researchers for more efficient outcome delivery.Perform project-related works assigned by the PI.', 'Job Requirements:': 'PhD in computer science/engineering or electrical/electronic engineering..Good programming ability with python.Experience with deep learning algorithms and frameworks, like TensorFlow and Pytorch.Good leadership, responsibility and communication skills.The ability to read and write research papers and technical reports.Fluent in English (written and spoken).Interested applicants are invited to submit a cover letter and full CV in one document..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-r00008200-urgenthire-10141523?jobId=jobstreet-sg-job-10141523§ionRank=1296&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Scientist / (Microfabrication) [R00007961] #LetsGetToWork -#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Job Responsibilities': 'Develop manufacturing processes for micro-/nano- fabrication of materials.Characterize the structure and properties of the materials.Develop Processing-Structure-Properties relationships.', 'Job Requirements': 'Ph.D. in Mechanical Engineering, Materials Science and Engineering, Electrical Engineering or related field.Knowledge in Micro-/ Nano- fabrication, especially non-traditional microelectronics processing techniques.Proficiency with optics, control systems and flexible materials are highly valued but not mandatory.Excellent written and verbal communication in the English language is expected.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-microfabrication-%5Br00007961%5D-letsgettowork-urgenthire-10134668?jobId=jobstreet-sg-job-10134668§ionRank=1297&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'NLP Scientist, AI Lab #JobsThatMatter*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..', 'Qualifications': "Bachelor's degree or above, majoring in Computer Science, or related fields.Rich research experience in but not limited to the following areas (as main authors of published papers at ACL, EMNLP, NIPS, ICML, etc.):.Syntactic analysis.Language generation.Knowledge and inference.Reinforcement learning.Deep learning and representation learning.Highly competent in algorithms and programming, prefer winners in ACMICPC, NOI/IOI and Kaggle;.Ability to work and collaborate well with team members;.Ability to work independently.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-scientist-ai-lab-jobsthatmatter*-10119763?jobId=jobstreet-sg-job-10119763§ionRank=1298&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'NLP Scientist, AI Lab - #JobsThatMatter*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..', 'Qualifications': "Bachelor's degree or above, majoring in Computer Science, or related fields.Rich research experience in but not limited to the following areas (as main authors of published papers at ACL, EMNLP, NIPS, ICML, etc.):.Syntactic analysis.Language generation.Knowledge and inference.Reinforcement learning.Deep learning and representation learning.Highly competent in algorithms and programming, prefer winners in ACMICPC, NOI/IOI and Kaggle;.Ability to work and collaborate well with team members;.Ability to work independently.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-scientist-ai-lab-jobsthatmatter*-10119972?jobId=jobstreet-sg-job-10119972§ionRank=1299&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'NLP Scientist - AI Lab - #Urgent'}, {'company_name': 'BYTEDANCE PTE. LTD.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities': 'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..', 'Qualifications': "Bachelor's degree or above, majoring in Computer Science, or related fields.Rich research experience in but not limited to the following areas (as main authors of published papers at ACL, EMNLP, NIPS, ICML, etc.):.Syntactic analysis.Language generation.Knowledge and inference.Reinforcement learning.Deep learning and representation learning.Highly competent in algorithms and programming, prefer winners in ACMICPC, NOI/IOI and Kaggle;.Ability to work and collaborate well with team members;.Ability to work independently;.Senior candidates have the ability to organize and lead teams and projects.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201923456H', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Vision, Regular hours, Mondays - Fridays, Casual & Business'}, {'Company Overview': "\n\n\t\tFounded in 2012, ByteDance's mission is to inspire creativity and enrich life. With a suite of more than a dozen products, including TikTok, Helo, and Resso, as well as platforms specific to the China market, including Toutiao, Douyin, and Xigua, ByteDance has made it easier and more fun for people to connect with, consume, and create content.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-scientist-ai-lab-urgent-10126545?jobId=jobstreet-sg-job-10126545§ionRank=1300&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Scientist, - (Hardware Assurance) [R00007261] #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 28-Oct-22']}, {'Job Responsibilities': 'Identify and procure relevant targets and devices for research targets in project scope.Device preparation and test bed setup (PCB analysis, hardware and software).Investigation of secure boot process.Sample preparation, devices / test board setup, side-channel and fault-injection techniques to assess the vulnerabilities in firmware security.Development of software and hardware for non-invasive and semi-invasive analysis of semiconductor devices (e.g. FPGA, microcontrollers).Conduct chip analysis via failure analysis techniques for hardware security purpose.', 'Job Requirements': "PhD degree in computer science, electrical engineering, or related disciplines, with interest in research and development. Master's with extended work experience can also be considered.Prior experience in working with microelectronics and FPGA devices. Coding background in either of C/Java/Assembly/Python/VHDL for analysis is required.Knowledge in developing prototypes, FPGA design, manipulating oscilloscopes, writing device drivers and communication interfaces, which are used in analysis of implemented designs.Strong written and oral communication skills.Problem solving, research and analytical skills.Team player."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Hardware', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-hardware-assurance-%5Br00007261%5D-urgent-10060666?jobId=jobstreet-sg-job-10060666§ionRank=1301&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Director Data Science & Analytics M/F #WorkNow'}, {'company_name': 'STMicroelectronics Asia Pacific Pte Ltd (Lite ads)'}, {'small_section': ['Singapore', 'Posted on 30-Oct-22']}, {'Job description': '', 'Role Responsibilities': '', 'Data Analysis:': 'Manage data & information support for all the key initiatives\xa0of\xa0business units across BEM&T supporting countries & peers’ teams. It means interact with metrics owners across various functions\xa0and\xa0get end\xa0to\xa0end understanding\xa0of\xa0the system\xa0of\xa0measurement\xa0and\xa0applicability\xa0of\xa0the same across various Scorecards.Play strategic role\xa0in\xa0end-to-end data analytics journey, i.e. data collection, processing, data marts creation, reporting & dashboarding\xa0and\xa0analysis\xa0of\xa0data for various business functions/departments such as segments, products, operations, among\xa0others..Drive the creation\xa0of\xa0high-quality analyses for the business\xa0and\xa0the definition\xa0of\xa0metrics /\xa0leading\xa0indicators that track the business’s performance at different levels..Responsible for enhancing data systems, streamlining business processes\xa0and\xa0improving the quality\xa0of\xa0analytics solutions on a consistent basis; relentlessly drive on process improvement & automation to deliver higher efficiencies..', 'Data Governance:': 'Work\xa0with Compliance on enhancing data security governance in line with Group Policies\xa0and\xa0monitoring/tracking the team’s compliancy.Provide guidance\xa0to\xa0local\xa0teams on matters related\xa0to\xa0data governance\xa0and\xa0solutions\xa0to\xa0enable delivery\xa0of\xa0information\xa0to\xa0stakeholders\xa0in\xa0a secured, timely\xa0and\xa0efficient manner.Work\xa0closely with technology function\xa0and\xa0the data team on solutions\xa0to\xa0resolve identified production issues which are impacting existing infrastructure /solution covering data quality, data assurance, refresh timeliness, data security governance.', 'Team Management\xa0and\xa0results:': 'Identifying cost\xa0and\xa0efficiency opportunities, managing resources\xa0and\xa0talents; driving the resolution\xa0of\xa0issues; holding self\xa0and\xa0team accountable for results..Ensure that the data science team provides timely reports, dashboards\xa0and\xa0data driven business insights\xa0to\xa0drive business growth..', 'Profile': '', 'The Ideal Candidate': 'Master’s degree\xa0in\xa0Business/Technology/IT/Computer Science or equivalent.Data visualization & Advanced Analytics.SAS, SQL, Python, Hive Query, Azure – technical Coding.At\xa0least\xa010\xa0years\xa0of\xa0data & business analytics experience, with progressive responsibilities throughout your career commensurate with the scope\xa0and\xa0size\xa0of\xa0this role.Technical\xa0and\xa0analytical skills,\xa0and\xa0highly proficient\xa0in\xa0the workings\xa0of\xa0big data\xa0and\xa0advanced analytics technologies.'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199404407W', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Accounting / Audit / Tax Services'}, {'Company Overview': '\n\tSTMicroelectronics is a world leader in providing the semiconductor solutions that make a positive contribution to people’s lives, today and into the future.\xa0 Among the world’s largest semiconductor companies and a leading technology innovator: ~7,400 people working in R&D and product design, ~18,000 patents, ~ 9,600 patent families and ~ 550 new patent filings, employing ~46,000 employees worldwide in 11 main manufacturing sites, 80 sales & marketing offices in 35 countries and committing close to 20% in R&D.\n\t\n\t\n\t\tPeople are the foundation of ST and they drive our success. We believe there is a strong correlation between employee\'s commitment and business results. Our engaged employees will make ST even more successful. For this reason, ST has a solid infrastructure to manage the core processes related to people and, one of our top corporate priorities is "People". This corporate priority focuses on employee engagement and recognition, talent management, leadership development.\n\nOur HR Strategy\n\n\t\tOur Human Resources strategy aims to ensure the right level of hiring and retention, to match the company’s evolving requirements in terms of profiles, competencies and the dynamic integration of new people. At ST, we believe that the development of our people is the key factor for ensuring our long term success.\n\n\t\tOur Vision : Everywhere microelectronics make a positive contribution to people\'s lives, ST is there.\n\n\t\tOur Values :\n\nINTEGRITY: we conduct our business with the highest ethical standards, honor our commitments, deliver on our promises, are loyal and fair.\nPEOPLE: we behave with openness, trust and simplicity; ready to share our knowledge, encourage everyone’s contribution, develop people through empowerment, teamwork and training.\nEXCELLENCE: we strive for quality and customer satisfaction and create value for all our partners; we are flexible, encourage innovation, develop our competencies, seek responsibility and are accountable for our actions.'}, {'url': 'http://www.jobstreet.com.sg/en/job/director-data-science-analytics-m-f-worknow-10116182?jobId=jobstreet-sg-job-10116182§ionRank=1302&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Job description
[{'position': 'Research Fellow, (Computational Social Science) - (R00008453) #Urgent'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Responsibilities': 'Digital data collection (i.e., scraping).Conduct computational modeling to analyze large-scale datasets (including social media data).Project planning, research design and collection.Management of large-scale datasets.Prepare manuscripts for journal publication.', 'Job Requirements': 'Ph.D. in empirical social science (e.g., Psychology, Economics) or data science (e.g., Computer Science, Machine Learning) with research interests in computational social science.Experience with programming, text mining, social computing, machine learning, text analysis and computational modeling.Prior experience in working with social media data will be an advantage but is not required.Strong statistical skills.Experience in preparing academic reports and presentations.Strong interpersonal, written and verbal communication skills.Excellent organizational skills and able to work within given deadlines.Self-directed learner who effectively picks up relevant skills as needed.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computational-social-science-r00008453-urgent-10053879?jobId=jobstreet-sg-job-10053879§ionRank=1303&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate/Research Fellow (Biostatistics)'}, {'company_name': 'National University of Singapore'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Description': 'Data analysis, reporting and publication of ongoing and new projects using state-of-the-art statistical methods as appropriate to the data and study design; contribution to shaping research questions, study design (including sample size calculation) and development of the appropriate plan of analysis of new projects.Contribution to the preparation of research studies, grant proposals, ethics applications, plan and conduct of analysis, manuscripts, and oral presentations in projects led by other team members.Contribution to the management of research activities including team coordination, mentoring/training of researchers and clinicians in biostatistics, conducting research workshops and seminars.Oversight and coordination of statistical support staff, and potentially of students.Up-to-date knowledge of current and emerging trends in medical statistics.Membership of the DFM research committee.', 'Qualifications': 'State-of-the-art statistical methods and modelling techniques for the examination of research questions across a number of study designs with clinical research data, including clinical records and other routinely collected data..Proficiency in the use of statistical packages (STATA, SAS) and statistical data analysis environments (R, Matlab).Dissemination of research activity through reporting, publication, and communications to conferences, including oral presentations to a wide range of audiences.Provision of training and/or mentoring related to biostatistics.Excellent organisation, coordination, and problem-solving skills.Excellent time management skills and ability to prioritise projects with focus on quality and timely delivery of work.Excellent interpersonal and communication skills; team spirit.', 'More Information': []}, {'Career Level': 'Entry Level', 'Qualification': "Master's Degree", 'Job Type': 'Contract', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604346E', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '29 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Medical, Sports (e.g. Gym), Parking, Regular hours, Mondays - Fridays, Formal (e.g. Shirts + Ties), Flexi-benefits'}, {'Company Overview': '\n\tA leading global university centred in Asia, the National University of Singapore (NUS) offers a global approach to education and research, with a focus on Asian perspectives and expertise. It is driven by its mission to transform the way people think and do things through education, research and service. The NUS community is distinctively global with talented students and faculty from more than 100 countries. We invite dynamic and motivated individuals to be part of this vibrant hub which is dedicated to delivering quality education and undertaking research for the betterment of society.'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-research-fellow-biostatistics-10058343?jobId=jobstreet-sg-job-10058343§ionRank=1304&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Backend Software Engr., TikTok Live (Data Platform) #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'You will:': 'Plan and lead large-scale technical projects to lay the foundation for the iterative development and scale of early products.Develop robust, efficient technology products that serve 1 billion users.Contribute to engineering strategy, tooling, processes, and culture.Research and apply cutting-edge domain and technical knowledge into products.', 'Qualifications': 'As a world-class engineer, you have rich working experience in scalable, highly available, distributed and mission-critical systems..Deep understanding of computer architectures, data structures and algorithms..Able to work closely with diverse stakeholders and have good communication skills.Self-driven, positive, cooperative and willing to keep learning enthusiasm at all times.Experience in the payment or financial domain is a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/backend-software-engr.-tiktok-live-data-platform-immediate-10143861?jobId=jobstreet-sg-job-10143861§ionRank=1305&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow (A*SRL, TD Lab)'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {}, {'Career Level': 'Senior Manager', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Contract', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-a*srl-td-lab-10053394?jobId=jobstreet-sg-job-10053394§ionRank=1306&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
[{'position': 'Research Scientist Intern (Computer Vision) - 2022'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities': 'Conduct cutting-edge research in the fields of computer vision and machine learning;.Ensure technologies get successfully applied to products;.Incubate new products with computer vision and machine learning technologies..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Computer Science, Computer Engineering, Information Systems or a related technical discipline;.Research experience in but not limited to the following areas: self-supervised learning, image/video classification/understanding, object detection, segmentation, scene understanding, learning from multi-modality data, pose and gesture, 3D vision;.Highly competent in algorithms and programming;.Accolades within ACMICPC, NOI/IOI, Topcoder and Kaggle, or contributions to published papers at CVPR, ICCV, ECCV, etc. would be advantageous..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-intern-computer-vision-2022-10122608?jobId=jobstreet-sg-job-10122608§ionRank=1307&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow, (Magnetism & Quantum Condensed Matter Physics) (R00005449)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Responsible for experimental efforts in device architectures with engineered magnetoelectric coupling.', 'Job Requirements': 'Ph.D. degree in experimental condensed matter physics\xa0.Track record in high frequency transport measurements, cryogenics handling and UHV.Interest to learn new (complementary) measurement techniques.Experience with variable temperature magnetic force microscopy and superconducting magnets is desired.Demonstrated track record of research achievements in magnetism\xa0.Demonstrated ability to publish high-tier research publications.Excellent verbal and written communication skills (including scientific writing).'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-magnetism-quantum-condensed-matter-physics-r00005449-10046500?jobId=jobstreet-sg-job-10046500§ionRank=1308&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate - (Artificial Intelligence) (R00010348)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Description:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.', 'Job Requirements:': 'Research and Comprehensive Skills:.Coding Skills:.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-artificial-intelligence-r00010348-10046384?jobId=jobstreet-sg-job-10046384§ionRank=1309&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Product Data Analyst, - Data Analysis* #Seekbetter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': [], '[About Tiktok]': '', '[About the Team]': 'Perform analysis on product usage product performance data..Identify factors affecting product usage, performance and growth, derive meaningful insights to guide to better product and decision making for our business leaders..Work with cross functional partners (Product Managers/Operations/Engineering etc.) for product optimization and bring value to the business..Design A/B experiments to optimize and drive future product developments..Perform market activity analysis and any other analytics that would help guide product and business decision making..Construct specialized data models based on product needs and business requirements..Able to operate with minimal supervision and independently identify + support data analysis needs of product and business lines..Coach and mentor junior members of the team. Setting clear team goals and overseeing day to day team operation..', 'Qualifications': "Bachelor's degree in Statistics, Mathematics or any other relevant fields..2+ years of proven work experience in Analytics of any Internet or large scale B2C products..Excellent communication skills with ability to communicate conclusions effectively to both technical and non-technical audiences..Ability to partner effectively with product and business leaders. Using data to influence stakeholders in a matrixed organization..Proficiency in Tableau, or similar data visualization tools..Proficiency in SQL, Python..Strong user affinity with solid understanding of product usage and performance.."}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/product-data-analyst-data-analysis*-seekbetter-10118050?jobId=jobstreet-sg-job-10118050§ionRank=1310&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Product Data Analyst - Data Analysis #Seekbetter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Perform analysis on product usage product performance data..Identify factors affecting product usage, performance and growth, derive meaningful insights to guide to better product and decision making for our business leaders..Work with cross functional partners (Product Managers/Operations/Engineering etc.) for product optimization and bring value to the business..Design A/B experiments to optimize and drive future product developments..Perform market activity analysis and any other analytics that would help guide product and business decision making..Construct specialized data models based on product needs and business requirements..Able to operate with minimal supervision and independently identify + support data analysis needs of product and business lines..Coach and mentor junior members of the team. Setting clear team goals and overseeing day to day team operation..', 'Qualifications': "Bachelor's degree in Statistics, Mathematics or any other relevant fields..2+ years of proven work experience in Analytics of any Internet or large scale B2C products..Excellent communication skills with ability to communicate conclusions effectively to both technical and non-technical audiences..Ability to partner effectively with product and business leaders. Using data to influence stakeholders in a matrixed organization..Proficiency in Tableau, or similar data visualization tools..Proficiency in SQL, Python..Strong user affinity with solid understanding of product usage and performance.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/product-data-analyst-data-analysis-seekbetter-10118981?jobId=jobstreet-sg-job-10118981§ionRank=1312&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Research Scientist, (Electrical Engineering) #LetsGetToWork #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Lead the technical development of advanced data-driven methods for smart meter data analytics for smart home applications..Design artificial intelligence (AI) based models for residential load demand forecasting, solar PV power forecasting, and prosumer behaviour modelling and knowledge extraction..Perform testing and demonstration of the algorithms and deliverables..Communicate with the industry collaborators for progress reporting and potential commercialization of deliverables..Assist the PI for project management, including time schedule and milestone management..Coordinate with other research teams in this project for internal and external communication and collaboration..', 'Job Requirements:': 'PhD degree in Electrical Engineering..At least 5 years research and/or industry working experience..Expert knowledge in power system data analytics, especially on forecasting and knowledge extraction..Comprehensive experience in industry-funded research projects..Familiar with commercialization of research deliverables..Excellent project management skills..Excellent publication record in top-tier journals..Excellent verbal and written communication skills in English..Strong analytical and conceptual abilities..Able to work independently and in a team to realize proposed research work..'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-electrical-engineering-letsgettowork-urgenthire-10143159?jobId=jobstreet-sg-job-10143159§ionRank=1314&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Software Engineer (Machine Learning Infrastructure), AML #JobsThatMatter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Software Engineer (Machine Learning Infrastructure), AML': '', 'Responsibilities:': '', "What You'll Do": 'Responsible for the design and implementation of a global-scale machine learning system for feeds, ads and search ranking models..Responsible for improving use-ability and flexibility of the machine learning infrastructure..Responsible for improving the workflow of model training and serving, data pipelines and resource management for the multi-tenancy machine learning systems..', 'Qualifications': 'Proficient in C/C++/Python, and have solid programming skills..Familiar with deep learning frameworks (TensorFlow/Pytorch)..Experience in developing and deploying large-scale systems..Ability to work independently and complete projects from beginning to end and in a timely manner..Good communication and teamwork skills to clearly communicate technical concepts with other teammates..', 'Preferred Qualifications:': 'Experience contributing to an open sourced machine learning framework (TensorFlow/PyTorch)..Experience in big data frameworks (e.g., Spark/Hadoop/Flink), experience in resource management and task scheduling for large scale distributed systems..Strong background in one of the following fields: Hardware-Software Co-Design, High Performance Computing, ML Hardware Acceleration (e.g., GPU/TPU/RDMA) or ML for Systems..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/software-engineer-machine-learning-infrastructure-aml-jobsthatmatter-10118954?jobId=jobstreet-sg-job-10118954§ionRank=1315&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Software Engineer (Machine Learning Infrastructure), AML
[{'position': 'Research Fellow (Computer Science & Engineering) - [R00008590] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Responsibilities:\xa0': 'Understand the research project and work context as a scientific research staff in the team.Apply scientific, technical and software engineering skills to conduct research.Develop prototypes to demonstrate successful application of the research.Facilitate technical development, testing and refinements of research project.Promote collaborative and translational research work.Documenting research plans and progress, and writing reports.', 'Job Requirements:\xa0': '\u200bPh.D. Degree in Computer Science and Engineering or related fields.Has demonstrable experience in topics at the intersection of machine learning, robust optimization, and data analytics.Programming fluency in Python, C/C++ or Java.Proficiency in developing and deploying algorithms to both academic and industrial environment.Prior background in computer vision or natural language processing is a plus.Highly motivated, independent and able to work as a team.Effective communication and report writing skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Professional Certificate/NiTEC', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-engineering-%5Br00008590%5D-jobsthatmatter-10053138?jobId=jobstreet-sg-job-10053138§ionRank=1316&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Fellow (Artificial Intelligence) (R00008257)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Job Responsibilities:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Lead a team of junior researchers, e.g., PhD students and Research Assistant, to help with the vision and data analytics tasks.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly..Prepare and publish research papers on top-tier conferences and journals.Help prepare the proposal and progress report.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': '', 'Coding Skills:': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-r00008257-10053202?jobId=jobstreet-sg-job-10053202§ionRank=1317&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Research Fellow (Artificial Intelligence) (R00008258)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Job Responsibilities:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Lead a team of junior researchers, e.g., PhD students and Research Assistant, to help with the vision and data analytics tasks.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly..Prepare and publish research papers on top-tier conferences and journals.Help prepare the proposal and progress report.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': '', 'Coding Skills:': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-r00008258-10053215?jobId=jobstreet-sg-job-10053215§ionRank=1318&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'AVP/Senior Associate, Machine Learning Engineer, COO-office, Institutional Banking Group - (WD38720)'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Business Function': '', 'Job Purpose': '', 'Responsibilities': 'Discuss with business stakeholders to understand the business problems..Propose, prove, and own suitable analytics solutions..Develop and execute on project plans, including schedules, specifications, risks, and contingency plans..Apply cutting edge technologies and tools in big data to build and manage data pipelines..Develop and implement machine learning algorithms and build production-grade end-to-end analytics solutions together with cross-functional teams including business, data science, technology, and production teams..Monitor model performance and maintain the analytics models and pipelines..', 'Requirements:': 'Bachelor’s or master’s degree in Computer Science, Business Analytics, or related fields..3-8 years of experience in software application development involving high volume of data, and in leveraging advanced analytics and machine learning to achieve business impact..Excellent programming skills in Python, SQL, shell script..Familiar with software development and productivity tools such as VS Code, PyCharm, Jupyter, Jira, Git, Confluence..Strong in problem-solving, being resourceful with end-to-end critical thinking to find out solutions even in unfamiliar scenarios..Team player with good communication and project management skills..'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/avp-senior-associate-machine-learning-engineer-coo-office-institutional-banking-group-wd38720-10127383?jobId=jobstreet-sg-job-10127383§ionRank=1319&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Business Function
[{'position': 'Research Assistant (Computer Science/Engineering/Electrical) - (R00008286)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Development of graph-based reasoning networks for facial landmark detection.Development of spatial temporal graph-based reasoning network to improve the accuracy of video facial landmark detection.Development of stabilization methods for video facial landmark detection.Development of graph neural network theory.Development of sequence modeling theory.Development of deep learning methods and theory.Development of computer vision methods\u200b.', 'Job Requirements:': '\u200bBachelor degree or above in Computer Science/Engineering, or Electrical/Electronic Engineering.Strong mathematical background and related project experience.Top-tier AI venue publications are very much preferred.Minimum 2 years of related work experience.Deep understanding of the theory of Machine Learning, Deep Learning, Computer Vision.Experience in at least one Deep Learning framework such as Tensorflow, Pytorch and Programming Languages such as Python, Matlab, R and/or C/C++.Demonstrated project experience related to graph-based reasoning and facial landmark detection will be an advantage.Good written and oral communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-engineering-electrical-r00008286-10051382?jobId=jobstreet-sg-job-10051382§ionRank=1320&token=0~aa06f763-fd80-40ef-8f13-45acfaf5fb89&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Engineer Intern, TikTok #WorkNow #JobsThatMatter #Urgent*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'About TikTok': '', 'Team Introduction': '', 'Responsibilities': 'Responsible for providing end to end solutions to enable business;.Responsible for data warehouse modeling design & implementation;.Responsible for data pipeline & services development for data products;.Responsible for developing and optimizing ETL processes;.Responsible for enriching & optimizing technical documents;.', 'Qualifications': '1Undergraduate, or Postgraduate who is currently pursuing a degree in Computer Science, related engineering discipline, or equivalent practical experience;.Proficiency in SQL with related project experience;.Software development experience in one or more general-purpose programming languages, such as Java/Go/C++/C#/Python;.Good understanding of the Hadoop ecosystem, open-source big data tech stacks like Hive, MapReduce, Spark, etc;.Familiar with large-scale data warehouse architecture design, data model design, and ETL;.Good understanding of streaming pipeline development, open-source OLAP engines, or Machine Learning/Data Mining is a plus;..Strong analytical thinking and exceptional attention to detail;.Working proficiency in verbal and written English;.Able to commit at least 3 days a week..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engineer-intern-tiktok-worknow-jobsthatmatter-urgent*-10118765?jobId=jobstreet-sg-job-10118765§ionRank=1322&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
About TikTok
[{'position': 'Data Analyst II (Oil & Gas)'}, {'company_name': 'Manpower Staffing Services (S) Pte Ltd - SCS'}, {'small_section': ['West', 'SGD\xa03,000 - SGD\xa04,500', 'Posted on 14-Oct-22']}, {'Data Analyst II (Oil & Gas)': '', 'Responsibilities:': 'Responsible for importing, cleansing, validating and analyzing data with the purpose of understanding or drawing conclusions from the data..Consolidate and/or present data in charts, graphs, or tables..Focused on improving data quality..Works with moderate work direction and is skilled and knowledgeable to the position..', 'Requirements:': 'Analytical, verbal and written communication skills..Report generation and data analysis..Proficient in MS Office..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '.', 'EA No.': '02C3423', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tManpower is the global leader in contingent and permanent recruitment workforce solutions. It is part of ManpowerGroup, the world leader in innovative workforce solutions, which creates and delivers high-impact solutions that enable clients to achieve their business goals and enhance their competitiveness.\n\n\t\tManpower has provided organizations in Singapore with a continuum of staffing solutions from the incidental to the strategic since 1996, working with businesses to help them win. In the Human Age, where talent has replaced access to capital as the key competitive differentiator, Manpower Singapore leverages its trusted brand to develop a deep talent pool, providing clients with access to the people they need, fast. Manpower Singapore creates powerful connections between organizations and the talent they need to enhance their competitiveness and unleash their workforce potential. By creating these powerful connections, we help everybody achieve more than they imagined, and power the future of work.\n\n\t\tSee what is humanly possible at manpower.com.sg.\xa0\n\n\t\tPlease note that your response to this advertisement and communications with us pursuant to this advertisement will constitute informed consent to the collection, use and/or disclosure of personal data by Manpower for the purpose of carrying out its business, in compliance with the relevant provisions of the Personal Data Protection Act 2012.\xa0To learn more about ManpowerGroup's Global Privacy Policy, please visit https://www.manpower.com.sg/privacy-policy\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-ii-oil-gas-10067867?jobId=jobstreet-sg-job-10067867§ionRank=1323&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Data Analyst II (Oil & Gas)
[{'position': 'Computer Vision Research Scientist - Intelligent Creation'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities': 'Conduct fundamental research on computer vision, deep learning and AI problems, including but not limited to the deep learning for 3D object/human modeling, graphics, object and human interaction recognition, computer vision, self-supervised learning, multi-modality learning;\xa0.Research on long-term research goals;.Publish impactful research work on top conferences and journals;.', 'Qualifications': 'Work experience in a university, industry, or government lab(s), in a role with primary emphasis on AI research;.Hold a Ph.D. degree in computer science, electrical engineering, statistics, applied mathematics, data science or other related disciplines;.First-author publications at peer-reviewed AI conferences (e.g. CVPR, ECCV, ICCV, NeurIPS, ICML, SIGGRAPH) and journals (e.g., TPAMI, JMLR).Knowledge in one of the differentiable programming frameworks, e.g., PyTorch, TensorFlow, JAX;.Track record of high impact research;.(Preferred) Received best paper or equivalent awards in the aforementioned conferences;.(Preferred) Winner of international academic competitions..Minimum 3 years of experience.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/computer-vision-research-scientist-intelligent-creation-10122720?jobId=jobstreet-sg-job-10122720§ionRank=1324&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow (Bioinformatics)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Description:': 'Communication with researchers to understand biological problems.Translate the biological problems to actionable computational analysis plans.Execution of analysis plans and its subsequent interpretation.Generate analysis reports and communicate them to researchers.Management of the collaboration research data to ensure compliance to data policies.Facilitate the development of the centre infrastructure.Development of computational methods and systems in support of the research activities.Organization and instruction of training programs to staff and students in the area of bioinformatics.Survey, evaluation and report of current computational methodologies to ensure methods employed are up to date, relevant and best in class.', 'Job Requirements:': 'A PhD in Bioinformatics or similar field.Experience with working with biological data.Good communication skills to communicate with life science/medical researchers to understand biological problems and communicate analytical results.Customer focused approach to collaboration.Ability to translate biological problems to computational problems.Ability to code in a programming language to solve computational problems.Awareness of computational infrastructure and its upkeep.Ability to work on multiple projects in parallel and set priorities.Willingness to provide training to staff and students in the area of bioinformatics.Keen interest in the field of bioinformatics and willingness to try new methods and improve on existing ones.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-bioinformatics-10055579?jobId=jobstreet-sg-job-10055579§ionRank=1325&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Audit Manager - Data Analytics\xa0and\xa0Reporting - Vice President #Immediate'}, {'company_name': 'Citibank N.A.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Job Purpose:': '', 'Key Responsibilities:': 'Develops and supports Computer Assisted Audit Techniques and Techniques (CAATTs) using SAS Enterprise Guide..Performs independent testing of business data extractions and segmentations for completeness, accuracy, and applicability to internal audit testing and regulatory requirements across multiple platforms, including SAS, SQL Server, Oracle and others..Support Risk Based Audits and Issue Validation through independent testing of data sets across multiple platforms, including SAS, SQL Server, Oracle and other databases for accuracy and applicability to internal audit testing and regulatory requirements.\xa0.Develops and supports analytical solutions for continuous auditing across a wide array of consumer products..Provides management information (scheduled and ad-hoc) for reporting to internal and external stakeholders..Serves as lead analyst for all types of reviews and leads time based project teams as required..Possesses strong analytical and interpersonal skills, makes sound decisions, exhibiting initiative and intuitive thinking..Applies knowledge of key regulations to influence analytical testing strategies..Develops effective line management relationships to ensure strong understanding of the business..Demonstrates strong judgment, political astuteness, and sensitivity to cultural diversity..', 'Qualifications and Competencies': "BS/BA degree or equivalent combination of education/experience.\xa0Degree in Management Information Systems (MIS), Mathematics, Computer Science or Information Technology (IT) preferred..Significant and demonstrable experience in writing SQL queries (SAS, T SQL, P/L SQL) with a minimum of 5+ years of experience with SAS Enterprise Guide..Senior level experience in a related role with experience in providing scheduled and ad-hoc reporting, with proven abilities in taking responsibility for executing concurrently on a portfolio of high quality deliverables to stakeholders according to strict timetables..Experienced understanding of management information systems, data analytics tools, and related best practices and control initiatives across the financial services industry..Effective negotiation skills, a proactive and 'no surprises' approach in communicating issues and strength in sustaining independent views.\xa0This individual must be an articulate and effective communicator, both orally and in writing, with an energetic, charismatic and approachable style..Strong interpersonal skills for interfacing with all levels of management..SharePoint Designer or administrative experience is a plus.."}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Accounting/Finance, Audit & Taxation', 'Registration No.': '200309485K', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\n\t\tCiti is more than a global financial services company. It’s an engine for progress. Join us, and you’ll have the chance to get involved in progress in all its shapes and forms, right across the world. From the micro to the macro, from Australia to Zambia, the work we do has real positive impact. Wherever you are and whatever you do, progress starts here.\n\n\nMission: Citi's mission is to serve as a trusted partner to our clients by responsibly providing financial services that enable growth and economic progress. Our core activities are safeguarding assets, lending money, making payments and accessing the capital markets on behalf of our clients. We are Citi, the global bank – an institution connecting millions of people across hundreds of countries and cities.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/audit-manager-data-analytics-and-reporting-vice-president-immediate-10125542?jobId=jobstreet-sg-job-10125542§ionRank=1326&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Job Purpose:
[{'position': 'Lecturer/Senior Lecturer in Data Analytics (R00009474) - #JobsThatMatter#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Requirements:': 'Applicants should have extensive industry and/or academic experience, a passion for teaching and preferably possess a Masters’ degree in information systems, computer science, statistics, or a closely related discipline, with the relevant professional qualifications..We are keen on applicants with strong industry experience in implementing data analytics and artificial intelligence solutions. Mastery in programming languages such as R, SAS, or Python is necessary. Candidates should be able to deploy statistical as well as machine learning analytical solutions using these tools..Candidates should demonstrate teaching excellence at the undergraduate/graduate level, and are able to engage in curriculum development and course administration for undergraduate and graduate analytics courses..Candidates should have a passion for teaching, excel at teaching and work closely with students. Candidates must have the versatility to teach multiple courses at the undergraduate and graduate levels. Lecturers and Senior Lecturers are expected to excel at teaching and service, work closely with students, and contribute to practice-based research and development of courses that leverage technology-enabled learning. Appointment terms are for three years. As we are expanding our course offerings, we seek versatile individuals who can teach courses at the undergraduate and graduate levels..NTU offers an internationally-competitive salary commensurate with the candidate’s qualifications and experience..', 'Application:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/lecturer-senior-lecturer-in-data-analytics-r00009474-jobsthatmatter-urgenthire-10137699?jobId=jobstreet-sg-job-10137699§ionRank=1327&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Requirements:
[{'position': 'Research Associate (Artificial Intelligence) (R00010349)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Description:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.', 'Job Requirements:': 'Research and Comprehensive Skills:.Coding Skills:.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-artificial-intelligence-r00010349-10046386?jobId=jobstreet-sg-job-10046386§ionRank=1328&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Lecturer / Senior Lecturer (Computational Materials Science) R00010365'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Lecturer / Senior Lecturer (Computational Materials Science)': '', 'Applicant Profile:': 'Experience in performing novel and advanced computational materials science techniques to understand structure and properties of materials under extreme conditions.Expertise in the design and prediction of functional materials structure using density functional theory (DFT) and crystal structure prediction.Passionate about education with a strong commitment to teaching excellence.Excellent communication skills to deliver impactful teaching.', 'Requirements:': 'Relevant Master’s degree or PhD in closely-related field.Hands-on experience in computational materials science techniques e.g. quantum mechanical computational modelling.', 'A candidate’s full application package should include:': 'Cover Letter.Full CV (including list of publications, records of competitive grants and graduate supervision, if applicable).Citation Report (if applicable).Teaching Statement.Teaching Evaluation (if applicable).Research Statement.Contact information of three [3] referees.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/lecturer-senior-lecturer-computational-materials-science-r00010365-10051413?jobId=jobstreet-sg-job-10051413§ionRank=1329&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Lecturer / Senior Lecturer (Computational Materials Science)
[{'position': 'Research Fellow (Molecular Parasitology) - R00010341'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Description:': '', 'Job Requirements': 'BSc in molecular/cellular biology, parasitology or related fields is required for this job application.The candidate is expected to have a reasonable level of training in basic molecular and cellular biology, in general. Good track record including authorships at peer-reviewed publication, as well as previous experience with malaria culture and systems biology will be particularly favored.The School of Biological Sciences seeks a diverse and inclusive workforce and is committed to equality of opportunity. We welcome applications from all and recruit on the basis of merit, regardless of age, race, gender, religion, marital status and family responsibilities, or disability..'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-molecular-parasitology-r00010341-10046447?jobId=jobstreet-sg-job-10046447§ionRank=1330&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'AVP/Senior Associate, Machine Learning Engineer, COO-office, Institutional Banking Group - (WD38720) #Urgent*'}, {'company_name': 'DBS Bank Limited (Lite Ads)'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Business Function': '', 'Job Purpose': '', 'Responsibilities': 'Discuss with business stakeholders to understand the business problems..Propose, prove, and own suitable analytics solutions..Develop and execute on project plans, including schedules, specifications, risks, and contingency plans..Apply cutting edge technologies and tools in big data to build and manage data pipelines..Develop and implement machine learning algorithms and build production-grade end-to-end analytics solutions together with cross-functional teams including business, data science, technology, and production teams..Monitor model performance and maintain the analytics models and pipelines..', 'Requirements:': 'Bachelor’s or master’s degree in Computer Science, Business Analytics, or related fields..3-8 years of experience in software application development involving high volume of data, and in leveraging advanced analytics and machine learning to achieve business impact..Excellent programming skills in Python, SQL, shell script..Familiar with software development and productivity tools such as VS Code, PyCharm, Jupyter, Jira, Git, Confluence..Strong in problem-solving, being resourceful with end-to-end critical thinking to find out solutions even in unfamiliar scenarios..Team player with good communication and project management skills..'}, {'Career Level': 'Senior Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '196800306E', 'Industry': 'Accounting / Audit / Tax Services'}, {}, {'url': 'http://www.jobstreet.com.sg/en/job/avp-senior-associate-machine-learning-engineer-coo-office-institutional-banking-group-wd38720-urgent*-10127831?jobId=jobstreet-sg-job-10127831§ionRank=1331&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Business Function
[{'position': 'BI Engineer #UrgentHire'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted 6 hours ago']}, {'Position Overview': '', 'Responsibilities': 'Develop reports and dashboards using Power BI or any related tools.Work with cross functional teams to understand the data extracted from different applications.Develop, integrate, test, and maintain existing and new applications.Design and develop tools to transform datasets of small and large volumes of data into clean, normalized, enriched datasets.Recommend enhancements and modifications to optimize business intelligence processes.Address business intelligence queries and issues in a timely fashion.Maintain documentations for all business intelligence processes.Think beyond the current tools and think creatively to deliver the best solution to problems presented.', 'Minimum Qualifications': 'BS or MS in Comp. Science, Engineering, Physics, Math, Statistics etc.5+ years with relevant experience required.Advanced knowledge in data analysis tools like Power BI, Tableau, Qlik or any other BI Tools.Experience in SQL and relational Databases (SQL/ORACLE/MySQL etc.,).Experience in data modeling, scripting, reporting and effective user interface design is highly preferred.Independent problem-solving skills.Knowledge in Salesforce, SAP, Anaplan is a plus.Snowflake, AWS S3 / Redshift experience is a plus.Strong verbal and written communication skills.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/bi-engineer-urgenthire-10147091?jobId=jobstreet-sg-job-10147091§ionRank=1332&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Research Fellow, (Molecular Biology and Biomolecular Interactions) (R00010518)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Description:': 'Hands-on data collection for users in Biacore T200 instrument in BMI facility.Providing training and advice for users in other biophysical equipment in the BMI (protein-protein and protein-drug interactions).For the PPP, handling and conceptualizing some complex protein production projects for diverse customers. Hands-on operations of the PPP are currently handled by three staff.Liaise with users (internal and external) and contact vendors for repairs and other equipment-related issues.Attending to safety issues of individual laboratories.Provide a yearly budget for Core, BMI and PPP facilities.', 'Job Requirements:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-molecular-biology-and-biomolecular-interactions-r00010518-10046338?jobId=jobstreet-sg-job-10046338§ionRank=1333&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Scientist - (Speech\xa0and\xa0Speaker Recognition) - R00011003-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Job Responsibilities': 'Conducting research speaker recognition, verification and profiling (such as speaker accent recognition, age height estimation, etc.).Conducting research on detection and classification of acoustic scene and events.Develop speaker diarization systems on various settings.Publish papers on high ranking conferences/journals.', 'Job Requirements': 'PhD degree from high recognised Universities/Institutions.Experience with PyTorch, and/or End-to-end speech recognition, speaker verification frameworks.Experience with standard deep learning architectures such as LSTM, CNN, Transformer..Strong in programming languages, i.e. C/C++, Java, scripting languages as python, perl, bash/shell.Experience in working with Linux OS environment and high-performance computing cluster.Have research experience and publications in ICASSP, Interspeech is preferred..'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-speech-and-speaker-recognition-r00011003-jobsthatmatter-10139086?jobId=jobstreet-sg-job-10139086§ionRank=1334&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow (Mathematical AI for Molecular Data Analysis) - (R00008503) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Job Responsibilities': 'Perform molecular data analysis, including molecular dynamics analysis, quantum mechanism analysis, geometric and topological modeling.Data analysis with machine learning and deep learning models.', 'Job Requirements': 'PhD in Mathematics, computer sciences, bioinformatics, computational physics/chemistry/biology, or other related areas.Previous experience on topological data analysis, machine learning and molecular data analysis is preferred.Have good training on computation, algorithm design and modeling.Research areas on applied topology, computational geometry/topology, molecular dynamics, bioinformatics, data analysis, and machine learning.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-mathematical-ai-for-molecular-data-analysis-r00008503-urgenthire-10135066?jobId=jobstreet-sg-job-10135066§ionRank=1335&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Engr. Intern (TikTok Data Platform) - 2022 #JobsThatMatter*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Responsibilities': 'Provide end to end solutions to enable business;.Data warehouse modeling design & implementation;.Data pipeline & services development for data products;.Developing and optimizing ETL processes;.Enriching & optimizing technical documents..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree in Computer Science, related engineering discipline, or equivalent practical experience;.Proficiency in SQL with related project experience;.Software development experience in one or more general-purpose programming languages, such as Java/Go/C++/C#/Python;.Good understanding of the Hadoop ecosystem, open-source big data tech stacks like Hive, MapReduce, Spark, etc;.Familiar with large-scale data warehouse architecture design, data model design, and ETL;.Good understanding of streaming pipeline development, open-source OLAP engines, or Machine Learning/Data Mining is a plus;.Strong analytical thinking and exceptional attention to detail;.'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engr.-intern-tiktok-data-platform-2022-jobsthatmatter*-10114764?jobId=jobstreet-sg-job-10114764§ionRank=1337&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow - (Computer Science) - (R00005157) #Urgent #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Preprocess real brain imaging data for further analytical tasks.Perform literature review and background study on graph analytics for brain network analysis.Design novel and effective Data Mining & Machine Learning techniques for brain network analysis.Develop/implement prototypes of the solutions, and validate their effectiveness empirically.Publish the research work in conferences and journals.', 'Job Requirements:': 'A PhD degree in Computer Science or a related discipline with a focus on Machine Learning, Data Mining or Statistics.Experience in designing and developing graph analytics and/or brain network analysis technologies.Good programming skills in e.g. Python, Matlab, C++, etc.Good interpersonal skills.Excellent teamwork awareness.Good communication and writing in English.Strong research experience will be a plus.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-r00005157-urgent-urgenthire-10142411?jobId=jobstreet-sg-job-10142411§ionRank=1338&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow - (Geometry, Probability, and Deep Learning) (R00009871)#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Obtaining mathematical results in the area of Geometry, Probability, and Deep Learning.Designing, implementing, and testing algorithms.Engaging in scientific exchange with collaboration partners of the project.Guiding junior researchers in the team.Preparing reports, scientific papers, and presentations.Helping with academic self-administration.', 'Job Requirements': 'PhD in Mathematics or related areas.Experience in geometry, probability and/or deep learning. Some more specific research areas of particular interest are infinite-dimensional Riemannian or metric geometry, infinite-dimensional probability or stochastic analysis, statistical learning theory, coding theory, inverse problems, and harmonic analysis. Moreover, some applications of particular interest are mathematical finance and biomedical image or shape analysis..Good publication record.Good communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-geometry-probability-and-deep-learning-r00009871-urgenthire-10137607?jobId=jobstreet-sg-job-10137607§ionRank=1339&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Senior Sales Force Effectiveness Specialist / Pharma / Up to SGD 6,800/mth! #JobsThatMatter'}, {'company_name': 'Integrity Partners Pte. Ltd.'}, {'small_section': ['River Valley', 'SGD\xa05,500 - SGD\xa06,800', 'Posted on 23-Oct-22']}, {'Job roles:': '', 'Knowledge/Skills:': '', 'How to Apply:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201634573Z', 'EA No.': '17C8502', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting', 'Benefits & Others': 'Miscellaneous allowance, Long hours, Formal (e.g. Shirts + Ties)'}, {'Company Overview': '\n\n\t\tMeet Integrity. We’re a leading recruitment firm specializing in the areas of Life Sciences and Engineering with over 100 years of combined experience in the industry. We’ve helped recruit the most prized talent in a wide variety of Life Science and Construction sectors.\n\n\t\tWith 40% of our waking time dedicated to work, we know the vital importance of how smallest actions can create the biggest impact in people’s lives. This is exactly why our friendly team of skilled experts always prioritizes actions based on core values over personal gain.\n\n\t\tThe secret to our business is personal relationships. Because People Matter.\n\n\t\tWe’ve been very fortunate to assist with the recruitment of some of the most talented and dynamic talent for many of the largest and smallest employers. These are businesses who were in need of elite recruits who possessed specific talents, unique skills and other technical disciplines.\n\t\n\tReach out to us to to discover even more about how we can help you with all of your recruiting needs or your own career.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-sales-force-effectiveness-specialist-pharma-up-to-sgd-6-800-mth!-jobsthatmatter-10095812?jobId=jobstreet-sg-job-10095812§ionRank=1340&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Job roles:
[{'position': 'Research Fellow - (Geometry, Probability, and Deep Learning) (R00009869) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Obtaining mathematical results in the area of Geometry, Probability, and Deep Learning.Designing, implementing, and testing algorithms.Engaging in scientific exchange with collaboration partners of the project.Guiding junior researchers in the team.Preparing reports, scientific papers, and presentations.Helping with academic self-administration.', 'Job Requirements': 'PhD in Mathematics or related areas.Experience in geometry, probability and/or deep learning..Some more specific research areas of particular interest are infinite-dimensional Riemannian or metric geometry, infinite-dimensional probability or stochastic analysis, statistical learning theory, coding theory, inverse problems, and harmonic analysis. Moreover, some applications of particular interest are mathematical finance and biomedical image or shape analysis..Good publication record.Good communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-geometry-probability-and-deep-learning-r00009869-urgenthire-10137436?jobId=jobstreet-sg-job-10137436§ionRank=1341&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Engineer, - (Computer Engineering/Computer Science) - (R00005375)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Research Engineer (Computer Engineering/Computer Science/Electronics Engineering)': "Image and video restoration.Image and video generation.Object detection or.Unsupervised and self-supervised learning.Bachelor's degree in Computer Engineering, Computer Science, Electronics Engineering or equivalent.Strong background in machine learning and computer vision.Strong publication records in machine learning or computer vision conferences/journals is preferable.Knowledge of scientific or engineering software like PyTorch, TensorFlow, Keras, etc."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software, Engineering, Electronics', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-computer-engineering-computer-science-r00005375-10054559?jobId=jobstreet-sg-job-10054559§ionRank=1342&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Research Engineer (Computer Engineering/Computer Science/Electronics Engineering)
[{'position': 'Research Associate - (Computer Science/Signal Processing) (R00005575)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key Responsibilities:\xa0': 'Development of algorithms for malware and vulnerability analysis for mobile applications.Implement customized analysis tools for detection and defense of mobile security attacks.Write research papers of high quality based on research results.Build deployable systems based on the research results.', 'Job Requirement:': 'Master’s degree in Computer Science, Signal Processing or related areas.Expertise in software engineering, software programming, computer security and testing.Research experience in software testing, mobile testing, and related areas.Excellent background in software engineering with Advanced Programming Skills (Python, C/C++, Java).Good communication skills.Ability to conduct research and work independently and within teams.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-signal-processing-r00005575-10046577?jobId=jobstreet-sg-job-10046577§ionRank=1343&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Specialist, Data Management & Quantitative Analysis#UrgentHire #JobsThatMatter'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Specialist, Data Management & Quantitative Analysis': '', 'Overview': '', 'Data Management\xa0and\xa0Quantitative Analysis -\xa0IC4': 'Independently works with internal\xa0and\xa0external datasets\xa0and\xa0client reference data\xa0and\xa0participates\xa0in\xa0the\xa0development\xa0of\xa0statistical, financial\xa0and/or\xa0econometric models for analyzing asset performance, securities data, derivative pricing, risk exposure or other sophisticated concepts..Provides analytical project management support for assigned area..With minimal guidance, supports assigned area with advanced, complex statistical\xa0and\xa0quantitative analyses..Contributes\xa0to\xa0the\xa0development\xa0of\xa0the\xa0techniques\xa0and\xa0methodologies\xa0to\xa0be used for each type\xa0of\xa0activity/analysis..Leads data modeling\xa0and\xa0quantitative analysis projects\xa0and\xa0serves as resource\xa0to\xa0less experienced colleagues..Uses technology tools to conduct analyses..Applies techniques such as SQL\xa0and\xa0querying\xa0and\xa0macro development\xa0to\xa0extract data for populating models..As an advanced user, may\xa0do\xa0some light programming\xa0or\xa0system configuration\xa0in\xa0order set up sophisticated models or algorithms..Understands\xa0the\xa0relevant processes\xa0and\xa0products\xa0in\xa0assigned area\xa0and\xa0which analyses, methodologies\xa0and\xa0approaches best support assessment\xa0of\xa0performance, risk, or valuation..Begins\xa0to\xa0lead complex projects\xa0in\xa0support\xa0of\xa0new\xa0or\xa0evolving processes/products..Interprets findings, prepares standard and ad-hoc reports and delivers results\xa0to\xa0management\xa0and/or\xa0other leaders..Provides recommendations for addressing observed outcomes..Translates complex technical concepts\xa0and\xa0analyses\xa0to\xa0non-technical audiences..Reviews accuracy\xa0of\xa0reports\xa0and\xa0calculations performed by less experienced colleagues.\xa0.No\xa0direct reports..Provides guidance\xa0to\xa0more junior analysts..Primarily responsible for\xa0the\xa0accuracy\xa0and\xa0quality\xa0of\xa0own\xa0work\xa0and\xa0the\xa0work\xa0of\xa0assigned project team members.\xa0.Work\xa0contributes\xa0to\xa0the\xa0achievement\xa0of\xa0area goals..', 'Qualifications:': 'Bachelors\xa0degree\xa0or\xa0the\xa0equivalent combination\xa0of\xa0education\xa0and\xa0experience..Advanced\xa0degree\xa0in\xa0quantitative analysis preferred..5-7\xa0years\xa0experience preferred..Experience\xa0in\xa0quantitative finance\xa0and\xa0technology preferred..', 'Employer Description:': '', 'EEO Statement:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/specialist-data-management-quantitative-analysis-urgenthire-jobsthatmatter-10145522?jobId=jobstreet-sg-job-10145522§ionRank=1344&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Specialist, Data Management & Quantitative Analysis
[{'position': 'Research Fellow, - (R00004943)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Assist research project under the direction of Principal Investigator or senior research staff, and present significant progress towards the deliverables.Lead sub-projects and coordinate collaboration works.Participate in writing scientific publications and grants. Review and curation of literature.Collaborate with other team members and supervise junior members.Assist in general operation of laboratory including ordering supplies and maintenance.Train new laboratory personnel, students, and short-term visiting scientists.Comply with all laboratory safety standards and guidelines.', 'Job Requirements:': 'PhD in Chemistry, Materials Science, Biomedical Science and related fields with specialization in nanotechnology, nanofabrication, nanocharacterization, nanobiotechnology, nanobiosensors, and biomaterials.Experience on biochemistry, bioanalysis, single molecular detection, molecular cloning, protein engineering, membrane proteins.Experience on cleanroom fabrication, photolithography, electron-beam lithography, reactive ion etching, thin-film deposition, basic cell culture and fluorescence microscopy imaging are highly desired.Experience in immunostaining, cell transfection, live cell imaging, super-resolution microscopy, MATLAB, and membrane reconstruction are highly desired.Good track records with at least 1 first author scientific publication in reputable journals.Highly motivated and dedicated to the development of the project.Excellent laboratory, planning, and leadership skills.Ability to integrate well into a team of researchers with different backgrounds, and the ability to learn new techniques.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-r00004943-10054810?jobId=jobstreet-sg-job-10054810§ionRank=1345&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Computer Vision Research Scientist - Intelligent Creation #Urgent*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Conduct fundamental research on computer vision, deep learning and AI problems, including but not limited to the deep learning for 3D object/human modeling, graphics, object and human interaction recognition, computer vision, self-supervised learning, multi-modality learning;\xa0.Research on long-term research goals;.Publish impactful research work on top conferences and journals;.', 'Qualifications': 'Work experience in a university, industry, or government lab(s), in a role with primary emphasis on AI research;.Hold a Ph.D. degree in computer science, electrical engineering, statistics, applied mathematics, data science or other related disciplines;.First-author publications at peer-reviewed AI conferences (e.g. CVPR, ECCV, ICCV, NeurIPS, ICML, SIGGRAPH) and journals (e.g., TPAMI, JMLR).Knowledge in one of the differentiable programming frameworks, e.g., PyTorch, TensorFlow, JAX;.Track record of high impact research;.(Preferred) Received best paper or equivalent awards in the aforementioned conferences;.(Preferred) Winner of international academic competitions..'}, {'Career Level': 'Entry Level', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/computer-vision-research-scientist-intelligent-creation-urgent*-10119877?jobId=jobstreet-sg-job-10119877§ionRank=1347&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Assistant - (Information & Computer Science/Mathematics) - R00005020 #Immediate'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'School of Computer Science and Engineering (SCSE) invites applications for the position of Research Assistant.': '', 'Key Responsibilities:': 'Conduct research on security analysis of smart contract and testing vulnerabilities in well-known open-source blockchain projects.Develop automatic vulnerability detection tools for blockchain.', 'Job Requirements:': 'Bachelor’s Degree in Information Computer Science, Mathematics, Software Engineering or related discipline.Expertise in software engineering, software programming, computer security and testing.Research experience in software testing, software analysis and related areas.Excellent communication and writing skills.Able to conduct research and write reports/articles independently and within teams.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-information-computer-science-mathematics-r00005020-immediate-10056807?jobId=jobstreet-sg-job-10056807§ionRank=1348&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
School of Computer Science and Engineering (SCSE) invites applications for the position of Research Assistant.
[{'position': 'Research Scientist, (Speech and Speaker Recognition) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Conducting research speaker recognition, verification and profiling (such as speaker accent recognition, age height estimation, etc.).Conducting research on detection and classification of acoustic scene and events.Develop speaker diarization systems on various settings.Publish papers on high ranking conferences/journals.', 'Job Requirements': 'PhD degree from high recognised Universities/Institutions.Experience with PyTorch, and/or End-to-end speech recognition, speaker verification frameworks.Experience with standard deep learning architectures such as LSTM, CNN, Transformer..Strong in programming languages, i.e. C/C++, Java, scripting languages as python, perl, bash/shell.Experience in working with Linux OS environment and high-performance computing cluster.Have research experience and publications in ICASSP, Interspeech is preferred..'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-speech-and-speaker-recognition-urgenthire-10137248?jobId=jobstreet-sg-job-10137248§ionRank=1350&token=0~2cd547ae-7523-4b05-8173-c1e6170725bd&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Analytics Lead, Google Cloud #Urgent'}, {'company_name': 'Google Inc.'}, {'small_section': ['Singapore', 'Posted on 20-Oct-22']}, {'Minimum qualifications:': "\xa0Bachelor's degree in Computer Science, related technical field, or equivalent practical experience.10 years of customer-facing experience in the enterprise space, especially in translating customer business needs into cloud centric solutions.Experience working with cloud technology, architectures, and data analytics.Experience with data warehousing, data lakes, streaming analytics, and business intelligence.", 'Preferred qualifications:': 'Experience in data engineering, database development, integration, and tooling for data pipelines.Knowledge of open-source data management and database ecosystem best practices.Experience with data quality, data governance and data quality management.Knowledge of machine learning concepts such as feature engineering, model training, inference, hyper-parameter tuning.Ability to collaborate effectively across organizational boundaries, build relationships, and manage team member and ideas to achieve organizational goals.Excellent presentation skills, with the ability to deliver a polished and professional business and technical pitch to the C-Suite and Board levels.', 'About the job': '', 'Responsibilities': 'Support local sales teams in pursuit of key business opportunities, engage customers to illustrate how Google Cloud can address their requirements..Represent the customers, partners, and field in the region to influence a data-driven vision and direction for Technology, Solutions, and Use Case development at Google Cloud..Provide expert architectural guidance for selected customers adopting complex Data Analytics technologies from Google Cloud..Partner closely with Sales and pre-sales leaders to define and the Go-To-Market strategy for Data Analytics in the region..Be accountable for the sales performance of Data Analytics services in the region..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200817984R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Sports (e.g. Gym), Vision, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\n\t\tGoogle's innovative search technologies connect millions of people around the world with information every day. Founded in 1998 by Stanford Ph.D. students Larry Page and Sergey Brin, Google today is a top web property in all major global markets. Google's targeted advertising program, which is the largest and fastest growing in the industry, provides businesses of all sizes with measurable results, while enhancing the overall web experience for users. Google is headquartered in Silicon Valley with offices throughout North America, Europe, and Asia.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analytics-lead-google-cloud-urgent-10084863?jobId=jobstreet-sg-job-10084863§ionRank=1352&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Minimum qualifications:
[{'position': 'Data Analyst Internship(6months) - Intellectual Property Rights(IPR) Protection Team'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities': '', 'Job Description': '', 'Job Responsibilities': 'Conduct research and collect data inputs for algorithms to identify risky products on the platform..Assist with designing and refining algorithms to quantify risks and predictive analysis..Investigate anomalies and propose solutions..Assist with the design and implementation of the Risk Dashboard..Assist with the rollout and presentation of the dashboard to stakeholders.', 'Qualifications': 'English working proficiency.Pursuing a Bachelor or Masters in Law/ Business/ e-Commerce/ Computer Science/ Software Engineering/ Economics/ Statistics/ Mathematics/ Operations/ Research/ Related Fields..Data analytical skillset - SQL, Excel.Experience with data visualization software is a plus..Attention to detail, good at problem-solving..Passionate about technology, good at problem-solving..'}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-internship-6months-intellectual-property-rights-ipr-protection-team-10121145?jobId=jobstreet-sg-job-10121145§ionRank=1353&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Top Technology Scholar Programme – Senior Engineer / Engineer'}, {'company_name': 'HONG KONG APPLIED SCIENCE AND TECHNOLOGY RESEARCH INSTITUTE (ASTRI)'}, {'small_section': ['Hong Kong', 'Posted on 26-Oct-22']}, {'Reference #: (Please indicate the corresponding Ref # from below)': '', 'IoT Sensing and AI Technologies –\xa0Ref: TTSP/IOTSAI': '', 'Trust and AI Technologies –\xa0Ref: TTSP/TAIT': '', 'Communications Technologies –\xa0Ref: TTSP/CT': '', 'Integrated Circuits and Systems': '', '\xa0Ref: TTSP/ICS': '', 'Job Responsibilities': 'Assist in ITF R&D project.Perform research, development, implementation, and integration of infrastructure and applications.Resolve technical problems, technology research and development of core technologies.Design and develop software and hardware applications and systems.Support feature testing, bugs tracking/analysis / report and related tasks.Prepare testing data and scripts for automation.Prepare testing data for the deliverables and documenting the method and results.Analyse, benchmark, and evaluate system performance.Document algorithm design and software / hardware architecture.Evaluate and implement customer requirements.Support IP development.Conduct literature review and marketing survey on technologies, products, and patents to collect background information for proposal writing.', 'Requirements': '', 'Our Offer – Top Technology Scholar Programme (TTSP)\xa0\xa0': '', 'Features of TTSP': 'Promotion and salary increment granted after 12 months’ tenure on achieving assigned KPI.A scholarship of $50,000 and $80,000 will be awarded to Master and Doctoral degree graduates respectively upon completion of the 2-year programme with satisfactory performance..GBA and overseas on-the-job, professional trainings are available.Visit a Startup to understand the essentials of a successful operation..Internal and external course sponsorships relevant to your job scope.An internal or external Mentorship will be offered.Participation in Top Ecosystem Alliance / CSR project.', 'Requirement': 'Masters or Doctoral graduate in STEM-related disciplines within two years of graduation.Passionate about applied science and technology innovations.A motivated team player with good communications skills.', 'Application': '', 'NOT to INCLUDE': 'Name of the University graduated.Master/PhD degree obtained / expecting and when.Did you participate in ITF Research Talent Hub before? If yes, please state the period..Were you an employee of ASTRI? If yes, please state the period.'}, {'Career Level': 'Entry Level', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '-', 'Company Size': '501 - 1000 Employees', 'Industry': 'Consulting (IT, Science, Engineering & Technical)', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\nThe Hong Kong Applied Science and Technology Research Institute (ASTRI)\xa0was established by the Hong Kong SAR Government in 2000 with a mission to enhance the city’s global competitiveness. To remain globally prominent, Hong Kong strives to find new ways for its traditional sectors to thrive, and for the potential of emerging sectors to be unleashed. Harnessing the power of technology is key to achieving this.\n\n\t\tASTRI lives up to its mission by pursuing applied Research and Development (R&D) that is delivering technological solutions that strengthen institutions, improve businesses, and benefit communities. Its R&D endeavours focus on five key areas of applications:\n\n\n\t\t\t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Smart City\n\n\t\t\t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Financial Technologies\n\n\t\t\t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Intelligent Manufacturing\n\n\t\t\t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Health Technologies\n\n\t\t\t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Application Specific Integrated Circuits\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/top-technology-scholar-programme-senior-engineer-engineer-5138898/origin/my?jobId=jobstreet-my-job-5138898§ionRank=1354&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Reference #: (Please indicate the corresponding Ref # from below)
[{'position': 'Product Data Analyst - Data Analysis #JobsThatMatter #WorkNow*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Responsibilities': [], 'About Tiktok': '', 'About the Team': 'Perform analysis on product usage product performance data..Identify factors affecting product usage, performance and growth, derive meaningful insights to guide to better product and decision making for our business leaders..Work with cross functional partners (Product Managers/Operations/Engineering etc.) for product optimization and bring value to the business..Design A/B experiments to optimize and drive future product developments..Perform market activity analysis and any other analytics that would help guide product and business decision making..Construct specialized data models based on product needs and business requirements..Able to operate with minimal supervision and independently identify + support data analysis needs of product and business lines..Coach and mentor junior members of the team. Setting clear team goals and overseeing day to day team operation..', 'Qualifications': "Bachelor's degree in Statistics, Mathematics or any other relevant fields..2+ years of proven work experience in Analytics of any Internet or large scale B2C products..Excellent communication skills with ability to communicate conclusions effectively to both technical and non-technical audiences..Ability to partner effectively with product and business leaders. Using data to influence stakeholders in a matrixed organization..Proficiency in Tableau, or similar data visualization tools..Proficiency in SQL, Python..Strong user affinity with solid understanding of product usage and performance.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/product-data-analyst-data-analysis-jobsthatmatter-worknow*-10115519?jobId=jobstreet-sg-job-10115519§ionRank=1355&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Lead Data Scientist, - (2200012277). *'}, {'company_name': 'ALLEGIS GLOBAL SOLUTIONS (SINGAPORE) PTE. LTD'}, {'small_section': ['Singapore', 'Posted on 23-Oct-22']}, {'About Standard Chartered\xa0': '', 'Do\xa0the\xa0right\xa0thing': '', 'Never settle,': '', 'Be\xa0better together,': '', 'In\xa0line with our Fair Pay Charter,': '', 'Core bank funding for retirement savings,\xa0medical\xa0and\xa0life insurance,': '', 'Time-off': '', 'Flexible\xa0working': '', 'Proactive wellbeing support': '', 'A continuous learning culture': '', 'Being part\xa0of\xa0an inclusive\xa0and\xa0values driven organisation,': '', 'Recruitment assessments -': '', 'The\xa0Role\xa0Responsibilities': 'Design\xa0and\xa0develop client centric\xa0and\xa0bank wide ML-powered analytical products.Provide necessary data analytics support\xa0to\xa0various internal stakeholders, including (but\xa0not\xa0limited\xa0to): sales, relationship managers, leadership, traders.Develop machine learning\xa0and\xa0advanced analytics solutions with\xa0the\xa0aim\xa0of\xa0improving yields\xa0from\xa0the\xa0business\xa0and\xa0enable improved customer experience..Work\xa0alongside existing analytics teams\xa0to\xa0enable consistent approach\xa0to\xa0data requirements.Work\xa0alongside engineering team\xa0to\xa0make\xa0the\xa0models production-ready\xa0and\xa0deployable for use\xa0of\xa0internal customers.', 'Regulatory\xa0& Business Conduct': 'Display exemplary conduct\xa0and\xa0live by\xa0the\xa0Group’s Values\xa0and\xa0Code\xa0of\xa0Conduct..Take personal responsibility for embedding\xa0the\xa0highest standards\xa0of\xa0ethics, including\xa0regulatory\xa0and\xa0business conduct, across Standard Chartered Bank. This includes understanding and ensuring compliance with, in letter and spirit,\xa0all\xa0applicable laws, regulations, guidelines\xa0and\xa0the\xa0Group Code\xa0of\xa0Conduct..Lead\xa0to\xa0achieve\xa0the\xa0outcomes set out\xa0in\xa0the\xa0Bank’s Conduct Principles: [Fair Outcomes for Clients; Effective Financial Markets; Financial Crime Compliance;\xa0The\xa0Right\xa0Environment.] *.Effectively\xa0and\xa0collaboratively identify, escalate, mitigate\xa0and\xa0resolve risk, conduct\xa0and\xa0compliance matters..', 'Key Stakeholders': 'Global Head\xa0of\xa0Digital Channels\xa0and\xa0Data Analytics, Global Heads\xa0of\xa0Credit\xa0and\xa0Macro Trading\xa0.', 'Our\xa0Ideal\xa0Candidate': 'MSc./PhD\xa0in\xa0a quantitative discipline (e.g. mathematics, physics, computer science, engineering).Ability\xa0to\xa0learn\xa0new\xa0skills (e.g.\xa0new\xa0programming\xa0languages,\xa0new\xa0business terminology).'}, {'Career Level': 'Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '11C4535', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tAllegis Global Solutions is the exclusive Contingent HR services provider for one of the world’s leading banks.\n\n\t\tAt Allegis Global Solutions we’re proud to be the leader in global talent solutions. We draw upon decades of industry expertise to develop innovative tools, products, processes and strategies focused on outcome. Moreover, we’re incredibly proud to have built a culture that empowers our people to make their mark while making deep connections that will last a lifetime. With our passion and culture for talent, we are truly transforming the way the World acquires talent.\n\n\n\t\tOur Client is one of the world's most international banks with over 1,100 branches, offices and outlets in 67 countries. They operate in some of the world's most dynamic markets and have been for over 150 years. More than 90 per cent of their income and profits are derived from Asia, Africa and the Middle East. Their brand promise, Here for good, underlines their distinctive approach.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-scientist-2200012277-.-*-10095113?jobId=jobstreet-sg-job-10095113§ionRank=1356&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
About Standard Chartered
[{'position': 'Lead Data Scientist, - (2200012277)'}, {'company_name': 'ALLEGIS GLOBAL SOLUTIONS (SINGAPORE) PTE. LTD'}, {'small_section': ['Singapore', 'Posted on 23-Oct-22']}, {'About Standard Chartered\xa0': '', 'Together we:': '', 'Do\xa0the\xa0right\xa0thing': '', 'Never settle,': '', 'Be\xa0better together,': '', 'In\xa0line with our Fair Pay Charter,': '', 'Core bank funding for retirement savings,\xa0medical\xa0and\xa0life insurance,': '', 'Time-off': '', 'Flexible\xa0working': '', 'Proactive wellbeing support': '', 'A continuous learning culture': '', 'Being part\xa0of\xa0an inclusive\xa0and\xa0values driven organisation,': '', 'Recruitment assessments -': '', 'The\xa0Role\xa0Responsibilities': '', '\ufeffHence\xa0the\xa0following\xa0are\xa0key:': 'Design\xa0and\xa0develop client centric\xa0and\xa0bank wide ML-powered analytical products.Provide necessary data analytics support\xa0to\xa0various internal stakeholders, including (but\xa0not\xa0limited\xa0to): sales, relationship managers, leadership, traders.Develop machine learning\xa0and\xa0advanced analytics solutions with\xa0the\xa0aim\xa0of\xa0improving yields\xa0from\xa0the\xa0business\xa0and\xa0enable improved customer experience..Work\xa0alongside existing analytics teams\xa0to\xa0enable consistent approach\xa0to\xa0data requirements.Work\xa0alongside engineering team\xa0to\xa0make\xa0the\xa0models production-ready\xa0and\xa0deployable for use\xa0of\xa0internal customers.', 'Regulatory\xa0& Business Conduct': 'Display exemplary conduct\xa0and\xa0live by\xa0the\xa0Group’s Values\xa0and\xa0Code\xa0of\xa0Conduct..Take personal responsibility for embedding\xa0the\xa0highest standards\xa0of\xa0ethics, including\xa0regulatory\xa0and\xa0business conduct, across Standard Chartered Bank. This includes understanding and ensuring compliance with, in letter and spirit,\xa0all\xa0applicable laws, regulations, guidelines\xa0and\xa0the\xa0Group Code\xa0of\xa0Conduct..Lead\xa0to\xa0achieve\xa0the\xa0outcomes set out\xa0in\xa0the\xa0Bank’s Conduct Principles: [Fair Outcomes for Clients; Effective Financial Markets; Financial Crime Compliance;\xa0The\xa0Right\xa0Environment.] *.Effectively\xa0and\xa0collaboratively identify, escalate, mitigate\xa0and\xa0resolve risk, conduct\xa0and\xa0compliance matters..', 'Key Stakeholders': 'Global Head\xa0of\xa0Digital Channels\xa0and\xa0Data Analytics, Global Heads\xa0of\xa0Credit\xa0and\xa0Macro Trading\xa0.', 'Our\xa0Ideal\xa0Candidate': 'MSc./PhD\xa0in\xa0a quantitative discipline (e.g. mathematics, physics, computer science, engineering).Ability\xa0to\xa0learn\xa0new\xa0skills (e.g.\xa0new\xa0programming\xa0languages,\xa0new\xa0business terminology).'}, {'Career Level': 'Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '11C4535', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tAllegis Global Solutions is the exclusive Contingent HR services provider for one of the world’s leading banks.\n\n\t\tAt Allegis Global Solutions we’re proud to be the leader in global talent solutions. We draw upon decades of industry expertise to develop innovative tools, products, processes and strategies focused on outcome. Moreover, we’re incredibly proud to have built a culture that empowers our people to make their mark while making deep connections that will last a lifetime. With our passion and culture for talent, we are truly transforming the way the World acquires talent.\n\n\n\t\tOur Client is one of the world's most international banks with over 1,100 branches, offices and outlets in 67 countries. They operate in some of the world's most dynamic markets and have been for over 150 years. More than 90 per cent of their income and profits are derived from Asia, Africa and the Middle East. Their brand promise, Here for good, underlines their distinctive approach.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-scientist-2200012277-10095091?jobId=jobstreet-sg-job-10095091§ionRank=1357&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
About Standard Chartered
[{'position': 'Senior Research Engineer, (Behavioral Analyst for Cybersecurity) - R00005986'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 28-Oct-22']}, {'Key Responsibilities:': '', 'Job Requirements:': 'PhD in Computer Science, Computer Engineering, Information or Communication Science/Engineering or any other relevant field.Applicants with Master of Science/Master in Engineering and a minimum of 6 years working experience in the domain of security and/or systems will be considered.Applicants with Bachelor’s degree in Computer Science /Computer Engineering /Information Or Communication Science/Engineering or any other relevant field and minimum 10 years of working experience in various software development projects and/or security/analytics related development projects in the industry. Less experience may also be considered if the applicant has research experience in the specific domain of IoT security.Proven research competence and publication record will be considered as an advantage.Familiarity with machine learning tools and techniques related to anomaly detection.Familiarity with identification of cybersecurity events, trends and patterns in IoT systems.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '10 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-engineer-behavioral-analyst-for-cybersecurity-r00005986-10060399?jobId=jobstreet-sg-job-10060399§ionRank=1358&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Software Engineer (Data Express), Data Platform*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'About TikTok': '', 'About the team': '', 'The product will:': 'Enable users to manage large scale data assets in the underlying data engine securely and effortlessly.Improve the overall system observability, helping our users gain more transparency in the healthiness, resource utilization of the system.', 'What you will be doing:': 'Responsible for building core functionalities in the data loading domain.Drive the design, development, and delivery of data loading features to integrate with mainstream upstream ecosystems.Lead the optimization of both streaming and batch loading engines to provide low-latency and high-throughput in respective scenarios.Lead the solution design on data loading resource management over hundreds of thousands of loading jobs.Ensure service quality through the whole software development lifecycle.', 'Qualifications:': '', 'What you should have:': "Bachelor's Degree or Post Graduate in Computer Science..At least 2 years of backend experience.Good coding skills in mainstream languages such as GoLang, Java, or Scala.Good domain knowledge of ETL and data warehousing.In-depth knowledge in distributed real-time or batch data processing systems, such as Spark, Flink, Kafka, etc.Experience in optimizing systems like Spark, Flink, Storm, Kafka..Knowledge of big data ecosystems such as Kafka, Redpanda, Kinesis, Redshift, Hive is a plus.Good communication and interpersonal skills."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/software-engineer-data-express-data-platform*-10121122?jobId=jobstreet-sg-job-10121122§ionRank=1359&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
About TikTok
[{'position': 'Research Engineer I, (Health App Developer/Data Analyst) (R00009266) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Project management in ensuring all key deliverables are met.Design, build and maintain mobile health app (iOS and/or Android platform) for the elderly and connect it with existing wearables via Bluetooth Low Energy. Data Storage feature from mobile app to wearable is required.Conduct quantitative/ big data analysis using health app/wearables data and surveys.Specific duties include but are not limited to ensuring the quality and performance of the applications / platforms, identifying and fixing application bugs, maintaining the core code, and implementing updates to the application/platform.Work with team to conduct feasibility study with end-users and refine app based on collected data/feedbacks.Work with team to write journal publications, conference papers, and reports.', 'Job Requirements': 'Bachelor’s degree in Computer Science, Software Engineering, Information Technology, Computer Engineering, Computational Social Science, Communication, or related fields, and relevant work experience.Applicants with relevant work experience in app development are preferred..Interest in research for mobile health app/wearable technology.Familiarity with iOS programming languages (such as Swift, Objective-C, C#) and/or Experience with data analysis will be a bonus.Has a keen interest in developing mobile app for the elderly community. Candidate should be comfortable with communicating with elderly.Good analytical, organizational and interpersonal skills.Good communication and writing skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-i-health-app-developer-data-analyst-r00009266-urgenthire-10137273?jobId=jobstreet-sg-job-10137273§ionRank=1361&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Intern, Data Scientist, [DPE-SPG-Engineering] #JobsThatMatter #UrgentHire'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 22-Oct-22']}, {'Position Overview': '', 'Responsibilities': 'Data Analysis.Data Engineering.Developing code using machine learning models.', 'Minimum Qualifications': 'Undergraduate in Computer Science/ Computer Engineering/ Electrical Engineering.', 'Preferred Qualifications': 'Knowledge of data science and machine learning concepts.Strong programming skills.Able to navigate a steep learning curve.', 'Learning Benefits': 'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.', 'About Autodesk': '', 'Are you an existing contractor or consultant with Autodesk? Please search for open jobs and apply internally (not on this external site). If you have any questions or require support, contact ': '', 'Autodesk Careers': '', '.': []}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/intern-data-scientist-%5Bdpe-spg-engineering%5D-jobsthatmatter-urgenthire-10093619?jobId=jobstreet-sg-job-10093619§ionRank=1363&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Project Officer (Molecular Biology) - R00010031'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities': 'Design and perform experiments using molecular and cell biology techniques.Data analysis, interpretation and record keeping.Assist in studies using mouse model.Contribute to the preparation of manuscripts for publication.Contribute to lab management, including lab safety, lab maintenance and procurement of lab supplies.', 'Job Requirements': 'BSc (Hons) in life sciences or related fields.Experience and keen interest in research.Passionate about biomedical research.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-molecular-biology-r00010031-10054936?jobId=jobstreet-sg-job-10054936§ionRank=1364&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Key Responsibilities
[{'position': 'Intern, Data Scientist, (DPE-SPG-Engineering) #JobsThatMatter #JobsThatMatter #UrgentHire'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 22-Oct-22']}, {'Position Overview': '', 'Responsibilities': 'Data Analysis.Data Engineering.Developing code using machine learning models.', 'Minimum Qualifications': 'Undergraduate in Computer Science/ Computer Engineering/ Electrical Engineering.', 'Preferred Qualifications': 'Knowledge of data science and machine learning concepts.Strong programming skills.Able to navigate a steep learning curve.', 'Learning Benefits': 'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.', 'About Autodesk': '', 'Are you an existing contractor or consultant with Autodesk? Please search for open jobs and apply internally (not on this external site). If you have any questions or require support, contact ': '', 'Autodesk Careers': '', '.': []}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/intern-data-scientist-dpe-spg-engineering-jobsthatmatter-jobsthatmatter-urgenthire-10093502?jobId=jobstreet-sg-job-10093502§ionRank=1365&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Research Programme Manager [LKC Medicine] R00010194'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Research Programme Manager [LKCMedicine]\xa0R00010194': '', 'Key Responsibilities:': 'Assisting the PI in preparing programme reports, including annual reports, mid-term reports, final reports, as well as other specially requested by MOE and/or ARC, etc..Coordinating and managing data storage..Preparation and management of IACUC project applications,.Ensuring accurate recording of animal usage and preparation of annual IACUC returns.Preparation and management of IRBs..Preparation and management of BPNs..Management of grant budget, including quarterly utilization update, grant variation, etc..Liaising with HR on personnel issues, including preparation of job advertisements job description, collecting CVs, coordinating interview and onboarding new research staffs.Procurement.Health and Safety compliance..Maintenance of zebrafish strains and mouse strains..Maintenance of laboratory inventories and databases..Maintenance of laboratory equipment..Coordinating scientific events (programme meetings, seminars, workshops, conferences).', 'Key Competencies and Requirements:': 'BSc/Masters and preferably PhD in biological science,.Laboratory research experience (3-5 years) in biomedical science.Project management experience (preferable).Financial management experience (advantage).Knowledge of biochemistry, molecular and cell biology.Knowledge of animal husbandry (advantage).'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-programme-manager-%5Blkc-medicine%5D-r00010194-10046431?jobId=jobstreet-sg-job-10046431§ionRank=1366&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Research Programme Manager [LKCMedicine] R00010194
[{'position': 'Senior Analyst, Reference Data Operations (Investment Management Firm)'}, {'company_name': 'Charterhouse Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa05,000 - SGD\xa010,000', 'Posted on 26-Oct-22']}, {'RESPONSIBILITIES:': '', 'REQUIREMENTS:': '', 'Alicia Tuang': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200601302C', 'EA No.': '16S8066', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\n\t\t\tCharterhouse is a boutique executive search firm with footprints in Asia, Australasia and the Middle East. We offer professional and bespoke contingency and retained search services across a variety of industrial sectors. Recruitment is a people-focused business – our success and growth are reliant upon our people. Our team of consultants offers a blend of international recruitment experience, coupled with a platform of local market and industry knowledge. The development and success of our team requires continued focus, and we ensure that the latest market data, trends and information are at their fingertips. Performance and industry training is also regularly provided, and naturally the rigorous development of strong networks is vital to help us deliver the highest level of service for our clients.\xa0\n\n\t\t\tAgency License Number: 16S8066\n\n\n\nHistory\n\n\n\t\tCharterhouse was formed in 2003 in Australia and it has established itself as a reputed recruitment specialist in its industry. With footprints in Asia, Australasia and the Middle East, we offer professional and bespoke contingency and retained search services across a variety of industrial sectors.\n\n\nProduct & Services\n\n\tCharterhouse offers specialist recruitment services within the following fields:\n\t\n\n\t\t\tBanking & Financial Services\n\n\t\t\tAccounting & Finance (Commerce & Industry)\n\n\t\t\tSales & Marketing\n\n\t\t\tInformation Technology\n\n\t\t\tHuman Resources\n\n\t\t\tProfessional Support\n\n\t\t\tHealthcare & Life Science\n\n\t\t\tSupply Chain & Logistics\n\n\t\t\tContracting\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-analyst-reference-data-operations-investment-management-firm-10104780?jobId=jobstreet-sg-job-10104780§ionRank=1367&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
RESPONSIBILITIES:
[{'position': 'Senior Process Development Scientist'}, {'company_name': 'Pfizer (Malaysia)'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Why Patients Need You': '', 'What You Will Achieve': '', 'POSITION SUMMARY': '', 'POSITION RESPONSIBILITIES': 'Design and conduct laboratory scale experiments and analysis with minimal supervision to support plant operation issues, proposed process modifications, new raw material qualification, evaluation of processes to minimize waste (reuse, etc), evaluation of new process technologies.Collaborate and work with multi-discipline functions such as process engineers, quality, regulatory, compliance, etc in troubleshooting all manufacturing problems and upsets..Support/lead technology transfers from developing the standard laboratory procedures (SLP) to execution of laboratory experiments, chemistry training and process validation..Review and approve process-related documents..Work with other Process Scientists and Engineers to anticipate and eliminate any process chemistry related issues..Work with Quality Operations to develop the necessary data and documentation in support of production changes or abnormal process operations to assure that our products meet all Pfizer and regulatory quality standards..Proactively monitor, identify and develop improvements to processes.Collaborate with process centric team (PCT) to implement continuous improvements using Lean Sigma tools..Maintain laboratory equipment, supplies and perform analytical analysis and troubleshooting..Flexible work schedules to accommodate to unforeseen work requirements..Demonstrate accountability for the technical deliverables and milestones accordingly to agreed timelines..Demonstrate a sense of urgency and a “can-do” attitude..Adherence to Pfizer safety rules and procedures..Participate in Pfizer Global Best Practice Teams as necessary..Participate in Global product development teams as necessary..', 'ORGANIZATIONAL RELATIONSHIPS': '', 'EDUCATION': 'Minimum degree in Chemistry or relevant discipline.', 'EXPERIENCE\xa0': 'Minimum 2-4 years experience in pharmaceutical industry.Experience in technology transfers and troubleshooting issues related to technology transfer and pharmaceutical manufacturing.Experience working as an individual and effective team player.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electronics', 'Registration No.': '196400192M', 'Industry': 'Chemical/Fertilizers/Pesticides'}, {'Company Overview': '\n\n\t\tAt Pfizer, we dedicate ourselves to humanity’s quest for longer, healthier, happier lives through innovation in pharmaceutical products. Through that, we aim to become the world’s most valued company to patients, customers, colleagues, and the communities where we work and live. We work as one - with one common commitment to making the world a healthier place to live. If you share this commitment, we invite you to explore our opportunities.\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-process-development-scientist-10143657?jobId=jobstreet-sg-job-10143657§ionRank=1368&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Why Patients Need You
[{'position': 'Research Fellow, (Artificial Intelligence) - R00008258 #URGENT'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Responsibilities:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Lead a team of junior researchers, e.g., PhD students and Research Assistant, to help with the vision and data analytics tasks.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly..Prepare and publish research papers on top-tier conferences and journals.Help prepare the proposal and progress report.', 'Job Requirements:': '', 'Research and Comprehensive Skills:': '', 'Coding Skills:': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-artificial-intelligence-r00008258-urgent-10053900?jobId=jobstreet-sg-job-10053900§ionRank=1369&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Job Responsibilities:
[{'position': 'Product Data Analyst, Data Analysis #WorkNow #Urgent*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'About Tiktok': '', 'About the Team': '', 'Responsibilities:': 'Perform analysis on product usage product performance data..Identify factors affecting product usage, performance and growth, derive meaningful insights to guide to better product and decision making for our business leaders..Work with cross functional partners (Product Managers/Operations/Engineering etc.) for product optimization and bring value to the business..Design A/B experiments to optimize and drive future product developments..Perform market activity analysis and any other analytics that would help guide product and business decision making..Construct specialized data models based on product needs and business requirements..', 'Qualifications:': '', 'Minimum Qualifications': "Bachelor's degree in Statistics, Mathematics or any other relevant fields..Past projects involving Analytics of any Internet or large scale B2C products..Excellent communication skills with ability to communicate conclusions effectively to both technical and non-technical audiences..Strong user affinity with solid understanding of product usage and performance..Available and able to participate in a 4 month structured overseas training program..", 'Preferred Qualifications': 'Proficiency in Tableau, or similar data visualization tools..Proficiency in SQL, Python..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/product-data-analyst-data-analysis-worknow-urgent*-10119820?jobId=jobstreet-sg-job-10119820§ionRank=1370&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
About Tiktok
[{'position': 'Senior /Research Fellow, - Bio-Data Science - [R00007165] #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Job Responsibilities': '', 'Job Requirements': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-fellow-bio-data-science-%5Br00007165%5D-jobsthatmatter-10054561?jobId=jobstreet-sg-job-10054561§ionRank=1371&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Engineer/Fellow (Robotics/AI/VR/AR) QCK1'}, {'company_name': 'Singapore Institute of Technology'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Key Responsibilities:': 'Development on 3D point-cloud reconstruction and object recognition..Development on motion tracking and robot motion planning..System integration and application development..Assisting in supervision of undergraduate students relating to the project..', 'Job Requirements': 'BEng, MSc or PhD in Electronics, Mechanical, Computer Engineering, or equivalent..Good knowledge in computer vision, graphics, and robotics..Familiar with software development in at least one of C/C++, Python, C#..Understanding and appreciation of 3D geometry and linear algebra..Appreciation and understanding subject-matter and application of robotics..Experience in machine learning would be an advantage..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Contract', 'Job Specializations': 'Engineering, Other Engineering', 'Registration No.': '200917667D', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Education support, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tSingapore Institute of Technology (SIT) is Singapore’s new autonomous university of applied learning. It aims to be a leader in innovative university education by integrating learning, industry and community. SIT offers applied degree programmes targeted at growth sectors of the economy. As a new university, SIT offers its own applied degree programmes with a unique pedagogy that integrates work and study. It also offers specialised degree programmes in partnership with world-class universities'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-fellow-robotics-ai-vr-ar-qck1-10058980?jobId=jobstreet-sg-job-10058980§ionRank=1373&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Engr. Intern - (TikTok Data Platform) - 2022 #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': 'Provide end to end solutions to enable business;.Data warehouse modeling design & implementation;.Data pipeline & services development for data products;.Developing and optimizing ETL processes;.Enriching & optimizing technical documents..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree in Computer Science, related engineering discipline, or equivalent practical experience;.Proficiency in SQL with related project experience;.Software development experience in one or more general-purpose programming languages, such as Java/Go/C++/C#/Python;.Good understanding of the Hadoop ecosystem, open-source big data tech stacks like Hive, MapReduce, Spark, etc;.Familiar with large-scale data warehouse architecture design, data model design, and ETL;.Good understanding of streaming pipeline development, open-source OLAP engines, or Machine Learning/Data Mining is a plus;.Strong analytical thinking and exceptional attention to detail;.'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-engr.-intern-tiktok-data-platform-2022-immediate-10108909?jobId=jobstreet-sg-job-10108909§ionRank=1374&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Lead Data Engineer (EduHub), Experimental Systems and Technology Lab, MOE #JobsThatMatter'}, {'company_name': 'Government Technology Agency of Singapore (GovTech)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'What you will be working on:': 'Build up the data engineering team and capabilities.Provide technical leadership to data engineers by coaching and mentoring.Lead the development of modern tooling for data analysts.Cloud/infrastructure/ops/automation experience to enable the team to operate self-sufficiently.Lead discussions with product managers, software engineers, data analysts and data scientists to build scalable and data-driven platforms and tools.Manage and run production services that provide analytics capabilities to our various data users across the ministry.Development of systems, architectures, and platforms that can scale large volume and variety.', 'What we are looking for:': "Bachelor's Degree in Data Engineering, Computer Science, Information Technology or a related discipline.Minimum 3 - 5 years of relevant working experience, preferably in a leadership role.Familiar with database basics, database normalisation, OLAP, star schemas, SCDs (slowly-changing dimensions) and column-oriented storage."}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'T16GB0002G', 'Company Size': '1001 - 2000 Employees', 'Industry': 'Government / Defence'}, {'Company Overview': '\n\n\t\tThe Government Technology Agency (GovTech) aims to transform the delivery of Government digital services by taking an "outside-in" view, putting citizens and businesses at the heart of everything we do. We also develop the Smart Nation infrastructure and applications, and facilitate collaboration with citizens and businesses to co-develop technologies.\n\n\t\tJoin us as we support Singapore’s vision of building a Smart Nation - a nation of possibilities empowered through info-communications technology and related engineering.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/lead-data-engineer-eduhub-experimental-systems-and-technology-lab-moe-jobsthatmatter-10052973?jobId=jobstreet-sg-job-10052973§ionRank=1376&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
What you will be working on:
[{'position': 'Research Scientist - R00005702 - #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 30-Oct-22']}, {'Job Responsibilities': 'Develop III-V compound semiconductor-based LDs fabrication and its integration with external switches.Formulate and execute DOEs for process development/process optimization.Sourcing of required equipment/tool for the fabrication of LDs and its testing.Design of Epi-layer, Layout design, fabrication process steps and recipes for the fabrication of LDs.Prepare the run-sheets for the full fabrication of LDs up to the level of packaging.Work with the Fab manager/module leaders for the smooth flow of LD fabrication.Contribute to research reports for project deliverables, new project proposal drafting and etc..Perform other duties related to optical devices and its integration or assigned by higher management.Prepare process documentations with the standard of ISO 9001:2015 or ISO 9001:2018.', 'Job Requirements': 'PhD (with 2 years of relevant experience) in either Electrical & Electronics Engineering/ Material Science/Physics/Chemistry or Other related field.Proven track record of innovation in the field of semiconductor device Physics/Engineering, Design of novel device structures, wafer fabrication and its characterization.Strong technical knowledge with hands-on experience in III-V compound semiconducting materials and its optical devices (e.g. Junction diodes, Transistors, Switches, and etc).Skills to initiate and design mask layout as necessary for new device geometries.Knowledge in developing new processes to improve the overall performance of LDs recipes and Qualify processed wafers for engineering and new product development programs.Capability to develop improved processes for the fabrication of LDs and switches.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-r00005702-urgenthire-10070483?jobId=jobstreet-sg-job-10070483§ionRank=1377&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate, - (Artificial Intelligence) (R00010348)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Description:': 'Research on the cutting-edge AI algorithms for processing and modeling high-dimensional data (e.g., tensor or multi-modality data).Work with other researchers and PhDs to develop AI applications related to image processing, computational imaging as well as computer vision.Discussion and study recent papers and baseline codes in this field. Report to advisor and the team weekly.Prepare and publish research papers on top-tier conferences and journals.', 'Job Requirements:': 'Research and Comprehensive Skills:.Coding Skills:.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-artificial-intelligence-r00010348-10053917?jobId=jobstreet-sg-job-10053917§ionRank=1378&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Senior Data Analyst (1 year contract, Central)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Central', 'SGD\xa06,000 - SGD\xa08,000', 'Posted on 14-Oct-22']}, {'Job Duties:': '', 'Our Requirements': []}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Temporary', 'Job Specializations': 'Sales/Marketing, Sales - Financial Services', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-data-analyst-1-year-contract-central-10067433?jobId=jobstreet-sg-job-10067433§ionRank=1380&token=0~3f861f8a-2477-4da9-9970-05fc8151a1a6&fr=SRP%20Job%20Listing'}]
Job Duties:
[{'position': 'Research Engineer I (Health App Developer/Data Analyst) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Project management in ensuring all key deliverables are met.Design, build and maintain mobile health app (iOS and/or Android platform) for the elderly and connect it with existing wearables via Bluetooth Low Energy. Data Storage feature from mobile app to wearable is required.Conduct quantitative/ big data analysis using health app/wearables data and surveys.Specific duties include but are not limited to ensuring the quality and performance of the applications / platforms, identifying and fixing application bugs, maintaining the core code, and implementing updates to the application/platform.Work with team to conduct feasibility study with end-users and refine app based on collected data/feedbacks.Work with team to write journal publications, conference papers, and reports.', 'Job Requirements': 'Bachelor’s degree in Computer Science, Software Engineering, Information Technology, Computer Engineering, Computational Social Science, Communication, or related fields, and relevant work experience.Applicants with relevant work experience in app development are preferred..Interest in research for mobile health app/wearable technology.Familiarity with iOS programming languages (such as Swift, Objective-C, C#) and/or Experience with data analysis will be a bonus.Has a keen interest in developing mobile app for the elderly community. Candidate should be comfortable with communicating with elderly.Good analytical, organizational and interpersonal skills.Good communication and writing skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-i-health-app-developer-data-analyst-seekbetter-10140751?jobId=jobstreet-sg-job-10140751§ionRank=1382&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Analyst Internship, (6months) - Intellectual Property Rights (IPR) Protection Team #Urgent'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': '', 'Job Description': '', 'Job Responsibilities': 'Conduct research and collect data inputs for algorithms to identify risky products on the platform..Assist with designing and refining algorithms to quantify risks and predictive analysis..Investigate anomalies and propose solutions..Assist with the design and implementation of the Risk Dashboard..Assist with the rollout and presentation of the dashboard to stakeholders.', 'Qualifications': 'English working proficiency.Pursuing a Bachelor or Masters in Law/ Business/ e-Commerce/ Computer Science/ Software Engineering/ Economics/ Statistics/ Mathematics/ Operations/ Research/ Related Fields..Data analytical skillset - SQL, Excel.Experience with data visualization software is a plus..Attention to detail, good at problem-solving..Passionate about technology, good at problem-solving..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-internship-6months-intellectual-property-rights-ipr-protection-team-urgent-10119994?jobId=jobstreet-sg-job-10119994§ionRank=1383&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': '2023 START Technology Intern Program - Developer - NYC #UrgentHire'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Student Technology, Agile & Readiness Training (S.T.A.R.T) Program': '', 'Program Highlights:': '', 'Agile project experience:\xa0': '', 'Learning & Development': '', 'Mentorship': '', 'Career opportunities': '', "The\xa0possibilities\xa0are\xa0limitless here -\xa0you'll gain\xa0the\xa0skills required\xa0to\xa0advance\xa0your\xa0career\xa0and\xa0have\xa0a significant impact on our business\xa0": '', 'Program Locations:': 'US: Pittsburgh, PA *New\xa0York, NY *Jersey City, NJ.', 'Primary Responsibilities:': 'Software development focusing on design, coding,\xa0and\xa0testing.Analyze requirements\xa0and\xa0create specifications\xa0and\xa0design documents.Research on different technologies & methodologies\xa0to\xa0recommend\xa0the\xa0optimal solutions\xa0to\xa0the\xa0problem.Building robust, reliable,\xa0and\xa0scalable solutions\xa0in\xa0a cross-functional team\xa0environment.', 'Program Eligibility/Qualifications:': 'Enrollment\xa0in\xa0a 4-year undergraduate (U.S.)\xa0degree\xa0program with a\xa0strong\xa0focus on technology-related majors. i.e., Computer Science, Computer Engineering, or a similar major with extensive computer-based\xa0or\xa0technical content).Rising junior or senior (U.S.) graduating in Dec 2023 or May 2024.Minimum cumulative GPA\xa0of\xa03.0\xa0or\xa0above.Does\xa0not\xa0require\xa0sponsorship\xa0for employment\xa0visa\xa0status\xa0(now\xa0or\xa0in\xa0the\xa0future)\xa0in\xa0the\xa0region\xa0where\xa0applying.', 'Preferred skills:': 'A\xa0great\xa0attitude\xa0and\xa0desire for learning.Excellent problem solving, written\xa0and\xa0oral communication skills.Disciplined self-starter, capable\xa0of\xa0working\xa0independently\xa0or\xa0in\xa0close collaboration.Smart\xa0and\xa0driven individual who\xa0is\xa0passionate about learning\xa0new\xa0technologies.'}, {'Career Level': 'Entry Level', 'Qualification': "Primary/Secondary School/O Level, Higher Secondary/Pre-U/'A' Level, Diploma, Advanced/Higher/Graduate Diploma", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/2023-start-technology-intern-program-developer-nyc-urgenthire-10145343?jobId=jobstreet-sg-job-10145343§ionRank=1384&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Student Technology, Agile & Readiness Training (S.T.A.R.T) Program
[{'position': 'Research Engineer (Machine Learning/Computer Vision) (R00005729)-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Conduct research on deep learning and visual scene understanding.Develop novel algorithms for visual recognition and scene understanding.Develop computer vision systems.Write technical reports and research papers.', 'Job Requirements:': 'Master’s degree in Computer Science, Computer Engineering or related subjects.Research experience in visual recognition, scene understanding and deep learning.Excellent computer programing skills for machine learning and computer vision systems.Familiar with deep learning frameworks such as PyTorch.Strong responsibility for research/work.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-computer-vision-r00005729-jobsthatmatter-10136807?jobId=jobstreet-sg-job-10136807§ionRank=1386&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Scientist - Computer Vision'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': '', "What You'll Do:": 'Conduct cutting-edge research and development in computer vision, machine learning and other related fields;.Transfer advanced technologies to ByteDance products;.Explore new products with artificial intelligence technology at its core..', 'Qualifications': 'Min. 5+ years of experience in research and practical experience in one or more areas of computer vision, including but not limited to (preferring candidates with publications in top-tier venues such as CVPR, ICCV, ECCV):.Generative models, GAN (generative adversarial networks).Image and video synthesis/manipulation.Unsupervised and weakly-supervised image/video representation learning.Object detection, recognition, segmentation, and tracking.Action recognition, event detection, video summarization.Human modeling (2D and 3D pose estimation, hand pose estimation, human shape estimation).Facial analysis.Image and video retrieval.Image and video enhancement.Image and video restoration.Highly competent in algorithms and programming; Strong coding skills in C/C++ and Python..Work and collaborate well with team members..Ability to work independently..Publish impactful research work on top conferences and journals;.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-computer-vision-10131900?jobId=jobstreet-sg-job-10131900§ionRank=1387&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': '*URGENT* Temp Executive [Data Analytics / Excel / Hybrid] -J39099'}, {'company_name': 'ScienTec Personnel'}, {'small_section': ['West', 'SGD\xa02,400 - SGD\xa02,600', 'Posted on 20-Oct-22']}, {'Job Description': '', 'Location': '', 'Working Hours: ': '', 'Salary: ': '', 'Work Type: ': '', 'JOB SCOPES:': 'To re-establish contact with the Building Owner (BO) or Facility Management (FM) to update the contact/ building data and follow-up with the BO/ FM to encourage and convince them to come in for recertification. (e.g. close the verification).\xa0\xa0.', 'JOB REQUIREMENTS:': "Singaporean (s) only..Must possess at least GCE 'A' Level / Diploma in any related field..", '(at)': [], 'Subject:\xa0Executive': '', 'Apply Now.': ''}, {'Career Level': 'Entry Level', 'Qualification': "Higher Secondary/Pre-U/'A' Level, Diploma, Advanced/Higher/Graduate Diploma", 'Job Type': 'Contract', 'Job Specializations': 'Admin/Human Resources, Clerical/Administrative Support', 'Registration No.': '200409964K', 'EA No.': '11C5781', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "ScienTec Personnel focusses on professional/specialist recruitment and general staffing across all industries in key functions such as Administration, Operations, Sales, Marketing, Finance, HR, Technical, and Engineering. A division of ScienTec Consulting Pte Ltd, the group has since its inception in 2001, redefined the standards of HR services by transforming organisations across Asia Pacific with its 4 principal services: Staffing, Executive Search, Outsourcing and Consulting. The group's 20 industry awards and 600+ customer testimonials are the result of its high service standards centered on its core value of 'People First, Always'.It has 2 other business divisions – ScienTec Search which specialises in senior leadership and specialist search for key industries such as Biotechnology, Pharma, Medical Devices, Consumer Healthcare, FMCG, Technology and Engineering; and ScienTec Consulting, the group’s HR consulting division, which provides services such as Recruitment Process Outsourcing, Social Media Recruitment, Payroll Services, Work Pass Applications, Compliance Framework and Legislation Practices.ScienTec has won more than 20 industry awards such as Recruitment Agency of the year, Best Client Service, Best Candidate Experience, Etc. In addition, we are the overall winner for Asia Recruitment Grand Winner – Recruitment Agency.ScienTec is part of Will Group (https://willgroup.co.jp/en/profile/group.html) and candidates’ applications may be used by our affiliated companies for the sole purpose of recruitment.*We will contact you if your skills and experience are suitable for the role, or if there is a similar opportunity that is available presently or in the future.*By submitting any application or resume to us, you will be deemed to have agreed & consented to us collecting, using, retaining & disclosing your personal information to prospective employers for their consideration. Please refer to ScienTec’s Privacy Policy https://www.scientecconsulting.com/privacy-policy for full details. If you wish to withdraw your consent, please write to us at [email\xa0protected] (Note: This mailbox is solely for the purpose of personal data protection related matters.)We request that you do not provide sensitive personal data such as government identification numbers (E.g. NRIC number, passport number) or any other sensitive personal data that is not required during job application stage. Please note that such data may be deleted accordingly.ScienTec Personnel (a division of ScienTec Consulting Pte Ltd)1 Maritime Square, #10-33A/B, Harboufront Centre, Singapore 099253EA Licence No.: 11C5781Business Reg. No. 200409964K | GST Reg. No. 200409964KTel: +65 6225 3272www.scientecpersonnel.com | www.facebook.com/scientecpersonnel | www.linkedin.com/company/scientec-personnel"}, {'url': 'http://www.jobstreet.com.sg/en/job/*urgent*-temp-executive-%5Bdata-analytics-excel-hybrid%5D-j39099-10086712?jobId=jobstreet-sg-job-10086712§ionRank=1388&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': '*#TTS Data & Analytics Manager - Vice President#..'}, {'company_name': 'Citibank N.A.'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Understand the drivers of business results and how data/analytics can accelerate outcomes; drive theory to execution with business partners to directly impact results.Identify data driven targeting and program improvement opportunities to acquire new customers, increase portfolio sales, reduce attrition and optimize profitability.Consulting with internal customers (e.g., Product, Sales, Service) to develop analyses that lead to actionable insights that accelerate profitable growth.Lead the design and development of analytical projects to understand key business behaviors that drive customer acquisition, retention, and engagement - Use of AI / ML on the identified business behaviors to drive outcomes.Unlock new value through data sharing / data exchanges with external clients.Continually, succinctly, and clearly communicate progress and results against the data/analytics agenda within the team and with peers.Investigate and leverage - Continually “bring the outside in” to learn and deploy best practices from other organizations or industry forums.', 'Knowledge/Experience/Technical skills:': "Bachelor's degree in Statistics, Finance, Math, Operations Research or other related fields; Master's is a plus.Previous experience working with large volumes of data and strong understanding of data analytics - traditional business analytics and modern data science techniques.Can understand business needs and translate into analytical execution, including the supervision and review of the analysis, with a critical eye.Can innovate new use cases and evaluate business impact.Prior understanding of Corporate banking products and services preferred but not necessary.", 'Personal Skills:': 'Self-motivated & accountable – Have a ‘Can do’ and ‘Get it done’ attitude – do whatever necessary and take full ownership of delivery.Project Management Skills, ability to lead cross functional teams towards a common vision.Superior communication skills – able to clearly articulate complex strategies/techniques and ideas, in both oral and written form, to senior management, with associated poise.Execution oriented – doesn’t remain in the theoretical; is able to make choices/decisions in the name of delivering rapid business impact.Collaborative – Possess strong collaboration and influencing skills to effectively lead cross-functional teams to drive deliverables, projects and engagements to completion.Bias for change – actively seeks out ways to improve processes, people, etc..Influencing skills – able to influence outcomes without necessarily direct authority; experienced in navigating large complex organizations to achieve results.', 'Leadership/ People Skills:': 'Can work across boundaries, both organizational and geographic.‘Can do’ attitude.'}, {'Career Level': 'Senior Manager', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Actuarial/Statistics', 'Registration No.': '200309485K', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\n\t\tCiti is more than a global financial services company. It’s an engine for progress. Join us, and you’ll have the chance to get involved in progress in all its shapes and forms, right across the world. From the micro to the macro, from Australia to Zambia, the work we do has real positive impact. Wherever you are and whatever you do, progress starts here.\n\n\nMission: Citi's mission is to serve as a trusted partner to our clients by responsibly providing financial services that enable growth and economic progress. Our core activities are safeguarding assets, lending money, making payments and accessing the capital markets on behalf of our clients. We are Citi, the global bank – an institution connecting millions of people across hundreds of countries and cities.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/*-tts-data-analytics-manager-vice-president-..-10132594?jobId=jobstreet-sg-job-10132594§ionRank=1389&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Associate (Computer Science), - R00010927'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:\xa0': 'Research in name disambiguation problem.Implement novel techniques for data integration, data cleaning, and name disambiguation using Python.Assists with the editing and preparation of manuscripts, reports and presentations.Engage in discussions with PI and collaborators.Perform other tasks as required by the Principal Investigators..', 'Job Requirements:\xa0': 'Masters in Computer Science-related areas with a focus in Data analytics;.Solid programming and application development skills with experience in Python..Ability to read and understand methodologies in research papers;.Fluent in English and good team-player..'}, {'Career Level': 'Entry Level', 'Qualification': "Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-r00010927-10140020?jobId=jobstreet-sg-job-10140020§ionRank=1390&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Tech Lead (Data Mining), Global E-Commerce*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Tech Lead (Data Mining), Global E-Commerce': '', 'Responsibilities': 'Aggregate public domain data on the Internet to meet various business data needs.Responsible for the architecture and development of distributed data/content aggregation system, perform full stack optimisation for data crawling, scheduling, analysis and storage..Overcome various data crawling technical challenges, continuously improve the quality and performance of very large scale data aggregation systems..Lead data mining team - drive continuous technical innovations and develop high performing R&D team to meet key business objectives.', 'Qualifications': 'B. Sc or higher degree in Computer Science or related fields from accredited and reputable institutions..6+ years data mining related experience, including data aggregation and crawling.Familiar with one of Python/Java/Go/C++ with demonstrable coding ability;.Familiar with mainstream data crawling technologies and frameworks, such as Selenium/Puppeteer/Scrapy/PhantomJS, etc.;.Familiarity and practical experience in tackling common anti-crawling methodologies & strategies.Familiarity and demonstrable expertise in reverse engineering, web security and data obfuscation, unpacking, analysis and mining is highly advantageous..', 'IDEAL CANDIDATE': 'Agile, quick self learner, highly self-motivated with strong sense of product ownership and creative problem solver..Deeply passionate about software coding/development and building great mobile/web applications..Good collaborator and team player, comfortable working in a fast moving, culturally diverse and globally distributed team environment..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/tech-lead-data-mining-global-e-commerce*-10118270?jobId=jobstreet-sg-job-10118270§ionRank=1391&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Tech Lead (Data Mining), Global E-Commerce
[{'position': 'Research Fellow (Machine Learning and Human Machine Interaction) (R00008643)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Job Responsibilities': 'Conduct research and development on advanced machine vision and learning algorithms to empower robots and humans to work effectively and efficiently under collaborative environments for human-machine interaction tasks.Collaborate with other researchers and industry partners.Publish research in top journals and conferences.', 'Job Requirements': 'PhD in Electrical Engineering, Robotics, Computer Science Engineering, or other related fields.Experience in C/C++/Python or other equivalent programming skills.Familiar with popular machine learning platforms and APIs.Strong interest and experience in computer vision, machine learning, human-machine interaction.Relevant experience and/or publications on im/video/pattern analysis and machine learning preferred.Good communications and interpersonal skills.Able to work independently and as a team player in a fast-paced and dynamic environment.Strong research and publication track records.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-and-human-machine-interaction-r00008643-10141060?jobId=jobstreet-sg-job-10141060§ionRank=1392&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'AIOps Algorithm Engineer - Applications Performance Management #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted 20 hours ago']}, {'Responsibilities': '', 'Responsibilities:': 'Build intelligent AIOps platforms by applying Machine Learning technology.Explore, understand, and apply most recent AIOps related algorithms, including time series anomaly detection, log analysis, data mining, root cause analysis, alarm correlation and aggregation etc..Build data platform on observational data to manage ML models and ML training data sets.Build auto remediation platform to automate fault detection and self-remediation, reduce MTTR and human effort..', 'Qualifications': 'Solid foundation in computer science, with strong competencies in algorithms, data structures, design patterns, and software design principles..Proficiency in at least one server-side programming language such as Golang, Java, Python.Experience with distributed version control (e.g. Gitlab or GitHub)..Deep knowledge in: Application of Machine Learning/Artificial Intelligence in IT operations..Software engineering principles (preferably Agile/Scrum) and their application to the creation of self-healing infrastructure and applications..Cloud infrastructure operations and automation technologies..', 'Preferred Qualifications:': 'Use of Data Science modelling tools e.g., R, Python and Data Science notebooks (e.g., Jupyter)..Experience with open source Machine Learning Platforms and Toolkits.Experience in APM or AIOps area.Micro-service experience with golang/python.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/aiops-algorithm-engineer-applications-performance-management-immediate-10146652?jobId=jobstreet-sg-job-10146652§ionRank=1393&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior/ Research Engineer'}, {'company_name': 'Singapore-MIT Alliance for Research and Technology Centre'}, {'small_section': ['Clementi', 'Posted on 21-Oct-22']}, {'Project Overview': '', 'Job Responsibilities': '', 'Job Requirements': "At least Bachelor's degree in Physics, Chemistry, Chemical Engineering or relevant areas..Highly motivated candidates with experience in polymer synthesis, characterization, Raman spectroscopy and imaging, and working with MATLAB and Python programming languages are preferred..Strong hands-on ability..Ensure the maintenance and/or adherence to good laboratory practices and all safety regulations..Comfortable working with instrumentations that are custom built, portable, and may not have user manual or user-friendly interfaces..Experience with polymer nanoparticle formulations will be highly beneficial..Ability to collaborate, work in teams and interact with industrial collaborators..Good command of written and spoken English.\xa0."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200711996H', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Science & Technology', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'SMART is a major research enterprise established by the Massachusetts Institute of Technology (MIT) in partnership with the National Research Foundation of Singapore (NRF). SMART serves as an intellectual hub for international research collaborations, not only between MIT and Singapore, but also involving researchers from the region and beyond. At SMART, we identify and carry out research on critical problems of societal importance. SMART is a magnet for attracting and anchoring global research talent, while simultaneously instilling and promoting a culture of translational research and entrepreneurship in Singapore. Five interdisciplinary research groups (IRGs) are currently in operation: Antimicrobial Resistance (AMR), Critical Analytics for Manufacturing Personalized-Medicine (CAMP), Disruptive & Sustainable Technologies for Agricultural Precision (DiSTAP), Future Urban Mobility (FM), and Low Energy Electronics Systems (LEES). In addition, SMART also operates an Innovation Centre.'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-engineer-9999682?jobId=jobstreet-sg-job-9999682§ionRank=1394&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Project Overview
[{'position': 'Data Analyst, Growth #JobsThatMatter #WorkNow #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': '', 'You will:': 'Build and governing matrices for fast changing business in an analytical data-driven approach to identify business issues and opportunities;.Prototype analysis pipelines to provide insights, and provide quick responses to business inquiries and events;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendation on appropriate solutions..', 'Qualifications': "Bachelor's degree in Statistics, Applied Mathematics, Computer Science or a related field;.Skilled in data manipulation with SQL, python or other programming-languages/tools;.Experienced in data analyzing, visualization and reporting;.Fast business understanding and collaborative in teamwork.."}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-growth-jobsthatmatter-worknow-urgenthire-10109010?jobId=jobstreet-sg-job-10109010§ionRank=1395&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Senior Research Scientist, (Electrical Engineering) - (R00008423) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Lead the technical development of advanced data-driven methods for smart meter data analytics for smart home applications..Design artificial intelligence (AI) based models for residential load demand forecasting, solar PV power forecasting, and prosumer behaviour modelling and knowledge extraction..Perform testing and demonstration of the algorithms and deliverables..Communicate with the industry collaborators for progress reporting and potential commercialization of deliverables..Assist the PI for project management, including time schedule and milestone management..Coordinate with other research teams in this project for internal and external communication and collaboration..', 'Job Requirements:': 'PhD degree in Electrical Engineering..At least 5 years research and/or industry working experience..Expert knowledge in power system data analytics, especially on forecasting and knowledge extraction..Comprehensive experience in industry-funded research projects..Familiar with commercialization of research deliverables..Excellent project management skills..Excellent publication record in top-tier journals..Excellent verbal and written communication skills in English..Strong analytical and conceptual abilities..Able to work independently and in a team to realize proposed research work..'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-electrical-engineering-r00008423-seekbetter-10141966?jobId=jobstreet-sg-job-10141966§ionRank=1397&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow - (Air Traffic Management/Machine Learning) (R00005121)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Key Responsibilities:': 'Undertake research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data mining, doing analytics, and building high quality strategic planning system for future for Air Traffic Management systems.Provide expertise on algorithmic concepts for the broader applied analytics of ATM and inspire the adoption of advanced analytics and data science across the entire breadth of ATM system..', 'Job Requirements:': 'PhD Degree in Computer Science/Aerospace Eng/Operation Research.Good programming skill (Python / MATLAB / C++).Good English writing and communication skills.Independent and team player.Good publication records.Demonstrated relevant experience in Artificial Intelligence / Machine Learning.Publication track record in peer-reviewed and reputed journals/conferences related to Artificial Intelligence / Machine Learning / AI&ML applied to ATM.Hands-on experience in using machine learning libraries such as Scikit-learn, etc..Hands-on experience in using deep learning library (either TensorFlow or PyTorch).', 'Experiences in at least two of the following areas is a strong plus:': 'Tempo-spatial data mining and analysis,.Time series analysis and prediction,.Generative models.Reinforcement Learning and/or Inverse Reinforcement Learning.Probabilistic Modeling / Bayesian Machine Learning.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-air-traffic-management-machine-learning-r00005121-10073086?jobId=jobstreet-sg-job-10073086§ionRank=1398&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Computer Vision Research Scientist - Intelligent Creation - #JobsThatMatter #WorkNow'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Conduct fundamental research on computer vision, deep learning and AI problems, including but not limited to the deep learning for 3D object/human modeling, graphics, object and human interaction recognition, computer vision, self-supervised learning, multi-modality learning;\xa0.Research on long-term research goals;.Publish impactful research work on top conferences and journals;.', 'Qualifications': 'Work experience in a university, industry, or government lab(s), in a role with primary emphasis on AI research;.Hold a Ph.D. degree in computer science, electrical engineering, statistics, applied mathematics, data science or other related disciplines;.First-author publications at peer-reviewed AI conferences (e.g. CVPR, ECCV, ICCV, NeurIPS, ICML, SIGGRAPH) and journals (e.g., TPAMI, JMLR).Knowledge in one of the differentiable programming frameworks, e.g., PyTorch, TensorFlow, JAX;.Track record of high impact research;.(Preferred) Received best paper or equivalent awards in the aforementioned conferences;.(Preferred) Winner of international academic competitions..'}, {'Career Level': 'Entry Level', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/computer-vision-research-scientist-intelligent-creation-jobsthatmatter-worknow-10119081?jobId=jobstreet-sg-job-10119081§ionRank=1399&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Development Engineer/Scientist (Electrification), ARTC'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Responsibilities': '', 'Job Requirements': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/development-engineer-scientist-electrification-artc-10053797?jobId=jobstreet-sg-job-10053797§ionRank=1400&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Associate [Econometrics, Machine Learning Algorithms] - [R00005716] #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Data Analysis.Programming, Model Derivation.Literature Review.', 'Job Requirements': 'Minimum Master degree in Economics.Familiar with Python, R Language, Stata.Experienced in Statistics and Econometrics.Strong programming skills.Stay abreast of latest literatures on machine learning, Econometrics and Statistics.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-%5Beconometrics-machine-learning-algorithms%5D-%5Br00005716%5D-seekbetter-10136527?jobId=jobstreet-sg-job-10136527§ionRank=1401&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Regional Program & Data Analyst in a leading Shipping Solution MNC (ID: 560052)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd'}, {'small_section': ['Jurong East', 'SGD\xa03,500 - SGD\xa04,500', 'Posted on 18-Oct-22']}, {'Job Summary': '', 'Duties and Responsibilities:': 'Management of customer KPI reporting, operational reporting, and issue resolution..Manage day to day reporting needs, look at trend analysis for operational concerns as well as provide solutions directly to customers and operational teams..Support account manager with process documentation, presentation materials for Monthly Performance Review (MBR)/ Quarterly Business Review (QBR), and other customer program needs..Onboarding of new customer business using defined implementation methods and project skills..', 'Professional Qualities and Experience:': 'Polytechnic diploma, majoring in supply chain or logistics..Familiar with Microsoft Office suite of applications, with emphasis on intermediate to advance Microsoft Excel skills..Strong analytical skills and curious mindset for continuous improvements, not accepting status quo without validations..Some experience in freight forwarding and/or logistics industry would be a plus..Sufficient skill for researching and manipulation of data analysis..Organized and ability to articulate thoughts..Strong interpersonal\xa0and communication skills..Ability to perform under pressure and work with deadlines..Pleasant personality and able to work with people across geographical and cultural boundaries..'}, {'Career Level': 'Junior Executive', 'Qualification': "Higher Secondary/Pre-U/'A' Level, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200701282M', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOL, formerly known as Intelligence, is one of the largest and fastest growing HR service providers in the Asia Pacific regions. With presence in 10 key APAC markets, PERSOL leverages on its strong database of Japanese and Japanese-speaking candidates to provide tailored workforce solutions primarily to Japanese companies in this region. The solutions include permanent and contract staffing, recruitment process outsourcing and payroll outsourcing.\n\n\t\tThe PERSOL brand in Asia Pacific operates under the PERSOLKELLY company, a joint venture between PERSOL Holdings and Kelly Services, forming one of the largest recruitment companies in APAC with its headquarters in Singapore.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolsg.com for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/regional-program-data-analyst-in-a-leading-shipping-solution-mnc-id%3A-560052-10079528?jobId=jobstreet-sg-job-10079528§ionRank=1402&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Job Summary
[{'position': 'Senior Operations Data Analyst'}, {'company_name': 'Kerry Consulting Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa012,000 - SGD\xa012,500', 'Posted on 20-Oct-22']}, {'Description': '', 'Responsibilities': '', 'Skills and experiences required': 'Min. Degree in Business/Finance or related disciplines.At least 5 years of relevant working experience in financial services BA or in asset management with major asset classes and associated analytics.Experience as Data BA in Reference Data/Operational Data system implementation.Experienced in using business analyst methods such as flow charting, requirements capturing, stakeholder analysis, use cases, brainstorming, solution prototyping, and traceability..Experience in reference data and pricing.Familiar with change management and data management frameworks.Prior experience using Aladdin/ Fundipedia/ Goldensource is desirable.', 'To Apply': '', '[email\xa0protected]': []}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200307397W', 'EA No.': '16S8060', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tHeadquartered in Singapore since 2003, Kerry Consulting is Singapore\'s leading Search & Selection firm. Our consulting team is the most experienced, and amongst the largest, in the ASEAN region.\n\n\t\tWe provide services to many of the world\'s leading companies and financial institutions. We are committed to creating positive long term outcomes for both our clients and our candidates. Our focus is on "Returning the Human to Resourcing".\n\n\n\tTo find out more, please visit our website at www.kerryconsulting.com\n\n\tLicence No: 16S8060\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-operations-data-analyst-10083612?jobId=jobstreet-sg-job-10083612§ionRank=1403&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Scientist (Catalysis and Reaction Engineering), ISCE2'}, {'company_name': 'Agency for Science, Technology and Research (A*STAR)'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {}, {'Career Level': 'Entry Level', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0002C', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Government / Defence', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "\n\tThe Agency for Science, Technology and Research (A*STAR) is Singapore's lead public sector agency that spearheads economic oriented research to advance scientific discovery and develop innovative technology. Through open innovation, we collaborate with our partners in both the public and private sectors to benefit society.\n\n\tAs a Science and Technology Organisation, A*STAR bridges the gap between academia and industry. Our research creates economic growth and jobs for Singapore, and enhances lives by contributing to societal benefits such as improving outcomes in healthcare, urban living, and sustainability.\n\n\tWe play a key role in nurturing and developing a diversity of talent and leaders in our Agency and 19 biomedical sciences and physical sciences research institutes, the wider research community and industry."}, {'url': 'http://www.jobstreet.com.sg/en/job/scientist-catalysis-and-reaction-engineering-isce2-10052407?jobId=jobstreet-sg-job-10052407§ionRank=1404&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
[{'position': 'Data Analyst'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'About TikTok': '', 'Why Join Us': '', 'About the Team': '', 'About the Role': '', "What You'll Need": 'Proficiency with databases and SQL expertise..Experience with large-scale data warehousing architecture and data modeling..Expertise with data processing (ETL) technologies is required..Experience in one programming language such as Java, Scala, or Python..Strong analytical skills..Aptitude to independently learn new technologies..If need be, act as a leader to drive big efforts with other data analysts..', "What You'll Do": 'Drive clarity and solve ambiguous, challenging business problems using data-driven approaches. Propose and own data analysis (including modeling, coding, analytics, and experimentation) to drive business insight and facilitate decisions..Dig into complex data sets and make sense out of them..Translate functional and technical requirements into architecture and design..Participate in code and design reviews to maintain high development standards..Measure business performance, develop core metrics and create dashboards to track and understand them..Identify data, metrics and analyses needs for business partners..- Initiate, develop and maintain data pipelines and data models that power dashboards and data products with outstanding craftsmanship..Perform deep analyses and build models to understand customer behavior, and extract key insights that impact product decisions..Work across multiple subject matter specialists to drive new data initiatives, automation of reports, establish best practices and mentor junior members in the team..Lead analytics projects to completion..Work with the broader Data Science team to discover ways to scale our insights through better systems and automation..', 'Qualifications': '', 'Basic': 'PhD, MS or Bachelors degree in Statistics, Economics, Computer Science or another.quantitative field..Knowledge of Hadoop related technologies such as HDFS..Experience building high-quality end-to-end data solutions in an agile environment from requirements to production..Be able to proactively handle prioritization of work and deliver work of great quality and to influence the broader team..Experience with Looker, Tableau, Power Bl, or other business intelligence platforms..', 'Preferred': 'Experience in technically mentoring junior.team members..Previous experience working with social media data (unstructured and structured) is a plus..Strong communication skills, for example, demonstrated through documentation and presentations. Able to present findings to senior management to inform business decisions..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-10120940?jobId=jobstreet-sg-job-10120940§ionRank=1405&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
About TikTok
[{'position': 'Data Science Analyst - TikTok #WorkNow'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Improve the recommendation strategy of short video service..Understand user behavior in depth and optimize user experience such as creation and browsing.Optimize the index system of recommendation strategy and do attribution analysis on abnormal indicators..Analyze business data in different markets, formulate targeted recommendation strategies, and evaluate strategic benefits..Study special topics such as ecological growth of short video content..', 'Qualifications': 'Have user empathy, can quickly understand user needs, and can be associated with effective data indicators..Excellent ability to analyze and solve problems, full of passion for solving challenging problems..Excellent learning ability and logical thinking ability; Have good expression and communication skills..Understanding the principle of machine learning and recommendation algorithms is preferred..Experience in data analysis of Internet companies is preferred..', 'Preferred Qualification': 'Minimum 3 years relevant work experience from a large-scale internet business.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-science-analyst-tiktok-worknow-10120004?jobId=jobstreet-sg-job-10120004§ionRank=1406&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Science Analyst - TikTok #WorkNow*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Improve the recommendation strategy of short video service..Understand user behavior in depth and optimize user experience such as creation and browsing.Optimize the index system of recommendation strategy and do attribution analysis on abnormal indicators..Analyze business data in different markets, formulate targeted recommendation strategies, and evaluate strategic benefits..Study special topics such as ecological growth of short video content..', 'Qualifications': 'Have user empathy, can quickly understand user needs, and can be associated with effective data indicators..Excellent ability to analyze and solve problems, full of passion for solving challenging problems..Excellent learning ability and logical thinking ability; Have good expression and communication skills..Understanding the principle of machine learning and recommendation algorithms is preferred..Experience in data analysis of Internet companies is preferred..', 'Preferred Qualification': 'Minimum 3 years relevant work experience from a large-scale internet business.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-science-analyst-tiktok-worknow*-10119996?jobId=jobstreet-sg-job-10119996§ionRank=1407&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Backend Engr. Intern (TikTok Data Platform), - 2022 #WorkNow*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Collaborate with global engineers to build the TikTok eCommerce & Livestreaming Platform;.Design, build and maintain services with high performance and scalability;.Deliver technical solution design based on business requirements from product managers;.Integrate with multiple internal and external services to deliver features end-to-end..', 'Qualifications': 'Undergraduate or Postgraduate currently pursuing a degree/master in Computer Science, Computer Engineering, Information Systems or a related technical discipline;.Software development experience in one or more general purpose programming languages;.Excellent proficiency in backend server development and expertise in relational database;.Strong analytical thinking and exceptional attention to details..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/backend-engr.-intern-tiktok-data-platform-2022-worknow*-10119729?jobId=jobstreet-sg-job-10119729§ionRank=1408&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Fellow (Mathematic Modeling of Macromolecular Assembly)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Description:': 'Perform high-end cell biological imaging, and quantitative imaging analysis to understand how biomolecular assembly in vivo and in vitro, including but not limited to single-molecule imaging and super-resolution imaging.Carry out different quantitative protein biochemistry works regarding protein purification, protein interaction, and protein function in regulating cytoskeleton assembly.', 'Job Requirements:': 'PhD in biochemistry, biophysics, and molecular and cell biology.Prior related research experience would be advantageous.Ability to work independently as well as teamwork.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-mathematic-modeling-of-macromolecular-assembly-10056023?jobId=jobstreet-sg-job-10056023§ionRank=1409&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Sourcing Analyst'}, {'company_name': 'Michael Page International Pte Ltd'}, {'small_section': ['Central', 'SGD\xa06,000 - SGD\xa08,400', 'Posted on 24-Oct-22']}, {'Client Details': 'Providing support in relation to analytics and data management to the sourcing department.Management of complex sized data and to provide analysis to assist in decision making.', 'Sourcing Analyst ': '', 'Description': '', ' Director': '', 'SAS, R, Python, SQL, Alteryx': '', 'Profile': '', 'Retail/FMCG Industry': '', 'Business Analytics in Sourcing area': '', 'Job Offer': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Services, Logistics/Supply Chain', 'Registration No.': '199804751N', 'EA No.': '90C4069', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tMichael Page International is a leading professional recruitment consultancy specialising in the recruitment of permanent, contract and temporary positions on behalf of the world¦s top employers. Now, after more than 40 years in the recruitment market, we have secured our position as leaders in international recruitment and hiring. We currently have 140 offices that create a network that spans 36 countries around the world, with strong opportunities for more growth within Asia Pacific.'}, {'url': 'http://www.jobstreet.com.sg/en/job/sourcing-analyst-10097484?jobId=jobstreet-sg-job-10097484§ionRank=1410&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing'}]
Client Details
[{'position': 'Specialist, Data Management Engineer #UrgentHire'}, {'company_name': 'The Bank of New York Mellon'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Specialist, Data Management Engineer': '', 'Overview': "Designs\xa0and\xa0creates more complex logical/physical\xa0data models,\xa0and\xa0data dictionaries that cater\xa0to\xa0the\xa0specific business\xa0and\xa0functional requirements\xa0of\xa0applications..Provides support for data architecture efforts as needed..May allocate/coordinate\xa0work\xa0within a team/project..Develops logical data designs\xa0of\xa0increasing complexity\xa0to\xa0deliver stable\xa0and\xa0flexible high performance data solutions..Performs data extracts\xa0and\xa0creates complex data reports\xa0to\xa0analyze user metrics..Develops understanding\xa0of\xa0business needs\xa0and\xa0functionalities\xa0to\xa0determine compatibility\xa0of\xa0database with existing hardware/software applications\xa0and\xa0recommend\xa0the\xa0most\xa0cost-effective methods..Consults with database administration\xa0and\xa0client areas\xa0in\xa0resolving questions during\xa0the\xa0translation\xa0to\xa0a\xa0physical\xa0database design..Provides knowledge\xa0of\xa0enterprise data\xa0to\xa0assist\xa0the\xa0business in\xa0the\xa0creation\xa0and\xa0definition\xa0of\xa0internal\xa0and\xa0external message flows..Provides knowledge\xa0in\xa0existing database environments\xa0and\xa0makes recommendations for opportunities\xa0to\xa0share data\xa0and/or\xa0reduce data redundancy. Contributes\xa0to\xa0the\xa0achievement\xa0of\xa0related teams' objectives..", 'Qualifications:': "Bachelor's\xa0degree\xa0in\xa0computer science\xa0or\xa0a related discipline,\xa0or\xa0equivalent\xa0work\xa0experience required.6-8\xa0years\xa0of\xa0experience\xa0in\xa0data modeling, data warehousing, data entity analysis, logical\xa0and\xa0relational database design,\xa0or\xa0an equivalent combination\xa0of\xa0education\xa0and\xa0work\xa0experience required, experience\xa0in\xa0the\xa0securities\xa0or\xa0financial services industry\xa0is\xa0a plus..", 'Employer Description:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S74FC2426B', 'Company Size': '2001 - 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': 'BNY Mellon is a global investments company dedicated to helping its clients manage and service their financial assets throughout the investment lifecycle. Whether providing financial services for institutions, corporations or individual investors, BNY Mellon delivers informed investment management and investment services in 35 countries and more than 100 markets.\nAs of December 31, 2013, BNY Mellon had $27.6 trillion in assets under custody and/or administration, and $1.6 trillion in assets under management. BNY Mellon can act as a single point of contact for clients looking to create, trade, hold, manage, service, distribute or restructure investments. BNY Mellon is the corporate brand of The Bank of New York Mellon Corporation (NYSE: BK).\nAdditional information is available on www.bnymellon.com, or follow us on Twitter @BNYMellon.'}, {'url': 'http://www.jobstreet.com.sg/en/job/specialist-data-management-engineer-urgenthire-10145416?jobId=jobstreet-sg-job-10145416§ionRank=1412&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Specialist, Data Management Engineer
[{'position': 'Research Fellow, - (Machine Learning) - (R00008200) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Research on federated learning for industry 4.0.Implement deep learning algorithms.Lead a team of researchers for more efficient outcome delivery.Perform project-related works assigned by the PI.', 'Job Requirements:': 'PhD in computer science/engineering or electrical/electronic engineering..Good programming ability with python.Experience with deep learning algorithms and frameworks, like TensorFlow and Pytorch.Good leadership, responsibility and communication skills.The ability to read and write research papers and technical reports.Fluent in English (written and spoken).Interested applicants are invited to submit a cover letter and full CV in one document..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Mechanical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-r00008200-seekbetter-10142225?jobId=jobstreet-sg-job-10142225§ionRank=1413&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Engineer II (Computer Science/Electronics/Science/Mathematics)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:\xa0': 'Using and procuring image capture equipment (camera, lighting, etc.) and relevant image processing software to help create datasets.Leverage image capturing techniques to process images in line with our research objectives.Create reports and help with milestone presentations.', 'Job Requirements:\xa0': "Possess bachelor's/master's degree in any discipline (preferably in Engineering (computer science or electronics)/Science/Mathematics or related disciplines)..Basic knowledge in photography and image editing..Programming knowledge in Python or C++ will be an added advantage."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-ii-computer-science-electronics-science-mathematics-10051387?jobId=jobstreet-sg-job-10051387§ionRank=1414&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Researcher - Analytics - Organic & Inorganic'}, {'company_name': 'VOLT'}, {'small_section': ['Singapore', 'SGD\xa090,000 - SGD\xa0117,000', 'Posted on 21-Oct-22']}, {'Researchers - Analytical - Inorganic / Organic': 'International Renewables Business who is well known for Sustainable Solutions.Pioneer roles.New Setup in Singapore.Permanent Opportunities.', 'retained search': '', 'leading International name': '', 'Renewables Industry': '', 'Requirements': '', 'Chemical Engineering or': '', 'Analytical Research covering Organic analysis techniques': '', 'GC-MS, GCxGC, HPLC, LC-MS/MS, GPC, FTIR': '', 'OR': '', 'Inorganic Analys': '', 'techniques : ICP-MS/MS, coulometry, CHN, XRF, XRD, CIC, IC, N/S-': []}, {'Career Level': 'Non-Executive', 'Qualification': "Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200408881M', 'EA No.': '12C5526', 'Company Size': 'More than 5000 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tVolt is an award winning, global workforce solution provider, listed on the NYSE and a Fortune 1000 organisation. Volt propels businesses and careers forward with expert momentum. Volt’s 35,000 employees work across 85 offices worldwide to provide workforce management and talent acquisition solutions to businesses and job placement services. With 70 years of industry leadership and a growing global team of employment strategists, partnerships and proactive approach to business needs, Volt strive to maintain an innovative and highly relevant sector-based portfolio globally.\n\n\n\tFor more opportunities visit our website, www.voltinternational.com.sg\xa0\n\n\tVolt Service Corporation Pte Ltd\n\tCompany Registration No. 200408881M\n\tEA Registration No. 12C5526'}, {'url': 'http://www.jobstreet.com.sg/en/job/researcher-analytics-organic-inorganic-10088565?jobId=jobstreet-sg-job-10088565§ionRank=1415&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Researchers - Analytical - Inorganic / Organic
[{'position': 'Senior Research Engineer I, - (Computer Science) (R00010614)#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Description:': 'Gather system requirements by defining and analyzing system problems.Design and implement natural language processing (NLP) algorithms and models for semantic analysis, e.g., word embedding, named-entity recognition, coreference resolution and parsing, and ontology and knowledge graph constructions.Application of NLP in knowledge and information retrieval, and relevancy ranking with spatiotemporal consideration.Conduct “translational” research to apply the state-of-the-art solutions at scale for real world challenges.Documentation and scientific reporting.', 'Job Requirements:': 'PhD in computer science.Some experience and research background in AI and NLP.Passionate about NLP and AI related research, innovations and their applications.Proficient in one or more programming languages (e.g., Python, C/C++, etc.) and research packages/modules.Experience in large-scale text processing and analytics.Good track records in publication.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-engineer-i-computer-science-r00010614-urgenthire-10129556?jobId=jobstreet-sg-job-10129556§ionRank=1416&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Forensic Scientist, Illicit Drugs Laboratory'}, {'company_name': 'Health Sciences Authority'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'What the role is': '', 'Job Description:': '', 'What we are looking for': '', 'Job Requirements:': []}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': 'T08GB0015G', 'Company Size': '501 - 1000 Employees', 'Industry': 'Healthcare / Medical', 'Benefits & Others': 'Dental, Medical'}, {'Company Overview': '\n\tThe Health Sciences Authority (HSA) is a multidisciplinary scientific and regulatory agency that serves three key functions to protect and advance national health and safety. It is the national regulator for drugs, innovative therapeutics, medical devices and health-related products, ensuring they are well-regulated to high standards of safety, quality and efficacy. As the national blood service, it secures the nation’s blood supply by ensuring a safe and adequate blood supply for public and private hospitals. It is also the provider of national expertise in forensic medicine, forensic science and analytical chemistry testing to serve the administration of justice and safeguard public health.'}, {'url': 'http://www.jobstreet.com.sg/en/job/forensic-scientist-illicit-drugs-laboratory-10128831?jobId=jobstreet-sg-job-10128831§ionRank=1419&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
What the role is
[{'position': 'Data Analyst - Growth - #JobsThatMatter #WorkNow*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': '', 'You will:': 'Build and governing matrices for fast changing business in an analytical data-driven approach to identify business issues and opportunities;.Prototype analysis pipelines to provide insights, and provide quick responses to business inquiries and events;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendation on appropriate solutions..', 'Qualifications': "Bachelor's degree in Statistics, Applied Mathematics, Computer Science or a related field;.Skilled in data manipulation with SQL, python or other programming-languages/tools;.Experienced in data analyzing, visualization and reporting;.Fast business understanding and collaborative in teamwork..", 'Preferred Qualifications:': 'Experience working with user growth is a plus..'}, {'Career Level': 'Entry Level', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-growth-jobsthatmatter-worknow*-urgenthire-10108818?jobId=jobstreet-sg-job-10108818§ionRank=1422&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Analyst Intern - Growth - #JobsThatMatter*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Responsibilities': 'Build and manage metrics in an analytical driven approach to identify business issues and opportunities in a fast-changing industry;.Prototype analysis pipelines and quickly provide insights to business inquiries;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendations on appropriate solutions..', 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Statistics, Applied Mathematics, Computer Science or a related technical discipline from a university;.Experience in data manipulation with SQL, Python or other programming-languages/tools;.Experience in data analysis, visualization and reporting;.'}, {'Career Level': 'Entry Level', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-intern-growth-jobsthatmatter*-urgenthire-10108773?jobId=jobstreet-sg-job-10108773§ionRank=1424&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Analyst (Gaming Industry)'}, {'company_name': 'Optimum Solutions (S) Pte Ltd'}, {'small_section': ['East', 'SGD\xa08,000 - SGD\xa010,300', 'Posted on 13-Oct-22']}, {'Responsibilities:': 'Design and develop data analytics and optimization models to uncover patterns, trends, and other useful information to help develop and execute partnership goals..Build, maintain and optimize BI dashboards and internal BI tools for data insights and business support..Being the subject matter expert on data mining and providing trending analysis to management..Work closely with stakeholders to understand their needs/challenges and develop a business case to turn large data sets into critical information and knowledge that are actionable for process improvement and business strategy.Work cross-functionally with a variety of teams, including Product, Marketing and Data teams to advocate for partner needs.Utilize various internal tools to help onboard creators and troubleshoot on an ongoing basis..Process contract changes on a regular basis and where needed (eg. sending new contracts, renewals, terminations)..Work closely with Strategic Partner Managers to drive operational improvements for the region and lead various other ad-hoc initiatives to support the gaming video business as needed..Adapt quickly to product changes and limitations, and communicate these strategically to stakeholders.', 'Minimum Qualifications:': '3+ years of experience in data analysis and business operations.', '3+ years of experience in data analysis and business operations': '', 'Knowledge of SQL and database structure': 'Advanced skills in MS Excel, and PowerPoint..', 'Advanced skills in MS Excel, and PowerPoint.': '', 'Able to build dashboards': '', 'interpret data and present it to stakeholders': '', 'Need to know a little bit about gaming metrics': 'Strong analytical skills with the ability to generate compelling recommendations.Exceptional communication and presentation skills, and the ability to clarify and summarize complex issues.Ability to work effectively and cross-functionally with all levels of management, both internally and externally.Self-starter, intellectually curious and creative individual comfortable operating in a fast-paced, ever-changing environment.Strong operational process with experience in project management and process improvement.', 'Strong operational process with experience in project management and process improvement': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Contract', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199700895N', 'EA No.': '07C3330', 'Company Size': '1001 - 2000 Employees', 'Average Processing Time': '3 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tOptimum Solutions, is a full spectrum Software Solutions and a Managed Services Company. The services from Optimum are designed to deliver Enterprise Client-Server/ Multi-tier and Web based solutions across the entire value chain, spanning on-site consulting services to turnkey software projects. Opportunities abound when you work @ Optimum, a World-Class Software Solutions and Service Provider. Our client list includes major Fortune 500 organizations. Our customers are primarily from Banking and Finance, Manufacturing, Distribution, Technology, Service and Healthcare verticals.\n\nHistory\n\n\tWe have got over 2200 plus consultants working with us and have developed into a rapidly growing, highly competitive and responsive firm with strong management, technical and financial resources and commitment to fully serve its clients in Singapore, USA, China, Malaysia, Philippines and India. Professional Services - Since 1997, we have been providing IT consulting professionals to major national and local firms, Fortune 500, software integrator and software development companies, and major national and local consulting firms. Managed Services group focuses on the comprehensive services on a managed mode- where the responsibility of delivery and Service Levels are undertaken by Optimum for providing a strong value to the customers. This Service enables organizations to optimize overheads and realign focus of their internal resource towards core competency and value addition areas of the organization. Software Applications & Services provides a wide range of services and turnkey solutions that run gamut from short-term focused services to long-term comprehensive, leading-edge solutions. The scope covers the end-to-end application platforms from legacy domains to web based applications.\n\nProduct & Services\n\n\tInformation Technology and Services'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-gaming-industry-10059988?jobId=jobstreet-sg-job-10059988§ionRank=1425&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Software Engineer (Data Express) - Data Platform'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities': '', 'About TikTok': '', 'About the team': '', 'The product will:': 'Enable users to manage large scale data assets in the underlying data engine securely and effortlessly.Improve the overall system observability, helping our users gain more transparency in the healthiness, resource utilization of the system.', 'What you will be doing:': 'Responsible for building core functionalities in the data loading domain.Drive the design, development, and delivery of data loading features to integrate with mainstream upstream ecosystems.Lead the optimization of both streaming and batch loading engines to provide low-latency and high-throughput in respective scenarios.Lead the solution design on data loading resource management over hundreds of thousands of loading jobs.Ensure service quality through the whole software development lifecycle.', 'Qualifications': '', 'What you should have:': "Bachelor's Degree or Post Graduate in Computer Science..At least 5 years of backend experience.Good coding skills in mainstream languages such as GoLang, Java, or Scala.Good domain knowledge of ETL and data warehousing.In-depth knowledge in distributed real-time or batch data processing systems, such as Spark, Flink, Kafka, etc.Experience in optimizing systems like Spark, Flink, Storm, Kafka..Knowledge of big data ecosystems such as Kafka, Redpanda, Kinesis, Redshift, Hive is a plus.Good communication and interpersonal skills."}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/software-engineer-data-express-data-platform-10120826?jobId=jobstreet-sg-job-10120826§ionRank=1426&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Scientist (Microfabrication) R00007961-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Develop Processing-Structure-Properties relationships.', 'Job Requirements': ''}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-microfabrication-r00007961-jobsthatmatter-10136934?jobId=jobstreet-sg-job-10136934§ionRank=1427&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Test Tool Developer (SDLC/ Automotive)'}, {'company_name': 'Manpower Staffing Services (S) Pte Ltd - SCS'}, {'small_section': ['Kallang', 'SGD\xa07,000 - SGD\xa014,000', 'Posted on 25-Oct-22']}, {'Test Tool Developer': '', 'Responsibilities:': 'Responsible for test tool and test solution development which can be used to validate the software on automotive products like instrument cluster, display solution, central input devices, and control panel..Involved throughout the software development life cycle (quotation, project planning, requirement analysis, software test strategy definition, software verification/validation and software quality assurance).Responsible for creating test plans, developing manual and/or automated test specifications, conducting test reviews and generating test reports, supporting team with his experience..Analyzing software requirements, validating software, and assist in analyzing and defect tracking to ensure that the products are released successfully.Involve in continuous improvement in the software validation process and methods.', 'Requirements\xa0': 'Degree in Engineering or Diploma in Engineering with 8 years of experience in tool development in embedded environment..Experience in software development life cycle and test methodology.Good requirement analysis skill.Good experience in test tool/module design and development.Advance programming skill (C#, CAPL, Python, NI LabView).Experience in project management (up to 5), can consider for senior position.Experience in automotive industry will be ideal.Knowledge of automotive communication protocol (CAN/Ethernet) will be ideal.Willing to travel overseas for training and/or work assignment on short notice..'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '7 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electronics', 'Registration No.': '.', 'EA No.': '02C3423', 'Company Size': '51 - 200 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\n\t\tManpower is the global leader in contingent and permanent recruitment workforce solutions. It is part of ManpowerGroup, the world leader in innovative workforce solutions, which creates and delivers high-impact solutions that enable clients to achieve their business goals and enhance their competitiveness.\n\n\t\tManpower has provided organizations in Singapore with a continuum of staffing solutions from the incidental to the strategic since 1996, working with businesses to help them win. In the Human Age, where talent has replaced access to capital as the key competitive differentiator, Manpower Singapore leverages its trusted brand to develop a deep talent pool, providing clients with access to the people they need, fast. Manpower Singapore creates powerful connections between organizations and the talent they need to enhance their competitiveness and unleash their workforce potential. By creating these powerful connections, we help everybody achieve more than they imagined, and power the future of work.\n\n\t\tSee what is humanly possible at manpower.com.sg.\xa0\n\n\t\tPlease note that your response to this advertisement and communications with us pursuant to this advertisement will constitute informed consent to the collection, use and/or disclosure of personal data by Manpower for the purpose of carrying out its business, in compliance with the relevant provisions of the Personal Data Protection Act 2012.\xa0To learn more about ManpowerGroup's Global Privacy Policy, please visit https://www.manpower.com.sg/privacy-policy\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/test-tool-developer-sdlc-automotive-10101822?jobId=jobstreet-sg-job-10101822§ionRank=1428&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Test Tool Developer
[{'position': 'Research Scientist in Centre for Research in Child Dev. [R00007657] #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'SGD\xa03,800 - SGD\xa05,300', 'Posted on 8-Nov-22']}, {'Research Scientist in Centre for Research in Child Development (OER) [NIE]': '', 'Overview': 'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention\xa0\xa0.Candidates with appropriate qualifications and relevant research experience are encouraged to apply. Successful applicants will work with a team of researchers at CRCD. We invite applications for the position of Research Scientist to join our efforts..', 'Requirements': 'PhD in a relevant discipline (e.g. developmental psychology, developmental science,\xa0 child development, educational psychology, linguistics, early intervention, or special education).Minimum 2 years of post-PhD experience (Research Scientist).Demonstrated ability to lead a research team;.Demonstrable track record in the following areas:.High quality publications (please provide samples and information on the\xa0 quality and impact of your work based on citations and ranking of journal publications);.Planning and writing research projects that are funded through competitive peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences);.Proficiency in the design and testing of instruments is desirable;.Excellent interpersonal and communication skills (spoken and written English);.Ability to work collaboratively within a team environment..', 'Responsibilities of Research Scientists': 'Collaborate with colleagues to design and implement the centre’s research programme.Take a leading role in the development of research projects and programmes and in seeking and pursuing appropriate external funding;.Disseminate the outcomes of research in peer-reviewed publications of international standing;.Manage and conduct administrative and management tasks associated with your programme of research;.Participate in research of strategic importance to NIE;.Participate in the wider research and service activities of NIE;.', 'Closing Date': 'Review of applicants will continue until the position is filled..', 'Other Information': 'Queries regarding the position should be directed to\xa0.', 'Application': 'Interested applicants should complete and submit the following documents:.Cover letter addressing how you meet each of the requirements of this position;.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research expertise, interests, and future directions;.1 to 3 of your best publications;.Name of at least 3 referees;.Any other documents that demonstrate your qualifications.', 'Note to applicants:': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-in-centre-for-research-in-child-dev.-%5Br00007657%5D-seekbetter-10144830?jobId=jobstreet-sg-job-10144830§ionRank=1429&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Research Scientist in Centre for Research in Child Development (OER) [NIE]
[{'position': 'Data scientist I #JobsThatMatter'}, {'company_name': 'Jabil Circuit (Singapore) Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 21-Oct-22']}, {'Job Description': '', 'JOB SUMMARY': '', 'ESSENTIAL DUTIES AND RESPONSIBILITIES': '', 'JOB QUALIFICATIONS': '', 'KNOWLEDGE REQUIREMENTS': '', 'Accessibility Accommodation': []}, {'Career Level': 'Junior Executive', 'Qualification': "Professional Certificate/NiTEC, Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200203640M', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Manufacturing / Production', 'Benefits & Others': 'Dental, Medical, Parking, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': '\n\n\nCompany Overview\n\n\n\t\t\tBusiness disruption across multiple sectors is accelerating at record pace. Getting increasingly innovative products to market quickly, reliably and securely, continues to separate winners from losers in markets around the world.\n\n\n\t\t\tAnd that’s why some of the world’s best-known brands partner with Jabil.\n\n\n\t\t\tBuilt on a foundation of empowered employees in over 100 plants in 29 countries, Jabil focuses on helping customers with world-leading global manufacturing and design services. We create and build world’s most well-known and respected products and components in industries ranging from medical equipment to smart phones to electric cars. Our teams work on products that help connect people, advance technology, and improve the world we share. Worldwide, we are in over 100 sites across 29 countries.\n\n\t\t\tWe believe in hiring the right people, putting them in positions where they can make contributions, and giving them the tools and the authority they need to make decisions. If you have a quality-first mentality in everything that you do and are passionate about achieving results, then Jabil is the place for you.\xa0\xa0\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-i-jobsthatmatter-10087176?jobId=jobstreet-sg-job-10087176§ionRank=1430&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Job Description
[{'position': 'Research Assistant - (Bioinformatics Support)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Day-to-day operation of the genome sequencing laboratory’s IT infrastructure.Providing technical support, which includes managing instrument’s raw data and subsequent post-processing, configuring and maintaining sequencing instruments, supporting the wet-lab team, and troubleshooting technical issues.Providing analytical support, which includes benchmarking new methods/protocols or bioinformatics tools, providing technical assessment on new advancements in genomics, and providing data analysis recommendations to other bioinformatics team members.', 'Job Requirements:': 'Bachelor’s degree with minimum 3 years of experience in a bioinformatics role with relevant technical, user support, or project experience.Demonstrated hands-on experience in the management and handling of next-gen sequencing instrument data (Illumina, Oxford Nanopore, and/or PacBio) and subsequent data processing.Strong understanding of genomics and bioinformatic concepts needed to support the analysis of next-gen sequencing data.Demonstrated hands-on experience in bioinformatics data analysis, e.g., sequence alignment, genome assembly, metagenomics analysis.Strong understanding of basic IT infrastructure knowledge, e.g., operating system, networking, data storage.Competence in R, Perl, Python or other scripting language appropriate for bioinformatic analyses.Experience in using high-performance computing is a plus.Experience in wet-lab molecular biology techniques is a plus.Strong project management skills.Strong analytical skills and meticulous attitude.Able to work independently or in a team with minimal supervision.Good communication, writing and presentation skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-bioinformatics-support-10051315?jobId=jobstreet-sg-job-10051315§ionRank=1431&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Assistant, - (Bioinformatics Support)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Day-to-day operation of the genome sequencing laboratory’s IT infrastructure.Providing technical support, which includes managing instrument’s raw data and subsequent post-processing, configuring and maintaining sequencing instruments, supporting the wet-lab team, and troubleshooting technical issues.Providing analytical support, which includes benchmarking new methods/protocols or bioinformatics tools, providing technical assessment on new advancements in genomics, and providing data analysis recommendations to other bioinformatics team members.', 'Job Requirements:': 'Bachelor’s degree with minimum 3 years of experience in a bioinformatics role with relevant technical, user support, or project experience.Demonstrated hands-on experience in the management and handling of next-gen sequencing instrument data (Illumina, Oxford Nanopore, and/or PacBio) and subsequent data processing.Strong understanding of genomics and bioinformatic concepts needed to support the analysis of next-gen sequencing data.Demonstrated hands-on experience in bioinformatics data analysis, e.g., sequence alignment, genome assembly, metagenomics analysis.Strong understanding of basic IT infrastructure knowledge, e.g., operating system, networking, data storage.Competence in R, Perl, Python or other scripting language appropriate for bioinformatic analyses.Experience in using high-performance computing is a plus.Experience in wet-lab molecular biology techniques is a plus.Strong project management skills.Strong analytical skills and meticulous attitude.Able to work independently or in a team with minimal supervision.Good communication, writing and presentation skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-assistant-bioinformatics-support-10054707?jobId=jobstreet-sg-job-10054707§ionRank=1432&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Associate, (Software Engineering/Artificial Intelligence) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:\xa0': "Conducting research in cutting edge AI domains (mainly related to reinforcement learning) and software/hardware testing.Developing and integrating AI algorithms into the real development progress.Participating in co-operation with Continental's development team.Preparing academic publications such as pattern and research paper.Contributing to writing and presenting seasonal and annual report.", 'Job Requirements:\xa0': "Master's degree in Artificial Intelligence, Computer Science, Software Engineering, Electrical Engineering.Strong background and research experience in artificial intelligence, software engineering, automatic testing, Hardware Design.Excellent background and experience in programming language, especially python.Good communication and report-writing skills.Strong responsibility for research and work."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-software-engineering-artificial-intelligence-urgenthire-10141406?jobId=jobstreet-sg-job-10141406§ionRank=1433&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow (Molecular Biology) R00009093'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Description:': 'Design and implement experiments independently.Data analysis and interpretation for publication..Mentor students and junior lab members.Contribute to lab procurement and lab safety management.', 'Job Requirements:': 'PhD in molecular biology or related fields.Strong expertise in cell and molecular biology techniques.Knowledge and keen interest in various omics studies and data analysis..Ability to design and implement experiments independently.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-molecular-biology-r00009093-10051438?jobId=jobstreet-sg-job-10051438§ionRank=1434&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'AVP, Machine Learning Engr. - Data Scientist, Data Management Office'}, {'company_name': 'United Overseas Bank Limited (UOB)'}, {'small_section': ['Singapore', 'Posted on 24-Oct-22']}, {'About UOB': '', 'About the Department': '', 'Data Management Office and Big Data Analytics': '', 'Data Management Office': '', 'Big\xa0Data Analytics ': '', 'Job Responsibilities': 'Design advanced analytical solutions/experiments to solve various strategic business problems through engagement and research..Building and deploying Machine Learning Algorithms, Advanced Analytics, and Data Visualization across the UOB group and region..Support the Enterprise Data Architecture and Governance Program in developing and transforming the Analytics Capabilities across the group.Partnering with assigned teams and/or business units to provide deep expertise and advisory on data analytics needs.Strong knowledge of data and analytics architecture to ensure analytics objectives are aligned to business priorities on the Data Transformation Program.Drive innovation initiatives under guidance and directives of Head, Group Enterprise AI and Data..', 'Job Requirements': 'Min Degree in Statistics, Mathematics, Data or Computer Science or a related field.Prior knowledge or working experience in banking / financial services industry is desired.Knowledge in main stream cloud platforms, e.g. AWS or GCP, is a plus.Possess a selection of skills and experience with analytical tools and languages such as R, SAS, python, SQL, Pig and other Hadoop-based languages.Possess the ability to query and use large, robust data sets across traditional Data Warehouse and Hadoop platforms..An analytical mind and team player to build strong business partnerships.A strong communicator, with clear articulation of analytical findings through presentations. Experience with data visualization packages will be a plus.Innovative and Agile thinking - experience with Test and Learn Frameworks desirable.', 'Be a part of UOB Family': []}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '193500026Z', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '25 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Loans, Sports (e.g. Gym), Parking, Vision, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUnited Overseas Bank Limited (UOB) is a leading bank in Asia with a global network of more than 500 branches and offices in 19 countries and territories in Asia Pacific, Europe and North America. In Asia, we operate through our head office in Singapore and banking subsidiaries in China, Indonesia, Malaysia and Thailand, as well as branches and offices.\n\t\n\t\n\t\tIn 1935, amid the economic uncertainties following the Great Depression, UOB opened its doors to offer banking services for the merchant community in Singapore.\n\n\t\tSince then, UOB has grown organically and through a series of strategic acquisitions. Today, UOB is rated among the world’s top banks: ‘Aa1’ by Moody’s and ‘AA-’ by Standard & Poor’s and Fitch Ratings.\n\n\t\tGenerations of UOB employees for the past 80 years have carried through the entrepreneurial spirit, focus on long-term value creation and an unwavering commitment to do what is right for our customers and our colleagues.\n\n\t\tAt UOB, we believe in being a responsible financial services provider and we are committed to making a difference in the lives of our stakeholders and in the communities in which we operate.\n\n\t\tJust as we are dedicated to helping our customers manage their finances wisely and grow their businesses, UOB is steadfast in our support of social development, particularly in the areas of art, children and education.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/avp-machine-learning-engr.-data-scientist-data-management-office-10098237?jobId=jobstreet-sg-job-10098237§ionRank=1436&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
About UOB
[{'position': 'Site Reliability Engineer, Applied Machine Learning'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': '', 'About Tiktok': '', 'About the Role': '', 'Qualifications': '', 'Minimum Qualifications': 'Bachelor’s degree in Computer Science or equivalent with 1+yrs relevant experience..Proven experience in analyzing and troubleshooting distributed systems..Experience programming in at least one of the following languages: Python or C/C++..', 'Preferred Qualifications': 'Ability to thrive in a fast-paced environment..Strong understanding of code optimizing and routine tasks automation..Proficiency in at least one machine learning framework: TensorFlow, PyTorch, MXNet or PaddlePaddle..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/site-reliability-engineer-applied-machine-learning-10131792?jobId=jobstreet-sg-job-10131792§ionRank=1437&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data scientist for AI & Monitoring Models Validation #UrgentHire'}, {'company_name': 'UBS AG'}, {'small_section': ['Singapore', 'Posted on 21-Oct-22']}, {'Your role': '', "We're looking for someone like that to:": 'Review and challenge models used in operational risk management.Assess the conceptual soundness and appropriateness of different models and perform related outcome, impact and benchmark analyses.Run tests to assess the correctness and stability of the implementation.Carry out and document independent model validation in line with regulatory requirements and internal standards.Interact and discuss with model users, developers, senior owners and governance bodies.Support regulatory exercises.Able to be a great team player within a diverse and inclusive team.', 'Your team': '', 'Your expertise': 'A MSc or PhD degree in a quantitative field (e.g. computer science, statistics, mathematics, physics, engineering or economics).Hands on experience in developing or validating statistical/mathematical models.Expertise in data assembling and analysis, computational statistics, anomaly detection or machine learning including relevant programming skills, for example in R, Python, Java, C++, SQL.Strong writing skills and a structured working style.Familiarity with the global financial industry and its compliance and operational risks.Able to explain technical concepts in simple terms to facilitate collaboration.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S98FC5560C', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUBS draws on its 150-year heritage to serve private, institutional and corporate clients worldwide, as well as retail clients in Switzerland. We combine our wealth management, investment banking and asset management businesses with our Swiss operations to deliver superior financial solutions.\n\t\n\t\tHeadquartered in Zurich and Basel, Switzerland, UBS has offices in more than 50 countries, including all major financial centers, and employs approximately 65,000 people. Under Swiss company law, UBS is organized as an Aktiengesellschaft, a corporation that has issued shares of common stock to investors. UBS AG is the parent company of the UBS Group (Group).\n\tThe operational structure of the Group comprises the Corporate Center and four business divisions: Wealth Management & Swiss Bank, Wealth Management Americas, Global Asset Management and the Investment Bank.\n\t\n\t\tUBS is present in all major financial centers worldwide. It has offices in over 50 countries, with about 37% of its employees working in the Americas, 37% in Switzerland, 16% in the rest of Europe and 10% in Asia Pacific.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-for-ai-monitoring-models-validation-urgenthire-10091658?jobId=jobstreet-sg-job-10091658§ionRank=1439&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
Your role
[{'position': 'Senior Research Engineer - Salary up to $8000'}, {'company_name': 'Dynamic Human Capital Pte Ltd'}, {'small_section': ['West', 'SGD\xa06,000 - SGD\xa08,000', 'Posted on 18-Oct-22']}, {'We are seeking for Senior Research Engineer with BioTech/Bioprocess background or other relevant scientific discipline with min 4 yrs of experiences.': '', 'Industry: Food Technology': '', 'Salary: Up to $8000': '', 'Location: West, Jurong': '', 'Job Responsibilities': 'Act as subject matter expert for scale-up and expansion of established cell lines..Key role in the operation of laboratory scale bioreactor systems for suspension/adherent cell culture, bioreactor operation and small-scale experiments..Work closely with Cell Line and Media Development teams to coordinate knowledge transfer..Ability to work with the Food Technology team to ensure process continuity..Plan and carry out independent experiments to support process optimization and development from flasks to multi-bioreactor systems..Lead development of a feeding strategy based on metabolic flux in bioreactors for optimal culture conditions..Identify outside vendors and resources where appropriate and oversee external projects required to accomplish project goals..Contribute to technology transfer of manufacturing process by working with the Tech Transfer team.\xa0.Lead development/specification/procurement and installation of bioprocess hardware and automation necessary to execute and monitor bioprocesses..Lead development of multiple pipelines for various species..Coordinate research activities of the team and train members of the team..Implement DOE studies and OFAT analysis for process parameter development..Setup protocols and batch records and provide technical input to drive progress..Communicate results and data in a timely and effective manner..Follow health and safety procedures and implement paperwork as required.', 'Requirements:': 'Master’s or Ph.D. degree in Biotechnology, Bioprocess Engineering, or other relevant scientific disciplines, or a similar and demonstrated scientific level of working..At least 4-5 years of relevant working experience in an industry setting in cell culture, bioreactor operations and stem cell biology..Strongly motivated and believes in the mission to bring crustacean meat to market..Able to independently design, execute, and interpret laboratory experiments to answer specific scientific questions..Meticulous and familiar with aseptic techniques..Must be forward-thinking and be able to lead and contribute to scientific/technical discussions..Have great attention to detail and the ability to keep detailed written records in a lab notebook or batch record..Have strong communication skills in English including verbal, written, and scientific data presentation to a variety of audiences..A motivated self-starter and ability to multitask efficiently..'}, {'Career Level': 'Senior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '201228584R', 'EA No.': '12C6253', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\nConnecting talents . Driving dreams\n\n\t\t\xa0\xa0\n\t\tDynamic Human Capital connects talents to earnest employers who are serious about taking steps to grow together. Working closely with esteemed organizations, we unearth potential gems for each client’s recruitment needs.\n\nWhat we do\n\n\t\tOur experience and specialization take us through scores of potential human resources that could be that instrumental player in your organization. As strategic advisors, our goal is to suss out the right personnel to be the right fit in diverse industries.\n\n\t\tWe pride ourselves with a seamless approach to facilitate the pursuit of individuals who are serious about their career.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-engineer-salary-up-to-%248000-10077064?jobId=jobstreet-sg-job-10077064§ionRank=1440&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing'}]
We are seeking for Senior Research Engineer with BioTech/Bioprocess background or other relevant scientific discipline with min 4 yrs of experiences.
[{'position': 'Private Banking IT – Data Scientist - #182252 #Urgent'}, {'company_name': 'Credit Suisse (Singapore) Limited'}, {'small_section': ['Singapore', 'Posted on 21-Oct-22']}, {'Your field of responsibility': '', 'As part of the role your responsibilities include:': 'Coordinate with Business Users, Product Owners, Business Engineers, and technology team to understand data analysis requirements. Lead Data Analysis and responsible for all Data related capabilities..Responsible to translate business requirements to AI/ ML based solution..Experience in building end to end model including with direct business impact data cleaning, data analytics, features engineering, model selection, ensemble methods, performance metrics, and visualization..Proven track record in designing, developing and deploying Machine Learning models that created business impact.Coordinating on projects requiring data integration and science skills, connecting bank-wide datasets.Working with teams from different business function and divisions to solve complex machine learning problem.Responsible to ensure that AI/ ML solutions meets bank-wide ML modelling guidelines and standards.', 'Your future colleagues': '', 'Your skills and experience': '', 'You are expected to possess the below:': 'Excellent academic background with advanced degree in Computer Science, Engineering, Mathematics, Statistics or related Field..Relevant experience in data, AI/ML modelling related capabilities..Solid programming skills in Python, R or Java with integrated data science, engineering and development background. Solid grasp and experience of working with SQL.Experience of working with ML frameworks like TensorFlow, Pytorch, Keras, ScikitLearn, XGBoost, SparkML or similar..Proficient in general NN models like SVM, random forest, decision tree, neural networks, GLM..Partner management experience is required to effectively gather the requirements and handle the delivery of data science outcomes.Proficient in investment banking domain, and financial services products/ customer data will be an advantage..Proficient in agile development practices.Understanding of parallel capabilities on the cloud (AWS, GCP, Azure) is highly desirable.', 'Your new employer': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197702363D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\tThe Credit Suisse Group purpose is at the core of everything we do. It underpins the value we create and has powered our progress for more than 160 years. It captures the essence of 'why' we exist as an organization. It motivates us when we come to work every day and serves as our North Star when we make decisions. Ultimately, it serves to define who we are and what we should be doing for our employees, clients and stakeholders.\n\tOur strategy builds on Credit Suisse's core strengths: our position as a leading wealth manager with strong global investment banking capabilities and our strong presence in our home market of Switzerland. We seek to follow a balanced approach to wealth management, aiming to capitalize on both the large pool of wealth within mature markets as well as the significant growth in wealth in Asia Pacific and other emerging markets.\n\tWe serve our clients through three regionally focused divisions: Swiss Universal Bank, International Wealth Management and Asia Pacific. These regional businesses are supported by an integrated global Investment Bank. Our Asset Management business is managed as a separate division, emphasizing the strategic importance of the asset management business for the bank and its clients.\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/private-banking-it-data-scientist-182252-urgent-10088103?jobId=jobstreet-sg-job-10088103§ionRank=1442&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Your field of responsibility
[{'position': 'Private Banking IT – Data Scientist #182252 #urgent'}, {'company_name': 'Credit Suisse (Singapore) Limited'}, {'small_section': ['Singapore', 'Posted on 21-Oct-22']}, {'Your field of responsibility': '', 'As part of the role your responsibilities include:': 'Coordinate with Business Users, Product Owners, Business Engineers, and technology team to understand data analysis requirements. Lead Data Analysis and responsible for all Data related capabilities..Responsible to translate business requirements to AI/ ML based solution..Experience in building end to end model including with direct business impact data cleaning, data analytics, features engineering, model selection, ensemble methods, performance metrics, and visualization..Proven track record in designing, developing and deploying Machine Learning models that created business impact.Coordinating on projects requiring data integration and science skills, connecting bank-wide datasets.Working with teams from different business function and divisions to solve complex machine learning problem.Responsible to ensure that AI/ ML solutions meets bank-wide ML modelling guidelines and standards.', 'Your future colleagues': '', 'Your skills and experience': '', 'You are expected to possess the below:': 'Excellent academic background with advanced degree in Computer Science, Engineering, Mathematics, Statistics or related Field..Relevant experience in data, AI/ML modelling related capabilities..Solid programming skills in Python, R or Java with integrated data science, engineering and development background. Solid grasp and experience of working with SQL.Experience of working with ML frameworks like TensorFlow, Pytorch, Keras, ScikitLearn, XGBoost, SparkML or similar..Proficient in general NN models like SVM, random forest, decision tree, neural networks, GLM..Partner management experience is required to effectively gather the requirements and handle the delivery of data science outcomes.Proficient in investment banking domain, and financial services products/ customer data will be an advantage..Proficient in agile development practices.Understanding of parallel capabilities on the cloud (AWS, GCP, Azure) is highly desirable.', 'Your new employer': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197702363D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\tThe Credit Suisse Group purpose is at the core of everything we do. It underpins the value we create and has powered our progress for more than 160 years. It captures the essence of 'why' we exist as an organization. It motivates us when we come to work every day and serves as our North Star when we make decisions. Ultimately, it serves to define who we are and what we should be doing for our employees, clients and stakeholders.\n\tOur strategy builds on Credit Suisse's core strengths: our position as a leading wealth manager with strong global investment banking capabilities and our strong presence in our home market of Switzerland. We seek to follow a balanced approach to wealth management, aiming to capitalize on both the large pool of wealth within mature markets as well as the significant growth in wealth in Asia Pacific and other emerging markets.\n\tWe serve our clients through three regionally focused divisions: Swiss Universal Bank, International Wealth Management and Asia Pacific. These regional businesses are supported by an integrated global Investment Bank. Our Asset Management business is managed as a separate division, emphasizing the strategic importance of the asset management business for the bank and its clients.\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/private-banking-it-data-scientist-182252-urgent-10088544?jobId=jobstreet-sg-job-10088544§ionRank=1443&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Your field of responsibility
[{'position': 'Research Fellow (Machine Learning) (R00008200)- #JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Key Responsibilities:': 'Research on federated learning for industry 4.0.Implement deep learning algorithms.Lead a team of researchers for more efficient outcome delivery.Perform project-related works assigned by the PI.', 'Job Requirements:': 'PhD in computer science/engineering or electrical/electronic engineering..Good programming ability with python.Experience with deep learning algorithms and frameworks, like TensorFlow and Pytorch.Good leadership, responsibility and communication skills.The ability to read and write research papers and technical reports.Fluent in English (written and spoken).Interested applicants are invited to submit a cover letter and full CV in one document..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Electrical', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-machine-learning-r00008200-jobsthatmatter-10137834?jobId=jobstreet-sg-job-10137834§ionRank=1444&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow, - (Emerging Technologies) (R00009448) #URGENT'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Key Responsibilities:': 'Efficient software and hardware implementation skills for device/circuit-level simulation and design flows.Benchmarking the implementations for area, power, energy, runtime.Studying various properties (relevant to cryptographic targets) for these designs.Preparing reports and scientific papers based on the findings.', 'Job Requirements:': 'Possess PhD in the EEE/CS.Experience in optimized software and hardware implementations with background in cryptography.Excellent teamwork and verbal, written communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Doctorate (PhD)", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-emerging-technologies-r00009448-urgent-10054835?jobId=jobstreet-sg-job-10054835§ionRank=1445&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Associate, - (Computer Science/Engineering/Electrical), - (R00008248)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Conduct research and development in Artificial Intelligence, Machine Learning and Deep Learning as applied to Computer Vision and Anomaly Detection.Generate Intellectual property in the form of Technical disclosures and patents.Publish research papers.', 'Job Requirements:': 'Master degree in computer science and engineering, electrical/electronics engineering or related fields.Preferably to have at least one year of experience in machine learning, deep learning or related areas.Good knowledge of Pytorch and Tensorflow.Good spoken and written English.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-computer-science-engineering-electrical-r00008248-10140130?jobId=jobstreet-sg-job-10140130§ionRank=1446&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Engineer I (Computer Science/Computer Vision/Deep Learning) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Key Responsibilities:\xa0': 'We are seeking research engineers to join a university-level research centre collaborating with industry..The position is for one year, renewable subject to satisfactory performance. Successful candidates will be involved in a project that is related to OpenMMLab..', 'The key responsibilities include the following:': 'Support the application of OpenMMLab projects in real-world scenarios, including data processing, model training and deployment, and model improvement..Develop deep learning algorithm framework and toolchains to accelerate the translational research i.e. translating research output to real-world applications..Participate in teaching and promotional activities of OpenMMLab, such as organizing tutorials / workshops / seminars / bootcamps etc..', 'Job Requirements:': 'A Bachelor’s degree or above in relevant fields;.Have a solid foundation in at least two of following areas: Computer Science, Computer Vision, Deep Learning;.Have relevant experience in deep learning model development and deployment;.Proficient in Python and PyTorch, and with good engineering skills.Demonstrate outstanding communication skills, clear logical thinking, and willingness to learn..Experience in C++ and CUDA is a plus.Familiarity with developing and applying OpenMMLab libraries is desirable;.Experience in developing and maintaining deep learning frameworks and systems is a plus;.Experience in teaching and learning activities in the field of computer vision is a plus..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-i-computer-science-computer-vision-deep-learning-urgenthire-10136106?jobId=jobstreet-sg-job-10136106§ionRank=1448&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Speech Recognition Scientist, Speech & Audio'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 1-Nov-22']}, {'Responsibilities': 'Build core technologies and carry out cutting-edge research in multilingual speech recognition field, e.g., acoustic and language models optimization under low source conditions.Design and deploy different speech recognition engines for supporting multilingual speech and language processing.Collaborate with linguistic experts for building data collection and labeling pipeline.Explore the next generation of speech understanding technology, and publish academic papers.', 'Qualifications': "Ph.D. or master's degree from top national or global universities, majoring in EE or CS in the related areas.Familiar with the recent advance in the field of speech recognition, e.g., mainstream algorithms related to acoustic and language models.Proficiency in one or more of the community open source tools such as Kaldi, SRILM, RNNLM and TensorFlow.Proficiency in C/C++, Python and Shell programming language, with a deep understanding of data structure and algorithm design.Self-driven, innovative, collaborative, with good communication and presentation skills.Candidates with publications in relevant international conferences (ICASSP, INTERSPEECH, ASRU) or mainstream journals are preferred."}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/speech-recognition-scientist-speech-audio-10123323?jobId=jobstreet-sg-job-10123323§ionRank=1450&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Securities Data Manager'}, {'company_name': 'Kerry Consulting Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa08,000 - SGD\xa08,300', 'Posted on 20-Oct-22']}, {'Description': '', 'Responsibilities': '', 'Skills and experiences required': 'Min. Degree in Business/Finance or related disciplines.At least 3 years of relevant working experience in managing Benchmarks and Securities data.An excellent understanding of a wide range of tradable instruments.Good understanding of front office, trade lifecycle, operations processes and data management governance frameworks.Working knowledge of data vendor systems such as Bloomberg, Reuters, RIMES, etc..Understanding of asset management enterprise data, its associated processes, systems, controls, and deliverables.Prior experience using Aladdin is desirable.Knowledge of R & Python programming skills is a plus.', 'To Apply': '', '[email\xa0protected]': []}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200307397W', 'EA No.': '16S8060', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tHeadquartered in Singapore since 2003, Kerry Consulting is Singapore\'s leading Search & Selection firm. Our consulting team is the most experienced, and amongst the largest, in the ASEAN region.\n\n\t\tWe provide services to many of the world\'s leading companies and financial institutions. We are committed to creating positive long term outcomes for both our clients and our candidates. Our focus is on "Returning the Human to Resourcing".\n\n\n\tTo find out more, please visit our website at www.kerryconsulting.com\n\n\tLicence No: 16S8060\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/securities-data-manager-10083696?jobId=jobstreet-sg-job-10083696§ionRank=1451&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Data Scientist Intern, - Growth*#UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 20-Oct-22']}, {'Responsibilities': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with Data Engineers, Data Analysts, Product and other engineers to deliver features to drive the user growth of products..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;.Knowledge of statistical data analysis such as linear models, multivariate analysis, stochastic models, sampling methods..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Internship', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth*-urgenthire-10084340?jobId=jobstreet-sg-job-10084340§ionRank=1452&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data scientist - Emerging Solutions'}, {'company_name': 'UBS AG'}, {'small_section': ['Singapore', 'Posted on 21-Oct-22']}, {'Your role': '', 'We are seeking our future colleague to:': 'Support senior data scientists to assess opportunities for AI/data analytics technologies and maximize value/impact of the function..Support the design of AI/data analytics solution architecture and work with Business and Technologies stakeholders to come up with implementation roadmap..Develop Proof of Concepts using AI/data analytics technology..Support AI/data analytics solution implementation and deployment.Develop, maintain and deploy ML & NLP Pipeline and models with high performance, quality, and stability.Develop machine learning solutions in Natural Language Processing (NLP), document classification, Named Entity Recognition (NER), topic modelling, document summarization, computational linguistics, advanced and semantic information search, extraction, induction, classification and exploration.Build awareness and assess opportunities for new technologies to maximize the value/impact of the function.Build trust and strong working relationships with Business and Technology stakeholders.Push forward the capabilities and performance of the team to strengthen and expand the service offering of the unit in alignment with business needs.', 'Your team': '', 'Your expertise': '2+ years experience in designing and developing enterprise-scale NLP solutions in two or more of: Named Entity Recognition, Document Classification, Document Summarization, Topic Modelling, Sentiment Analysis and OCR text processing.2+ years experience building ML & NLP solutions using common ML libraries and frameworks, i.e., Pandas, Sklearn, TensorFlow, SparkML, Pytorch, Keras, spaCy.Strong knowledge and working experience with NLP/ML & algorithms and models (GLMs, SVM, PCA, NB, Clustering, DTs) and their underlying computational and probabilistic statistics..Excellent statistical skills in applied regression, spatial and time series modeling..2+ years of programming experience in one or more of the following: Python, R,.Experience in setting up supervised & unsupervised learning ML/NLP models including data cleaning, data analytics, feature creation, model selection & ensemble methods, performance metrics & visualization.2+ years experience in ML/NLP development pipelines of large data sets, both structured & unstructured.2+ years of full-time experience working at a global tech or business consulting firm with a focus digital transformation and emerging technologies.Exceptional academic track record with an advanced degree.Excellent written and spoken English skills, other languages a plus.A strong team player and communicator, able to adapt and network across a global organization to work well with the team and to present well to stakeholders.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S98FC5560C', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUBS draws on its 150-year heritage to serve private, institutional and corporate clients worldwide, as well as retail clients in Switzerland. We combine our wealth management, investment banking and asset management businesses with our Swiss operations to deliver superior financial solutions.\n\t\n\t\tHeadquartered in Zurich and Basel, Switzerland, UBS has offices in more than 50 countries, including all major financial centers, and employs approximately 65,000 people. Under Swiss company law, UBS is organized as an Aktiengesellschaft, a corporation that has issued shares of common stock to investors. UBS AG is the parent company of the UBS Group (Group).\n\tThe operational structure of the Group comprises the Corporate Center and four business divisions: Wealth Management & Swiss Bank, Wealth Management Americas, Global Asset Management and the Investment Bank.\n\t\n\t\tUBS is present in all major financial centers worldwide. It has offices in over 50 countries, with about 37% of its employees working in the Americas, 37% in Switzerland, 16% in the rest of Europe and 10% in Asia Pacific.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-emerging-solutions-10087915?jobId=jobstreet-sg-job-10087915§ionRank=1453&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Your role
[{'position': 'Technology Advisory'}, {'company_name': 'Foo Kon Tan LLP'}, {'small_section': ['Central', 'Posted on 25-Oct-22']}, {'Permanent/Full-Time Position': 'Permanent/Full-Time Position.Central location (within walking distance to Raffles Place station).', 'Central location (within walking distance to Raffles Place station)': 'Attractive remuneration and staff benefits.', 'Attractive remuneration and staff benefits': '', 'Together with our professional team, you will:': '', 'Handle AI, Blockchain, Data Mining, Data Analytics, IT Audits, Digital Forensics, and Cyber Security ': 'Assist in all matters regarding related technology projects on time and within budget.Assist IT activities that involve the development of AI, blockchain, data mining, data analytics, IT Audits, Digital Forensics, and cyber security solutions.Able to work independently or as a team.Willing to travel overseas (where applicable).', 'Qualifications:': 'Analytical, self-driven and a team leader & player.', 'via Apply Now': []}, {'Career Level': 'Manager', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Network/Sys/DB Admin', 'Registration No.': 'T10LL0002B', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '28 days', 'Industry': 'Accounting / Audit / Tax Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Raffles Place'}, {'Company Overview': 'Foo Kon Tan, based in Singapore and established since 1968, it is the 7th largest accounting firm in Singapore, well recognised and trusted in the business community. We help clients seize growth opportunities and succeed in the changing business and regulatory environments.'}, {'url': 'http://www.jobstreet.com.sg/en/job/technology-advisory-10011701?jobId=jobstreet-sg-job-10011701§ionRank=1454&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Permanent/Full-Time Position
[{'position': 'Big Data Software Engineer #UrgentHire'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': 'Work with product managers and data analysts to design data-related products..Communicate with stakeholders to collect data requirements and drive related projects..Design the architecture for systems, services and pipelines to ensure high stability, reliability and data consistency..Work closely with multiple cross-functional teams to deliver high quality work in rapid product development..', 'Qualifications': 'BS/MS Degree in Computer Science or related major..Experienced working with big data technologies such as Hadoop, Hive, Spark, etc..Familar with common SQL/NoSQL databases such as MySQL, Redis, etc..Proficient in at least one of the following languages: Go, Python, Java, C++..Deep understanding of computer architectures, data structures and algorithms..Have good team communication and collaboration skills..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-software-engineer-urgenthire-10144647?jobId=jobstreet-sg-job-10144647§ionRank=1455&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Lecturer/Senior Lecturer in Data Analytics (R00009474) #JobsThatMatter #Immediate'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 6-Nov-22']}, {'Requirements:': 'Applicants should have extensive industry and/or academic experience, a passion for teaching and preferably possess a Masters’ degree in information systems, computer science, statistics, or a closely related discipline, with the relevant professional qualifications..We are keen on applicants with strong industry experience in implementing data analytics and artificial intelligence solutions. Mastery in programming languages such as R, SAS, or Python is necessary. Candidates should be able to deploy statistical as well as machine learning analytical solutions using these tools..Candidates should demonstrate teaching excellence at the undergraduate/graduate level, and are able to engage in curriculum development and course administration for undergraduate and graduate analytics courses..Candidates should have a passion for teaching, excel at teaching and work closely with students. Candidates must have the versatility to teach multiple courses at the undergraduate and graduate levels. Lecturers and Senior Lecturers are expected to excel at teaching and service, work closely with students, and contribute to practice-based research and development of courses that leverage technology-enabled learning. Appointment terms are for three years. As we are expanding our course offerings, we seek versatile individuals who can teach courses at the undergraduate and graduate levels..NTU offers an internationally-competitive salary commensurate with the candidate’s qualifications and experience..', 'Application:': []}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/lecturer-senior-lecturer-in-data-analytics-r00009474-jobsthatmatter-immediate-10138595?jobId=jobstreet-sg-job-10138595§ionRank=1456&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Requirements:
[{'position': 'Project Officer, (Microbiology, Molecular Biology) R00010604'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Job Description:': 'Research involves working on protein purification and enzyme assays.', 'Job Requirements:': 'BSc in Biological Sciences or equivalent.Background in the fields of microbiology, molecular biology, with experience in research work on protein purification and enzyme assays.Long-time technical experiences and knowledge in the areas of cloning, expression, protein purification and enzymatic assays.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-microbiology-molecular-biology-r00010604-10054920?jobId=jobstreet-sg-job-10054920§ionRank=1457&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Research Fellow, - (Computer Science), - [R00007173] #JobsThatMatter #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Conduct research and development related to Machine Learning and Deep Learning and spatial-temporal data mining.', 'Job Requirements:': 'PhD in Computer Science or related disciplines.At least 2 of experience in machine learning and spatial-temporal data mining and data manment.Good knowledge of and machine learning applications.Excellent publication records.Good spoken and written English.Strong research ability.Strong leadership quality.Good interpersonal skills.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-%5Br00007173%5D-jobsthatmatter-urgenthire-10141990?jobId=jobstreet-sg-job-10141990§ionRank=1459&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data scientist - Emerging Solutions #Immediate'}, {'company_name': 'UBS AG'}, {'small_section': ['Singapore', 'Posted on 21-Oct-22']}, {'Your role': '', 'We are seeking our future colleague to:': 'Support senior data scientists to assess opportunities for AI/data analytics technologies and maximize value/impact of the function..Support the design of AI/data analytics solution architecture and work with Business and Technologies stakeholders to come up with implementation roadmap..Develop Proof of Concepts using AI/data analytics technology..Support AI/data analytics solution implementation and deployment.Develop, maintain and deploy ML & NLP Pipeline and models with high performance, quality, and stability.Develop machine learning solutions in Natural Language Processing (NLP), document classification, Named Entity Recognition (NER), topic modelling, document summarization, computational linguistics, advanced and semantic information search, extraction, induction, classification and exploration.Build awareness and assess opportunities for new technologies to maximize the value/impact of the function.Build trust and strong working relationships with Business and Technology stakeholders.Push forward the capabilities and performance of the team to strengthen and expand the service offering of the unit in alignment with business needs.', 'Your team': '', 'Your expertise': '2+ years experience in designing and developing enterprise-scale NLP solutions in two or more of: Named Entity Recognition, Document Classification, Document Summarization, Topic Modelling, Sentiment Analysis and OCR text processing.2+ years experience building ML & NLP solutions using common ML libraries and frameworks, i.e., Pandas, Sklearn, TensorFlow, SparkML, Pytorch, Keras, spaCy.Strong knowledge and working experience with NLP/ML & algorithms and models (GLMs, SVM, PCA, NB, Clustering, DTs) and their underlying computational and probabilistic statistics..Excellent statistical skills in applied regression, spatial and time series modeling..2+ years of programming experience in one or more of the following: Python, R,.Experience in setting up supervised & unsupervised learning ML/NLP models including data cleaning, data analytics, feature creation, model selection & ensemble methods, performance metrics & visualization.2+ years experience in ML/NLP development pipelines of large data sets, both structured & unstructured.2+ years of full-time experience working at a global tech or business consulting firm with a focus digital transformation and emerging technologies.Exceptional academic track record with an advanced degree.Excellent written and spoken English skills, other languages a plus.A strong team player and communicator, able to adapt and network across a global organization to work well with the team and to present well to stakeholders.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': 'S98FC5560C', 'Company Size': '201 - 500 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services', 'Benefits & Others': 'Dental, Medical, Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\tUBS draws on its 150-year heritage to serve private, institutional and corporate clients worldwide, as well as retail clients in Switzerland. We combine our wealth management, investment banking and asset management businesses with our Swiss operations to deliver superior financial solutions.\n\t\n\t\tHeadquartered in Zurich and Basel, Switzerland, UBS has offices in more than 50 countries, including all major financial centers, and employs approximately 65,000 people. Under Swiss company law, UBS is organized as an Aktiengesellschaft, a corporation that has issued shares of common stock to investors. UBS AG is the parent company of the UBS Group (Group).\n\tThe operational structure of the Group comprises the Corporate Center and four business divisions: Wealth Management & Swiss Bank, Wealth Management Americas, Global Asset Management and the Investment Bank.\n\t\n\t\tUBS is present in all major financial centers worldwide. It has offices in over 50 countries, with about 37% of its employees working in the Americas, 37% in Switzerland, 16% in the rest of Europe and 10% in Asia Pacific.\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-emerging-solutions-immediate-10087658?jobId=jobstreet-sg-job-10087658§ionRank=1460&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Your role
[{'position': 'Senior Research Scientist (Computer/Electrical) [R00005119] #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Play a leading role in both research and development of novel and/or enhanced assistive technologies to improve the safety of fleet drivers by (i) categorizing their driving behaviors through profiling; (ii) monitoring their well-being; and (iii) assessing driving risks and reporting to fleet manager/operator and/or drivers.', 'Job Requirements:': 'PhD degree in Computer/Electrical/Mechatronics Science or Statistics.Minimum 6 years of experience in software or hardware development, integration and refinement.Solid application background in AI for computer vision and/or data analytics.Strong project management skills.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '6 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-computer-electrical-%5Br00005119%5D-urgenthire-10133248?jobId=jobstreet-sg-job-10133248§ionRank=1461&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'NLP Scientist, AI Lab #Urgent'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 29-Oct-22']}, {'Responsibilities': [], 'About The Team': 'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..', 'Qualifications': "Bachelor's degree or above, majoring in Computer Science, or related fields.Rich research experience in but not limited to the following areas (as main authors of published papers at ACL, EMNLP, NIPS, ICML, etc.):.Syntactic analysis.Language generation.Knowledge and inference.Reinforcement learning.Deep learning and representation learning.Highly competent in algorithms and programming, prefer winners in ACMICPC, NOI/IOI and Kaggle;.Ability to work and collaborate well with team members;.Ability to work independently.."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/nlp-scientist-ai-lab-urgent-10115545?jobId=jobstreet-sg-job-10115545§ionRank=1462&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Analyst (Ref 24823)'}, {'company_name': 'JOBLINE RESOURCES PTE. LTD.'}, {'small_section': ['Central', 'Posted on 14-Oct-22']}, {}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199407989D', 'EA No.': '12C6060', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '30 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tJobline has been supporting clients in a variety of industries and business functions to attract and talent hunt candidates of capabilities. Jobline offers and delivers a wide variety of customised HR services, including recruitment, contract staffing & payroll management, to effectively manage human resource responsibilities.\n\n\tJobline has deep-seated recruitment experience in the industry built from many years of field-proven methodology and placements. Our team is committed to fulfil every search requisition, combined with detailed job analysis and professional consulting for sustainable results.'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-ref-24823-10065747?jobId=jobstreet-sg-job-10065747§ionRank=1463&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
[{'position': 'Big Data Lead [R&D Engineer 6, Software] #Urgent #Seekbetter #UrgentHire'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 6-Nov-22']}, {'Responsibilities:': 'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..Experience in Architecture, design, implementation, and deployment of high volume, highly available, cloud-based systems would be a plus.Hands on experience in Java/Scala/Python or any programming language software development skills.Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..A proactive and eager nature for tackling new challenge.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-lead-%5Br-d-engineer-6-software%5D-urgent-seekbetter-urgenthire-10139385?jobId=jobstreet-sg-job-10139385§ionRank=1464&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Research Scientist x 2 (MNC/ Up $5500 + AWS + VB) - JN3'}, {'company_name': 'MCI Career Services Pte Ltd'}, {'small_section': ['West', 'SGD\xa05,000 - SGD\xa05,500', 'Posted on 18-Oct-22']}, {'Job Summary:': '', '·\xa0\xa0\xa0\xa0\xa0\xa0\xa0Company background: MNC, Life Science company': '', '·\xa0\xa0\xa0\xa0\xa0\xa0\xa0Salary range: up to S$5500 (dep on exp) + AWS +VB': '', '·\xa0\xa0\xa0\xa0\xa0\xa0\xa03 years contract role': '', '·\xa0\xa0\xa0\xa0\xa0\xa0\xa0Working Location: Buono Vista': '', 'Job Responsibilities:': 'Expertise in molecular biology techniques like DNA/RNA manipulation and amplification..Expertise/Experience in aptamers or antibodies..Experience in point of care devise or cartridge development..Experience in microbiology and cell culture techniques such as bacteria, fungi, or virus isolation..Perform data analyses & interpretation, and report writing..Skills in bioinformatics analysis would be advantages..', 'APPLY NOW BUTTON': '', 'Yeo Hui Wen (Joan)': '', 'Registration Number: R22108956': '', 'EA Licence No: 06C2859 (MCI Career Services Pte Ltd)': []}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Engineering, Mechanical', 'Registration No.': '200701947W', 'EA No.': '06C2859', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '15 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\tWith over 100 professional employees, our consultants have been managing over 2,500 monthly advertisement and successfully matched 5,000 over job placement yearly. We are here to connect, source and deliver to meet your needs.\n\n\n\t\tWe have 4 subsidiaries; our companies strive to provide support to people and organizations in realizing their true potential that would enhance businesses with the right individual. We believe that we will only provide you with the best services because we are not here just to help but also to make companies interesting!\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-scientist-x-2-mnc-up-%245500-aws-vb-jn3-10078938?jobId=jobstreet-sg-job-10078938§ionRank=1465&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Job Summary:
[{'position': 'Research Fellow (Computer Science/Software Engineering) (R00009464) #Immediate #JobsThatMatter-#JobsThatMatter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 6-Nov-22']}, {'Key Responsibilities:': 'Responsible for conducting research on trustworthy and privacy-preserving deep learning algorithms and systems development and implementation.Responsible for conducting on deep learning IP protection with watermarking and fingerprinting.Responsible for writing research papers based on research results.', 'Job Requirements:': 'PhD degree in Computer Science, Software Engineering, Engineering, Mathematics, or related discipline.Research experience in cyber security, applied cryptography, artificial intelligence, and related areas.Publication record in top-tier venue related to computer science, security, networking and cryptography is a plus.Excellent communication and writing skills.'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Doctorate (PhD)", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-software-engineering-r00009464-immediate-jobsthatmatter-jobsthatmatter-10139257?jobId=jobstreet-sg-job-10139257§ionRank=1466&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Research Fellow (Coral Reef Geomorphology) [R00010205]'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 27-Oct-22']}, {'Job Responsibilities': 'Conduct world-class research on coral geomorphology, paleoecology and paleoenvironments.Lead the collection of modern and fossil coral reefs (e.g. reef and coral coring) in Southeast Asia.Manage overseas fieldwork logistics and international collaborations.Undertake labwork relating to geomorphology, geochronology and paleoecology (e.g. coral identification, sedimentology, geochemistry).Be familiar with dating techniques (e.g. U/Th, 14C).Undertake data analysis and prepare manuscripts for journal publication.Contribute to writing applications for external grant funding.Perform other relevant research tasks assigned by the Principal Investigator.', 'Job Requirements': 'PhD in Marine Science, Geography, Geoscience, or related field.Proven experience collecting reef and coral cores and/or sampling fossil coral reefs.Experience conducting tropical marine fieldwork, including using SCUBA (PADI Rescue Diver qualification desirable).Prior labwork experience (e.g., sediment analysis, microscopy, geochronology).Advanced understanding of coral reef geomorphology.Interest and willingness to learn new skills and software for analytical analysis.Ability to travel overseas, sometimes to remote locations.Knowledge of Southeast Asia coral reefs (advantageous).'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree, Doctorate (PhD)", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-coral-reef-geomorphology-%5Br00010205%5D-10046433?jobId=jobstreet-sg-job-10046433§ionRank=1467&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Research Fellow, (Computer Science) - (R00008247) #Seekbetter'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Conduct research and development in Artificial Intelligence, Machine Learning and Deep Learning as applied to Computer Vision and Anomaly Detection.Generate Intellectual property in the form of Technical disclosures and patents.Publish research papers.Provide research leadership as well as mentorship to the project team.Manage research project.', 'Job Requirements:': 'PhD in Computer Science or related disciplines.At least one year of experience in machine learning and deep learning or related areas.Good knowledge of Pytorch and Tensorflow.Good spoken and written English.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-fellow-computer-science-r00008247-seekbetter-10142208?jobId=jobstreet-sg-job-10142208§ionRank=1468&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Scientist - #182251 #JobsThatMatter'}, {'company_name': 'Credit Suisse (Singapore) Limited'}, {'small_section': ['Singapore', 'Posted on 21-Oct-22']}, {'Your field of responsibility': '', 'As part of the role your responsibilities include:': 'Work closely with Business Users, Product Owners, Business Engineers, Data Scientists, and technology team to understand data science and machine learning requirements..Design & build AI/ML platform to automate predictive models and run data science use cases at scale.Work closely with Data Scientist to deploy data science prototypes in production.Monitor the algorithms and ensuring that they generate accurate results..Documenting machine learning processes..Keeping abreast of developments in machine learning..Responsible to ensure that AI/ ML solutions meets bank-wide ML modelling guidelines and standards.', 'Your future colleagues': '', 'Your skills and experience': '', 'Must have skills:': 'Advanced degree in computer science, data science, mathematics, statistics, physics or a related field..Extensive data modeling and data architecture skills.Solid programming skills in Python, R or Java, hands on experience in SQL & PL/SQL, ETL tool (PowerCentre Informatica) and Linux and Control-M knowledge is plus..Knowledge of Hadoop (Kafka, Spark, Impala, Hive)..Extensive knowledge of ML frameworks, libraries, data structures, data modeling, and software architecture..In-depth knowledge of mathematics, statistics, and algorithms..Ability to develop, monitor, debug and maintain a CI/CD pipeline that feeds into a production deployment..Good command and experience in building and maintaining Data Science and Business Intelligence applications..Excellent analytical and problem-solving abilities..', 'Nice to have skills:': 'Prior experience deploying applications on a cloud environment..Experience with Containerization.Ability to work in a SCRUM team and focus on delivery as well as concurrently on a number of different topics and to be able to change focus quickly as needed..', 'Your new employer': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197702363D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\tThe Credit Suisse Group purpose is at the core of everything we do. It underpins the value we create and has powered our progress for more than 160 years. It captures the essence of 'why' we exist as an organization. It motivates us when we come to work every day and serves as our North Star when we make decisions. Ultimately, it serves to define who we are and what we should be doing for our employees, clients and stakeholders.\n\tOur strategy builds on Credit Suisse's core strengths: our position as a leading wealth manager with strong global investment banking capabilities and our strong presence in our home market of Switzerland. We seek to follow a balanced approach to wealth management, aiming to capitalize on both the large pool of wealth within mature markets as well as the significant growth in wealth in Asia Pacific and other emerging markets.\n\tWe serve our clients through three regionally focused divisions: Swiss Universal Bank, International Wealth Management and Asia Pacific. These regional businesses are supported by an integrated global Investment Bank. Our Asset Management business is managed as a separate division, emphasizing the strategic importance of the asset management business for the bank and its clients.\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-182251-jobsthatmatter-10089863?jobId=jobstreet-sg-job-10089863§ionRank=1469&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Your field of responsibility
[{'position': 'Project Officer (Genetics and Chemistry) (R00009460) -#UrgentHire #WorkNow'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'Procurement and maintenance of lab inventory.Perform of bacterial genetic experiments to make genetic deletion and overexpression strains.Perform cloning, protein purification and analysis of enzymatic functions.', 'Job Requirements': 'Bachelor Degree in Chemistry and Biochemistry, must have at least one year of relevant research experience. Candidates with Master Degree in relevant field will be considered first.Has strong grasp of knowledge in organic chemistry, biochemistry and genetics.Able to perform molecular biology and genetic experiments independently, such as making gene knockout, overexpression etc.Able to perform protein biochemistry experiments including cloning, protein overexpression, and purification.Able to independently perform in vitro enzymatic kinetic measurement, including developing liquid-chromatography mass spectrometry-based assays.Demonstrate strong passion, self-motivation, and a hardworking attitude for basic research.A self-starter and in learning new skills and techniques.Strong communication, organizational and interpersonal skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/project-officer-genetics-and-chemistry-r00009460-urgenthire-worknow-10137100?jobId=jobstreet-sg-job-10137100§ionRank=1470&token=0~e8494e44-fcb5-4741-a1e3-ccde84083eac&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Machine Learning Engineer - Recommendation'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Responsibilities': 'Build industry leading recommendation system; develop highly scalable classifiers and tools leveraging machine learning;.Understand product objectives and machine learning techniques; improve model and recommendation strategy;.Understand user behavior and apply ML algorithms to optimize content consumption and production experience;.Understand content security strategy and apply ML algorithms to improve content audit process;..Work with cross functional teams to grow ByteDance product in important regional markets..', 'Qualifications': "Bachelor's degree in computer science or a related technical discipline, with at least 2 years of related work experience;.Solid experience with data structures or algorithms;.Software development experience through hands on coding in a general purpose programming language;.Experience in one or more of the following areas: machine learning, recommendation systems, data mining or other related areas;.Strong communication and teamwork skills;.Passion about technologies and solving challenging problems..", 'Preferred Qualification': 'Minimum 3 years relevant work experience from a large-scale internet business.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-engineer-recommendation-10131748?jobId=jobstreet-sg-job-10131748§ionRank=1472&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Manager of Data Protection - Ref:MH'}, {'company_name': 'JOBSTUDIO PTE LTD'}, {'small_section': ['Singapore', 'Posted on 21-Oct-22']}, {'Job Responsibilities': "Develop good understanding of the institution's operating functions and process workflows, via continuous risk assessments and testing of internal controls during review of processes, to assist in the identification of control gaps and opportunities for improvement.Identify, design and develop data analytics routines to support compliance and process reviews.Assist the Data Protection Officer to oversee the data protection responsibilities within the institution and ensure compliance with PDPA and other relevant privacy regulations.Formulate strategies and develop initiatives to promote a positive internal control culture.Assess impact of government data policies and related regulations such as PDPA to business operations. Conduct scan and create/update policies and processes to ensure compliance.Provide guidance and leadership to junior team member(s).Perform ad-hoc projects, investigations and administrative duties, where required.", 'Our Requirements': 'Degree in any discipline.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201021424D', 'EA No.': '10C4754', 'Company Size': '1 - 50 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': "\n\nWhy JobStudio?\n\n1. We Genuinely Care About You\n\t\tAt JobStudio, we care about how you grow in your career. We make it our priority to understand you, your needs as well as ambitions. While monetary rewards are important, we know it is more than that. A job is about colleagues, opportunities for growth and inspiration. We try to stand in your shoes and understand what you truly want from a job and in life.\n\n2. Rely on a Strong Network\n\t\tOver the years, we have acquired experience and expertise in many sectors. As a result, we have built strong relationships with major companies, providing us with the latest job openings. More importantly, we know how you work and how you can fit into each company's culture. If you are a professional, JobStudio is able to find the right job for you.\n\n\n3. You Deserve the Best\n\t\tWithin a short span of seven years, we have made a name for ourselves in the staffing and executive search industry. We hold about 70% of the healthcare recruitment sector. As a testimony to our stellar growth, our founder was awarded with Entrepreneur of the Year Award in 2014. We are confident that we can find the best job for you because we are the best in recruitment.\n\n\nOur Mission\n\t\tOur mission is to forge strong relationships by genuinely caring for our candidates and clients.\n\n\nOur Vision\n\t\tBuilding Careers & Growing Companies\n\n\nOur E.T.H.I.C.S Values\n\n\t\tEmpathy: Taking a leaf out of your book, we will stand in your shoes.\n\n\t\tTrustworthiness: You can trust us like a friend.\n\n\t\tHard Work: We will work hard for you, going that extra mile always.\n\n\t\tInnovation: We will continue to look at ways to improve ourselves so that we can serve you better.\n\n\t\tCooperation: We do not just work for you, we work with you.\n\n\t\tSuccess: Ultimately, we want you to succeed in life!\n\n\t\tPDPA disclaimer: By submission of your application or resume\xa0 to JobStudio, you will be deem to have consented to JobStudio collecting, using, retaining and / or disclosing your personal information to prospective employers for their consideration.\xa0\xa0\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/manager-of-data-protection-ref%3Amh-10086353?jobId=jobstreet-sg-job-10086353§ionRank=1473&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Machine Learning / Computer Vision Specialist'}, {'company_name': 'Refract Technologies Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Machine Learning / Computer\xa0Vision\xa0Specialist': '', 'About Us': '', 'The\xa0Role': '', 'Machine Learning/Computer\xa0Vision\xa0Specialist\xa0': '', 'Refract Technologies': '', 'Responsibilities': 'Develop\xa0and\xa0understand image analysis algorithms and SLAM algorithms..Build performant mobile\xa0based\xa0algorithms..Create algorithms defining player KPIs\xa0and\xa0game-event detection\xa0in\xa0real time..Design\xa0and\xa0create platforms for image processing\xa0and\xa0visualisation..Prepare clear documentation\xa0and\xa0prepare data for training, retraining\xa0and\xa0customization\xa0of\xa0machine learning models internally..Draft clear training documents for\xa0the\xa0machine learning models for external parties\xa0to\xa0follow..Develop Deep Learning models\xa0to\xa0solve problems..Implement full software development: integration, debugging, configuring, testing\xa0and\xa0deployment..Prepare documentation such as technical reports, product manuals, etc..Understand dataflow programming..Participate\xa0in\xa0planning, task estimation, requirements gathering,\xa0and\xa0tracking\xa0of\xa0work.Understand\xa0the\xa0current processes\xa0and\xa0work\xa0within\xa0the\xa0constraints\xa0of\xa0the\xa0platforms.Develop quick prototypes to test\xa0the\xa0viability\xa0of\xa0the\xa0different models..Maintain a\xa0strong\xa0focus on\xa0the\xa0performance\xa0of\xa0the\xa0model,\xa0not\xa0just\xa0the\xa0end-results..', 'Traits We’re\xa0Looking\xa0For': 'Ability\xa0to\xa0multitask effectively\xa0in\xa0a dynamic\xa0environment\xa0..Strong\xa0time-management\xa0and\xa0organisation skills for coordinating\xa0multiple\xa0initiatives, priorities\xa0and\xa0implementations\xa0of\xa0new\xa0technology\xa0and\xa0products into very complex projects..Strong\xa0written\xa0and\xa0oral communications skills with\xa0the\xa0ability\xa0to\xa0effectively collaborate with management\xa0and\xa0engineering..Take a consumer-first\xa0based\xa0approach\xa0to\xa0problem-solving..Inquisitive\xa0and\xa0always pushing boundaries with regards\xa0to\xa0technology\xa0to\xa0make our products\xa0the\xa0best they can be..', 'Skills\xa0and\xa0Experience Required': 'Degree\xa0in\xa0computer\xa0vision\xa0(CV), machine learning, pattern recognition,\xa0or\xa0related technical fields..Strong\xa0mathematical background\xa0in\xa0Linear Algebra\xa0and\xa0Computer Analysis..Good\xa0understanding\xa0of\xa0SLAM Algorithms..Strong\xa0skills\xa0and\xa0understanding\xa0of\xa0state\xa0of\xa0the\xa0art NN architectures, techniques\xa0and\xa0principles..3+\xa0years\xa0of\xa0work-related experience\xa0in\xa0software development\xa0or\xa0Machine Learning\xa0or\xa0high-performance computing ..Experience\xa0working\xa0on applied CV projects. Examples include (but\xa0are\xa0not\xa0limited\xa0to) optical character recognition (OCR), object detection\xa0and\xa0recognition, video analytics, image classification, feature/colour\xa0spaces, algorithms, filters, 3D Geometric Algebra/Matrice, non-linear optimization,\xa0and\xa0visual question answering (VQA) etc..Good\xa0understanding\xa0of\xa0state-of-the-art deep learning\xa0and\xa0computer\xa0vision\xa0techniques..Experience\xa0in\xa0developing supervised\xa0and\xa0unsupervised learning..Experience with CNN, RNN, supervised\xa0and\xa0unsupervised learning, optimization techniques.Experience with traditional/legacy computer\xa0vision\xa0techniques (e.g. OpenCV)\xa0and\xa0be\xa0able\xa0to\xa0make solid recommendations on techniques\xa0based\xa0on pros/cons analysis..Experience\xa0in\xa0mobile development\xa0and\xa0has deployed models onto mobile devices..', 'Big Plus': 'Experience with one\xa0or\xa0more deep learning frameworks such as Caffe, Theano, Torch, TensorFlow..Has prior experience developing or utilising ORB-SLAM..'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201832034C', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '1 day', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'Refract Technologies is a family of 60+ members and growing. We are engineers, game producers, artists and entrepreneurs, all with deep passion and experience in the gaming and technology industries. We are here as veterans from the likes of Electronic Arts, Ubisoft, Unity, IGG, Gumi, XII Braves, Creative Technologies & more.Our vision is to extend human experience beyond reality through innovations in gaming and entertainment. We are game changers.'}, {'url': 'http://www.jobstreet.com.sg/en/job/machine-learning-computer-vision-specialist-10120219?jobId=jobstreet-sg-job-10120219§ionRank=1474&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Machine Learning / Computer Vision Specialist
[{'position': 'Research Associate - (Visual Analytics) - (R00007721) #Immediate -#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 5-Nov-22']}, {'Job Responsibilities': 'The Research Associate will conduct research on Computer Vision, Image Processing, and Multimedia Forensics for security and surveillance applications. The roles of this position include:.Research into Visual Search and Video Analytics related work, including object detection, person re-identification (reID) & tracking, and search & retrieval..Creation of large-scale datasets for research and algorithm evaluation.Be part of a research team in the execution of funded research projects.Assist in drafting of proposals for research grants in the above areas.', 'Job Requirements': 'Masters degree in Engineering, Computer Science, Data Science & Analytics, Mathematics, or related field.Research experience in Computer Vision, Pattern Recognition, Deep Learning, and working with large-scale datasets.Experience with object detection & segmentation, person re-identification, and domain adaptation & generalisation is essential.Experience with scripting with game engines (eg. Grand Theft Auto, Unity) and the creation of synthetic datasets would be highly advantageous..Proficiency in software such as PyTorch, TensorFlow, OpenCV, and programming languages such as C/C++ and Python, as well as Linux (eg. Ubuntu) is essential..Knowledge of GPU computing, CUDA programming, optimization (eg. with TensorRT), and industry experience in engineering software development would be an advantage..Good inter-personal skills, with the ability to work with people from varied backgrounds.Proficient in English.'}, {'Career Level': 'Junior Executive', 'Qualification': "Master's Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-visual-analytics-r00007721-immediate-urgenthire-10136317?jobId=jobstreet-sg-job-10136317§ionRank=1475&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Data Scientist #182251 #Urgent'}, {'company_name': 'Credit Suisse (Singapore) Limited'}, {'small_section': ['Singapore', 'Posted on 20-Oct-22']}, {'Your field of responsibility': '', 'As part of the role your responsibilities include:': 'Work closely with Business Users, Product Owners, Business Engineers, Data Scientists, and technology team to understand data science and machine learning requirements..Design & build AI/ML platform to automate predictive models and run data science use cases at scale.Work closely with Data Scientist to deploy data science prototypes in production.Monitor the algorithms and ensuring that they generate accurate results..Documenting machine learning processes..Keeping abreast of developments in machine learning..Responsible to ensure that AI/ ML solutions meets bank-wide ML modelling guidelines and standards.', 'Your future colleagues': '', 'Your skills and experience': '', 'Must have skills:': 'Advanced degree in computer science, data science, mathematics, statistics, physics or a related field..Extensive data modeling and data architecture skills.Solid programming skills in Python, R or Java, hands on experience in SQL & PL/SQL, ETL tool (PowerCentre Informatica) and Linux and Control-M knowledge is plus..Knowledge of Hadoop (Kafka, Spark, Impala, Hive)..Extensive knowledge of ML frameworks, libraries, data structures, data modeling, and software architecture..In-depth knowledge of mathematics, statistics, and algorithms..Ability to develop, monitor, debug and maintain a CI/CD pipeline that feeds into a production deployment..Good command and experience in building and maintaining Data Science and Business Intelligence applications..Excellent analytical and problem-solving abilities..', 'Nice to have skills:': 'Prior experience deploying applications on a cloud environment..Experience with Containerization.Ability to work in a SCRUM team and focus on delivery as well as concurrently on a number of different topics and to be able to change focus quickly as needed..', 'Your new employer': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197702363D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\tThe Credit Suisse Group purpose is at the core of everything we do. It underpins the value we create and has powered our progress for more than 160 years. It captures the essence of 'why' we exist as an organization. It motivates us when we come to work every day and serves as our North Star when we make decisions. Ultimately, it serves to define who we are and what we should be doing for our employees, clients and stakeholders.\n\tOur strategy builds on Credit Suisse's core strengths: our position as a leading wealth manager with strong global investment banking capabilities and our strong presence in our home market of Switzerland. We seek to follow a balanced approach to wealth management, aiming to capitalize on both the large pool of wealth within mature markets as well as the significant growth in wealth in Asia Pacific and other emerging markets.\n\tWe serve our clients through three regionally focused divisions: Swiss Universal Bank, International Wealth Management and Asia Pacific. These regional businesses are supported by an integrated global Investment Bank. Our Asset Management business is managed as a separate division, emphasizing the strategic importance of the asset management business for the bank and its clients.\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-182251-urgent-10085863?jobId=jobstreet-sg-job-10085863§ionRank=1477&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Your field of responsibility
[{'position': 'Data Scientist - #182251#Urgent'}, {'company_name': 'Credit Suisse (Singapore) Limited'}, {'small_section': ['Singapore', 'Posted on 20-Oct-22']}, {'Your field of responsibility': '', 'As part of the role your responsibilities include:': 'Work closely with Business Users, Product Owners, Business Engineers, Data Scientists, and technology team to understand data science and machine learning requirements..Design & build AI/ML platform to automate predictive models and run data science use cases at scale.Work closely with Data Scientist to deploy data science prototypes in production.Monitor the algorithms and ensuring that they generate accurate results..Documenting machine learning processes..Keeping abreast of developments in machine learning..Responsible to ensure that AI/ ML solutions meets bank-wide ML modelling guidelines and standards.', 'Your future colleagues': '', 'Your skills and experience': '', 'Must have skills:': 'Advanced degree in computer science, data science, mathematics, statistics, physics or a related field..Extensive data modeling and data architecture skills.Solid programming skills in Python, R or Java, hands on experience in SQL & PL/SQL, ETL tool (PowerCentre Informatica) and Linux and Control-M knowledge is plus..Knowledge of Hadoop (Kafka, Spark, Impala, Hive)..Extensive knowledge of ML frameworks, libraries, data structures, data modeling, and software architecture..In-depth knowledge of mathematics, statistics, and algorithms..Ability to develop, monitor, debug and maintain a CI/CD pipeline that feeds into a production deployment..Good command and experience in building and maintaining Data Science and Business Intelligence applications..Excellent analytical and problem-solving abilities..', 'Nice to have skills:': 'Prior experience deploying applications on a cloud environment..Experience with Containerization.Ability to work in a SCRUM team and focus on delivery as well as concurrently on a number of different topics and to be able to change focus quickly as needed..', 'Your new employer': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197702363D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\tThe Credit Suisse Group purpose is at the core of everything we do. It underpins the value we create and has powered our progress for more than 160 years. It captures the essence of 'why' we exist as an organization. It motivates us when we come to work every day and serves as our North Star when we make decisions. Ultimately, it serves to define who we are and what we should be doing for our employees, clients and stakeholders.\n\tOur strategy builds on Credit Suisse's core strengths: our position as a leading wealth manager with strong global investment banking capabilities and our strong presence in our home market of Switzerland. We seek to follow a balanced approach to wealth management, aiming to capitalize on both the large pool of wealth within mature markets as well as the significant growth in wealth in Asia Pacific and other emerging markets.\n\tWe serve our clients through three regionally focused divisions: Swiss Universal Bank, International Wealth Management and Asia Pacific. These regional businesses are supported by an integrated global Investment Bank. Our Asset Management business is managed as a separate division, emphasizing the strategic importance of the asset management business for the bank and its clients.\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-182251-urgent-10085422?jobId=jobstreet-sg-job-10085422§ionRank=1478&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Your field of responsibility
[{'position': 'Data Scientist - #182251#Urgent#JobsThatMatter'}, {'company_name': 'Credit Suisse (Singapore) Limited'}, {'small_section': ['Singapore', 'Posted on 21-Oct-22']}, {'Your field of responsibility': '', 'As part of the role your responsibilities include:': 'Work closely with Business Users, Product Owners, Business Engineers, Data Scientists, and technology team to understand data science and machine learning requirements..Design & build AI/ML platform to automate predictive models and run data science use cases at scale.Work closely with Data Scientist to deploy data science prototypes in production.Monitor the algorithms and ensuring that they generate accurate results..Documenting machine learning processes..Keeping abreast of developments in machine learning..Responsible to ensure that AI/ ML solutions meets bank-wide ML modelling guidelines and standards.', 'Your future colleagues': '', 'Your skills and experience': '', 'Must have skills:': 'Advanced degree in computer science, data science, mathematics, statistics, physics or a related field..Extensive data modeling and data architecture skills.Solid programming skills in Python, R or Java, hands on experience in SQL & PL/SQL, ETL tool (PowerCentre Informatica) and Linux and Control-M knowledge is plus..Knowledge of Hadoop (Kafka, Spark, Impala, Hive)..Extensive knowledge of ML frameworks, libraries, data structures, data modeling, and software architecture..In-depth knowledge of mathematics, statistics, and algorithms..Ability to develop, monitor, debug and maintain a CI/CD pipeline that feeds into a production deployment..Good command and experience in building and maintaining Data Science and Business Intelligence applications..Excellent analytical and problem-solving abilities..', 'Nice to have skills:': 'Prior experience deploying applications on a cloud environment..Experience with Containerization.Ability to work in a SCRUM team and focus on delivery as well as concurrently on a number of different topics and to be able to change focus quickly as needed..', 'Your new employer': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197702363D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\tThe Credit Suisse Group purpose is at the core of everything we do. It underpins the value we create and has powered our progress for more than 160 years. It captures the essence of 'why' we exist as an organization. It motivates us when we come to work every day and serves as our North Star when we make decisions. Ultimately, it serves to define who we are and what we should be doing for our employees, clients and stakeholders.\n\tOur strategy builds on Credit Suisse's core strengths: our position as a leading wealth manager with strong global investment banking capabilities and our strong presence in our home market of Switzerland. We seek to follow a balanced approach to wealth management, aiming to capitalize on both the large pool of wealth within mature markets as well as the significant growth in wealth in Asia Pacific and other emerging markets.\n\tWe serve our clients through three regionally focused divisions: Swiss Universal Bank, International Wealth Management and Asia Pacific. These regional businesses are supported by an integrated global Investment Bank. Our Asset Management business is managed as a separate division, emphasizing the strategic importance of the asset management business for the bank and its clients.\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-182251-urgent-jobsthatmatter-10089545?jobId=jobstreet-sg-job-10089545§ionRank=1479&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Your field of responsibility
[{'position': 'Research Associate - (Microbiology / Biotechnology / Bioengineering)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 26-Oct-22']}, {'Research Associate (Microbiology/Biotechnology/Bioengineering/Molecular Biology/Biological Science/Biochemistry)': '', 'Key Responsibilities:': 'Work on genetic circuits in cellulose producing bacteria for the production of key intermediates to increase cellulose production.Plan and execute the experiments with to achieve the set goals.Assist other senior staff members as required.Record the outcome of experiments, analyze data, and present data for scientific communications.Write reports to summarize the findings of the project.', 'Job Requirements': "Master's degree in microbiology, biotechnology, bioengineering, molecular biology, biological science, biochemistry or a related field.Good knowledge of analytical tools and molecular biology techniques.Experience with cellulose producing bacteria is desirable but not mandatory.Good communication skills and ability to work in a research team."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Biotechnology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)', 'Specific Location': 'Singapore'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-microbiology-biotechnology-bioengineering-10053924?jobId=jobstreet-sg-job-10053924§ionRank=1480&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Research Associate (Microbiology/Biotechnology/Bioengineering/Molecular Biology/Biological Science/Biochemistry)
[{'position': 'Data Scientist #182251 #Urgent#JobsThatMatter'}, {'company_name': 'Credit Suisse (Singapore) Limited'}, {'small_section': ['Singapore', 'Posted on 21-Oct-22']}, {'Your field of responsibility': '', 'As part of the role your responsibilities include:': 'Work closely with Business Users, Product Owners, Business Engineers, Data Scientists, and technology team to understand data science and machine learning requirements..Design & build AI/ML platform to automate predictive models and run data science use cases at scale.Work closely with Data Scientist to deploy data science prototypes in production.Monitor the algorithms and ensuring that they generate accurate results..Documenting machine learning processes..Keeping abreast of developments in machine learning..Responsible to ensure that AI/ ML solutions meets bank-wide ML modelling guidelines and standards.', 'Your future colleagues': '', 'Your skills and experience': '', 'Must have skills:': 'Advanced degree in computer science, data science, mathematics, statistics, physics or a related field..Extensive data modeling and data architecture skills.Solid programming skills in Python, R or Java, hands on experience in SQL & PL/SQL, ETL tool (PowerCentre Informatica) and Linux and Control-M knowledge is plus..Knowledge of Hadoop (Kafka, Spark, Impala, Hive)..Extensive knowledge of ML frameworks, libraries, data structures, data modeling, and software architecture..In-depth knowledge of mathematics, statistics, and algorithms..Ability to develop, monitor, debug and maintain a CI/CD pipeline that feeds into a production deployment..Good command and experience in building and maintaining Data Science and Business Intelligence applications..Excellent analytical and problem-solving abilities..', 'Nice to have skills:': 'Prior experience deploying applications on a cloud environment..Experience with Containerization.Ability to work in a SCRUM team and focus on delivery as well as concurrently on a number of different topics and to be able to change focus quickly as needed..', 'Your new employer': []}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '197702363D', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Banking / Financial Services'}, {'Company Overview': "\n\tThe Credit Suisse Group purpose is at the core of everything we do. It underpins the value we create and has powered our progress for more than 160 years. It captures the essence of 'why' we exist as an organization. It motivates us when we come to work every day and serves as our North Star when we make decisions. Ultimately, it serves to define who we are and what we should be doing for our employees, clients and stakeholders.\n\tOur strategy builds on Credit Suisse's core strengths: our position as a leading wealth manager with strong global investment banking capabilities and our strong presence in our home market of Switzerland. We seek to follow a balanced approach to wealth management, aiming to capitalize on both the large pool of wealth within mature markets as well as the significant growth in wealth in Asia Pacific and other emerging markets.\n\tWe serve our clients through three regionally focused divisions: Swiss Universal Bank, International Wealth Management and Asia Pacific. These regional businesses are supported by an integrated global Investment Bank. Our Asset Management business is managed as a separate division, emphasizing the strategic importance of the asset management business for the bank and its clients.\xa0"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-182251-urgent-jobsthatmatter-10087378?jobId=jobstreet-sg-job-10087378§ionRank=1481&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Your field of responsibility
[{'position': 'Principal Software Engineer - {Web SDK} - #Urgent'}, {'company_name': 'Autodesk Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted 6 hours ago']}, {'Position Overview': '', 'Responsibilities': 'Break down a large problem into smaller components and provide a clear solution for each piece.Recommend appropriate technologies to be used to achieve productivity and efficiency.Design and build reusable components, libraries, and tools for web to instrument and ingest product data effectively.Collaborate with Product Manager, Engineering Manager, and other stakeholders to deliver features according to agreed scope and schedule.Collaborate with QA engineers to define software testing strategy.Ensure the quality, performance, and compatibility of the product using test automation.Promote and accelerate the usage and integration of our component by conducting training sessions, providing support, writing clear product documentation, and troubleshooting issues.Provide guides and direction to other engineers on development processes and product architecture.Review source codes contributed by other engineers.', 'Minimum Qualifications': 'Excellent analytical and problem-solving skill.Extensive knowledge and understanding of JavaScript.Experience in writing JavaScript library modules with cross-browser compatibility.Solid understanding in HTML & CSS.Proficient in writing automated tests with any testing framework.Proficient with distributed version control system (preferably git).Team player who is willing to help and collaborate well with other team members.Excellent communication skills (written and spoken).Ability to work with minimal supervision and to guide other team members to achieve goals.Familiar with non-functional testing such as load, performance and resiliency testing.Good command of English (Speaking, Writing and Reading).Degree in computer science or related field.', 'Preferred Qualifications': 'Experience writing NodeJs library module.Knowledge in any of other programming language (Java/Ruby/Python).Experience working with product analytics services (Google Analytics, Amplitude, Mixpanel, etc).Good understanding of data architecture fundamentals.Proficiency in writing SQL queries.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '199206210K', 'Company Size': 'More than 5000 Employees', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Medical, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': 'For 23 years, Autodesk has invested in people, software, and technology to help customers realize their ideas—to compete and win. Autodesk first revolutionized the software industry with the AutoCAD® product, which introduced drafting on a PC. The widespread popularity of AutoCAD software forged our company’s lifetime commitment to practical innovation that drives productivity and profitability. AutoCAD also paved the way for Autodesk technology leadership in industries such as building, infrastructure, manufacturing, media and entertainment, and wireless data. For more information on Autodesk, www.autodesk.com'}, {'url': 'http://www.jobstreet.com.sg/en/job/principal-software-engineer-%7Bweb-sdk%7D-urgent-10147058?jobId=jobstreet-sg-job-10147058§ionRank=1482&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Position Overview
[{'position': 'Research Engineer, - (Engineering/Computer Science) - (R00005223)'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Key Responsibilities:': 'Play a leading role in the development of AI/Machine learning models and algorithms for the predictive fault detection and classifications for Li Ion battery energy storage system (ESS) by a companion team for improved operation safety.Work closely with senior team members in coding/building machine learning algorithms, RNN, LSTM, GNN etc for data driven ESS models for purposes of fault/failure prediction.Work closely with the AI/machine learning team to deliver the overall project KPIs.Responsible for the acquisition and uploading of ESS operation data from the test-bed ESS.Assist in the preparation and compilation of regular progress reports and presentations.General support to the ESS research team’s activities.', 'Job Requirements:': "Master's degree in Engineering/Computer Science.Candidates with Bachelor's degree in Engineering/Computer Science are welcome to apply.Minimum 3 years of working experience in machine learning data driven modelling and related areas.Working knowledge in machine learning model development tools/platform such as Tensorflow, Keras, Pytorch, Scikit-learn etc.Working knowledge in machine learning algorithms, like neural network, SVM, deep learning.Knowledge on battery energy storage systems operating condition monitoring and analysis.Working knowledge of data acquisition and communication with battery management system (BMS).Independent problem solver with the ability to co-operate and work in a team."}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-engineer-engineering-computer-science-r00005223-10135172?jobId=jobstreet-sg-job-10135172§ionRank=1483&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Senior Research Fellow, - R00006266'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 26-Oct-22']}, {'Job Responsibilities': 'Research and development of Global Navigation Satellite System (GNSS) cryptographic digital signature for anti-spoofing and its vulnerability analysis which encompasses the following:.Implement authentication such as chameleon hashing over GNSS.Assess vulnerability of GNSS authentication over cellular and satellite network.Assess GNSS authentication effectiveness against spoofing over cellular and satellite network.Conduct experiment campaign to evaluate authentication effectiveness.', 'Job Requirements': 'Ph.D. in Computing Science, Electrical and Electronic Engineering or equivalent.At least 4 years of relevant post-doctoral experience.Research experience in GNSS anti-spoofing algorithm development, cryptography algorithm development, and cyber security related topics.Top tier journal publication in one or more of above-mentioned areas.Knowledge in GNSS signaling and messaging format\xa0\xa0.Competency in C, C++, Java, Python, Mongo DB, Node JS.Experience in Software Defined Radio (SDR) such as USRP or HackRF.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Education/Training, Education', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-fellow-r00006266-10054634?jobId=jobstreet-sg-job-10054634§ionRank=1484&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Job Responsibilities
[{'position': 'Senior Research Engineer I - (Computer Science) - (R00010619)#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 3-Nov-22']}, {'Job Description:': 'Gather system requirements by defining and analyzing system problems.Design and implement natural language processing (NLP) algorithms and models for semantic analysis, e.g., word embedding, named-entity recognition, coreference resolution and parsing, and ontology and knowledge graph constructions.Application of NLP in knowledge and information retrieval, and relevancy ranking with spatiotemporal consideration.Conduct “translational” research to apply the state-of-the-art solutions at scale for real world challenges.Documentation and scientific reporting.', 'Job Requirements:': 'PhD in computer science.Some experience and research background in AI and NLP.Passionate about NLP and AI related research, innovations and their applications.Proficient in one or more programming languages (e.g., Python, C/C++, etc.) and research packages/modules.Experience in large-scale text processing and analytics.Good track records in publication.'}, {'Career Level': 'Senior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-engineer-i-computer-science-r00010619-urgenthire-10129552?jobId=jobstreet-sg-job-10129552§ionRank=1485&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Job Description:
[{'position': 'Index Data Manager'}, {'company_name': 'Kerry Consulting Pte Ltd'}, {'small_section': ['Singapore', 'SGD\xa08,000 - SGD\xa08,300', 'Posted on 20-Oct-22']}, {'Description': '', 'Responsibilities': '', 'Skills and experiences required': 'Min. Degree in Business/Finance or related disciplines.At least 3 years of relevant working experience in managing benchmarks data.An excellent understanding of a wide range of tradable instruments.Understand the general impacts of Portfolio data changes on Investment and Operations processes in Aladdin.Working knowledge of data vendor systems such as Bloomberg, Reuters, RIMES, etc.Good understanding of front office, trade lifecycle, operations processes and data management governance frameworks.Prior experience using Aladdin is desirable.Knowledge of R & Python programming skills is a plus.', 'To Apply': '', '[email\xa0protected]': []}, {'Career Level': 'Non-Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '200307397W', 'EA No.': '16S8060', 'Company Size': '1 - 50 Employees', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tHeadquartered in Singapore since 2003, Kerry Consulting is Singapore\'s leading Search & Selection firm. Our consulting team is the most experienced, and amongst the largest, in the ASEAN region.\n\n\t\tWe provide services to many of the world\'s leading companies and financial institutions. We are committed to creating positive long term outcomes for both our clients and our candidates. Our focus is on "Returning the Human to Resourcing".\n\n\n\tTo find out more, please visit our website at www.kerryconsulting.com\n\n\tLicence No: 16S8060\n\t\xa0'}, {'url': 'http://www.jobstreet.com.sg/en/job/index-data-manager-10083985?jobId=jobstreet-sg-job-10083985§ionRank=1486&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Description
[{'position': 'Big Data Lead [R&D Engineer 6, Software] #JobsThatMatter #UrgentHire #Seekbetter'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Responsibilities:': 'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..Experience in Architecture, design, implementation, and deployment of high volume, highly available, cloud-based systems would be a plus.Hands on experience in Java/Scala/Python or any programming language software development skills.Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..A proactive and eager nature for tackling new challenge.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-lead-%5Br-d-engineer-6-software%5D-jobsthatmatter-urgenthire-seekbetter-10141859?jobId=jobstreet-sg-job-10141859§ionRank=1487&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'Senior Research Scientist in Science of Learning [R00007103] -#UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['Singapore', 'Posted on 4-Nov-22']}, {'Overview': 'Cognitive, Emotional and Social Learning (CESD).\xa0Lifelong Learning, Cognition and Wellbeing (LLCW).Learning Sciences & Innovation (LS&I).Schools, Leadership and System Studies (SLSS).Teacher Professionalism and Learning (TPAL).', 'Position Summary': '', 'Requirements': 'PhD in a relevant discipline (i.e. educational neuroscience, data science, neuropsychology, cognitive science, learning sciences, and hard sciences such as chemistry, biology, physics).Minimum 5 years postdoctoral experience.Experience in cutting edge scientificresearchmethodologies and addressing intractable challenges in education.Demonstrable track record in the following areas:.Research leadership in a research centre or in a large competitive, peer-reviewed research grant.High quality publications (i.e. quality and impact of academic publisher, citations and ranking of journal publications etc.).Writing of or contribution towards research proposals which are submitted for peer-reviewed funding processes.Independence in research (i.e. senior authorship/sole authorship of high-quality publications and invited presentations at conferences).Supervision of undergraduate and/or graduate students.Attainment of funding through a competitive peer-reviewed process.Excellent interpersonal and communication skills; and.Experience engaging with diverse stakeholders including Government stakeholders, Community Organizations and the Public.', 'Responsibilities': 'Take a leading role in the further development of SoL research programmes and in seeking and pursuing appropriate external funding in the area of SoL.Apply for and conduct quality research and work collaboratively to charge new directions for education, teaching and learning informed by scientific investigation and analyses.Disseminate the outcomes of the research including in peer-reviewed academic publications of international standing.Participate fully in the wider SoL research and service activities to OER/NIE.Take responsibility for, manage and conduct administrative and management tasks associated with SoL..Mentor junior faculty and research staff.Supervise students by research and/or dissertation (i.e. supervise MA / MSc students and / or co-supervise EdD.students)..', 'Application': 'Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements.Research statement indicating your research interests and achievements.1 to 3 of your best publications.Name of 3 referees.Cover letter addressing how you meet the requirements of this position (optional).Any other documents that demonstrate your qualifications.Please indicate the position code (OER RS/SRS: SoL) in your application..', 'Closing date': '', 'Review of applicants will continue until suitable candidates are found.': '', 'Please note that only shortlisted candidates will be notified.': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Doctorate (PhD)', 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-research-scientist-in-science-of-learning-%5Br00007103%5D-urgenthire-10134382?jobId=jobstreet-sg-job-10134382§ionRank=1488&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Overview
[{'position': 'Data Analyst - Data Understanding, - #URGENT'}, {'company_name': 'BYTEDANCE PTE. LTD.'}, {'small_section': ['Singapore', 'Posted on 2-Nov-22']}, {'Responsibilities': 'Data Analyst is expected to write Python & SQL code to extract data from various databases, cleanse, consolidate, visualize data and create datasets and demonstrate the data visualization;.The role also involve catering to ad hoc reporting & data analysis requests from the Business teams as well as in monitoring the performance of the Predictive Data Models;.Understand Business problems, Identify data sources & do Data Analysis and Build Reports;.Coordinate with data platform product team on data&reporting system related requests;.Design, develop, and maintain reports using SQL;.Development and maintenance of database systems to extract, cleanse, transform, load and maintain data;.Visualize large and/or complex data making it more accessible, understandable and usable;.Transforming, improving and integrating data, depending on the business requirements;.Delivering the data in a useful and appealing way to all stakeholders..', 'Qualifications': '2-5 years of experience;.Advanced English skills;.Strong knowledge of SQL is required;.Strong Knowledge of scripting languages (JavaScript, Python, R);.Experience working in Agile environment;.Excellent oral and written communications skills;.Excellent ability to work under pressure;.Excellent analytical skills in spotting issues from data;.Extensive experience relaying technical and non-technical information in a clear and concise manner;.Demonstrated expert problem solving and analytical skill.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '5 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201923456H', 'Company Size': '501 - 1000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Miscellaneous allowance, Medical, Vision, Regular hours, Mondays - Fridays, Casual & Business'}, {'Company Overview': "\n\n\t\tFounded in 2012, ByteDance's mission is to inspire creativity and enrich life. With a suite of more than a dozen products, including TikTok, Helo, and Resso, as well as platforms specific to the China market, including Toutiao, Douyin, and Xigua, ByteDance has made it easier and more fun for people to connect with, consume, and create content.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-data-understanding-urgent-10126159?jobId=jobstreet-sg-job-10126159§ionRank=1490&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Scientist Intern, Growth #Urgent* #Immediate'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 20-Oct-22']}, {'Responsibilities': "Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with Data Engineers, Data Analysts, Product and other engineers to deliver features to drive the user growth of products..", 'Qualifications': 'Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;.Knowledge of statistical data analysis such as linear models, multivariate analysis, stochastic models, sampling methods..'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth-urgent*-immediate-10083481?jobId=jobstreet-sg-job-10083481§ionRank=1491&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Regional Officer – Service Infra Support (Labrador Park/ $3, 500) (ID: 563701)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd'}, {'small_section': ['Central', 'SGD\xa03,000 - SGD\xa03,500', 'Posted on 26-Oct-22']}, {'Regional Officer – Service Infra Support.': '', 'RESPONSIBILITIES': 'Formulate parts forecasting with sales subsidiaries and HRQ in Japan, ensuring optimal supply\xa0& no overstock or shortages.Review & analyse overall region stocking & implement necessary strategies.Good overview of region stocking status & make correction if there are any stock in-balance.Work with business units to drive parts management & delivery strategy.Be\xa0in\xa0control\xa0of\xa0region\xa0parts\xa0status,\xa0driving\xa0fulfilment\xa0of\xa0shortages\xa0while\xa0ensuring\xa0no\xa0overstocking.Keep to targeted stocking ratio across region.', 'REQUIREMENTS': 'Degree or Diploma in Business Administration.At least 3 years performing similar tasks.Project Management; Able to relate with various stakeholders\xa0.Good attitude to learn with mindset change.'}, {'Career Level': 'Junior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Others, Others', 'Registration No.': '200701282M', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOL, formerly known as Intelligence, is one of the largest and fastest growing HR service providers in the Asia Pacific regions. With presence in 10 key APAC markets, PERSOL leverages on its strong database of Japanese and Japanese-speaking candidates to provide tailored workforce solutions primarily to Japanese companies in this region. The solutions include permanent and contract staffing, recruitment process outsourcing and payroll outsourcing.\n\n\t\tThe PERSOL brand in Asia Pacific operates under the PERSOLKELLY company, a joint venture between PERSOL Holdings and Kelly Services, forming one of the largest recruitment companies in APAC with its headquarters in Singapore.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolsg.com for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/regional-officer-service-infra-support-labrador-park-%243-500-id%3A-563701-10104587?jobId=jobstreet-sg-job-10104587§ionRank=1492&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Regional Officer – Service Infra Support.
[{'position': 'Big Data Lead (R&D Engineer 6, Software}- #UrgentHire #JobsThatMatter'}, {'company_name': 'Keysight Technologies Singapore'}, {'small_section': ['Singapore', 'Posted on 7-Nov-22']}, {'Responsibilities:': '', 'As the backend team lead, your will provide leadership in the following:': 'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..', 'Job Qualifications': 'Experience in Architecture, design, implementation, and deployment of high volume, highly available, cloud-based systems would be a plus.Hands on experience in Java/Scala/Python or any programming language software development skills.Good to have hands on experience in Impala, Hive, Kudu, Knowledge of CI/CD, GRPC, Swagger, ELK..Experience and Demonstrated understanding of Object/Component Oriented Design techniques.Experience with Big Data and real-time analytics.Experience with Agile software development methodologies and Test-Driven Design.Proven ability to evaluate and adopt new technology..A proactive and eager nature for tackling new challenge.'}, {'Career Level': 'Senior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '3 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201400779G', 'Company Size': '51 - 200 Employees', 'Industry': 'Electrical & Electronics', 'Benefits & Others': 'Regular hours, Mondays - Fridays, Smart Casual'}, {'Company Overview': "\nWho We Are\nKeysight Technologies Inc. (NYSE: KEYS) is the world's leading electronic measurement company, transforming today's measurement experience through innovations in wireless, modular, and software solutions. With its HP and Agilent legacy, Keysight delivers solutions in wireless communications, aerospace and defense and semiconductor markets with world-class platforms, software and consistent measurement science. The company's over 10,500 employees serve customers in more than 100 countries.\nCompany History and Timeline\nKeysight Technologies' legacy includes the original Hewlett-Packard business founded in 1939 by Bill Hewlett and Dave Packard, which spun off with Agilent Technologies in 1999. On Sept. 19, 2013, Agilent announced plans to separate into two publicly traded companies through a tax-free spinoff of its electronic measurement business. The new company, Keysight Technologies, began trading on the NYSE under the symbol KEYS on November 3,2014.\n"}, {'url': 'http://www.jobstreet.com.sg/en/job/big-data-lead-r-d-engineer-6-software%7D-urgenthire-jobsthatmatter-10141670?jobId=jobstreet-sg-job-10141670§ionRank=1494&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Responsibilities:
[{'position': 'AIOps Algorithm Engr. - Applications Performance Management #JobsThatMatter'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 8-Nov-22']}, {'Responsibilities': '', 'Responsibilities:': 'Build intelligent AIOps platforms by applying Machine Learning technology.Explore, understand, and apply most recent AIOps related algorithms, including time series anomaly detection, log analysis, data mining, root cause analysis, alarm correlation and aggregation etc..Build data platform on observational data to manage ML models and ML training data sets.Build auto remediation platform to automate fault detection and self-remediation, reduce MTTR and human effort..', 'Qualifications': 'Solid foundation in computer science, with strong competencies in algorithms, data structures, design patterns, and software design principles..Proficiency in at least one server-side programming language such as Golang, Java, Python.Experience with distributed version control (e.g. Gitlab or GitHub)..Deep knowledge in: Application of Machine Learning/Artificial Intelligence in IT operations..Software engineering principles (preferably Agile/Scrum) and their application to the creation of self-healing infrastructure and applications..Cloud infrastructure operations and automation technologies..', 'Preferred Qualifications:': 'Use of Data Science modelling tools e.g., R, Python and Data Science notebooks (e.g., Jupyter)..Experience with open source Machine Learning Platforms and Toolkits.Experience in APM or AIOps area.Micro-service experience with golang/python.'}, {'Career Level': 'Junior Executive', 'Qualification': "Diploma, Advanced/Higher/Graduate Diploma, Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/aiops-algorithm-engr.-applications-performance-management-jobsthatmatter-10144811?jobId=jobstreet-sg-job-10144811§ionRank=1495&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Research Associate (Bioprinting), (R00009608) #UrgentHire'}, {'company_name': 'Nanyang Technological University'}, {'small_section': ['West', 'Posted on 7-Nov-22']}, {'Key Responsibilities:': 'Support the Principal Investigator and industry partner to enable successful delivery of projects.Plan and perform scientific experiments in laboratory environment to test research hypotheses.Conduct analyses of results and documentation of project updates.Contribute to academic publications, project reports and presentations.', 'Job Requirements:': '\u200bA Masters’ degree in mechanical engineering, biomedical engineering, Physics or related areas.Basic knowledge and experimental skills in cell biology.Previous research experience working in a research laboratory\xa0 will be a great advantage.Demonstrated ability to work both independently and in a team.Attention to detail and a desire to follow projects to completion.Excellent English writing and communication skills.'}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree", 'Years of Experience': '2 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Science & Technology', 'Registration No.': '200604393R', 'Company Size': 'More than 5000 Employees', 'Average Processing Time': '30 days', 'Industry': 'Education', 'Benefits & Others': 'Dental, Education support, Medical, Sports (e.g. Gym), Regular hours, Mondays - Fridays, Business (e.g. Shirts)'}, {'Company Overview': '\n\n\nAbout Nanyang Technological University, Singapore\n\n\t\t\tA research-intensive public university, Nanyang Technological University, Singapore (NTU Singapore) has 33,000 undergraduate and postgraduate students in the Engineering, Business, Science, Humanities, Arts, & Social Sciences, and Graduate colleges. It also has a medical school, the Lee Kong Chian School of Medicine, established jointly with Imperial College London.\n\n\t\t\tNTU is also home to world-class autonomous institutes – the National Institute of Education, S Rajaratnam School of International Studies, Earth Observatory of Singapore, and Singapore Centre for Environmental Life Sciences Engineering – and various leading research centres such as the Nanyang Environment & Water Research Institute (NEWRI) and Energy Research Institute @ NTU ([email\xa0protected]).\n\n\t\t\tRanked amongst the world’s top universities by QS, NTU has also been named the world’s top young university for the past seven years. The University’s main campus is frequently listed among the Top 15 most beautiful university campuses in the world and has 57 Green Mark-certified (equivalent to LEED-certified) buildings, of which 95% are certified Green Mark Platinum. Apart from its main campus, NTU also has a campus in Novena, Singapore’s healthcare district.\n\n\t\t\tUnder the NTU Smart Campus vision, the University harnesses the power of digital technology and tech-enabled solutions to support better learning and living experiences, the discovery of new knowledge, and the sustainability of resources.\n\t\t\n\t\tFor more information, visit www.ntu.edu.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/research-associate-bioprinting-r00009608-urgenthire-10142178?jobId=jobstreet-sg-job-10142178§ionRank=1496&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Key Responsibilities:
[{'position': 'Data Science Analyst, TikTok #Urgent #WorkNow*'}, {'company_name': 'TikTok'}, {'small_section': ['Singapore', 'Posted on 31-Oct-22']}, {'Responsibilities': 'Improve the recommendation strategy of short video service..Understand user behavior in depth and optimize user experience such as creation and browsing 3. Optimize the index system of recommendation strategy and do attribution analysis on abnormal indicators..Analyze business data in different markets, formulate targeted recommendation strategies, and evaluate strategic benefits..Study special topics such as ecological growth of short video content..', 'Qualifications': 'Have user empathy, can quickly understand user needs, and can be associated with effective data indicators..Excellent ability to analyze and solve problems, full of passion for solving challenging problems..Excellent learning ability and logical thinking ability; Have good expression and communication skills..Understanding the principle of machine learning and recommendation algorithms is preferred..Experience in data analysis of Internet companies is preferred..'}, {'Career Level': 'Entry Level', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '201719908M', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '30 days', 'Industry': 'Computer / Information Technology (Software)', 'Benefits & Others': 'Dental, Education support, Medical, Vision, Regular hours, Mondays - Fridays, Casual (e.g. T-shirts)'}, {'Company Overview': "TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok is a global short-form mobile video platform that allows you to express yourself by creating content. It gives rise to engaging, interactive challenges and trending topics in which anyone can participate. TikTok aims to capture and showcase the world's creativity, knowledge, and moments that matter, directly from your mobile phone. TikTok has global offices in many cities, including Los Angeles, New York, London, Paris, Berlin, Dubai, Singapore, Jakarta, Seoul, and Tokyo."}, {'url': 'http://www.jobstreet.com.sg/en/job/data-science-analyst-tiktok-urgent-worknow*-10119822?jobId=jobstreet-sg-job-10119822§ionRank=1497&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Responsibilities
[{'position': 'Data Analyst - Senior (1 year contract, Central)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Central', 'SGD\xa06,000 - SGD\xa08,000', 'Posted on 13-Oct-22']}, {'Job Duties:': '', 'Our Requirements': []}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '2 years', 'Job Type': 'Temporary', 'Job Specializations': 'Manufacturing, Purchasing/Material Mgmt', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/data-analyst-senior-1-year-contract-central-10062771?jobId=jobstreet-sg-job-10062771§ionRank=1498&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Job Duties:
[{'position': 'Junior Machine Learning Engineer'}, {'company_name': 'Dell Asia Pte Ltd'}, {'small_section': ['Singapore', 'Posted on 14-Oct-22']}, {'Junior Machine Learning Engineer': '', 'What\xa0': '', 'you': '', '’ll achieve': '', 'You': '', '\xa0will:': '', 'Take\xa0': '', 'the': '', '\xa0first step towards\xa0your\xa0dream career': '', 'Essential Requirements': '', 'Desirable Requirements': '', 'Here’s our story; now tell us yours': '', 'Job\xa0ID:\xa0': []}, {'Career Level': 'Junior Executive', 'Qualification': "Bachelor's Degree, Post Graduate Diploma, Professional Degree, Master's Degree", 'Years of Experience': '1 year', 'Job Type': 'Full-Time', 'Job Specializations': 'Computer/Information Technology, IT-Software', 'Registration No.': '198905101W', 'Average Processing Time': '30 days', 'Industry': 'Electrical & Electronics'}, {'Company Overview': ''}, {'url': 'http://www.jobstreet.com.sg/en/job/junior-machine-learning-engineer-10067517?jobId=jobstreet-sg-job-10067517§ionRank=1499&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Junior Machine Learning Engineer
[{'position': 'Senior Process Development Scientist (Organic Synthesis/West Area/Up to S$4500)(ID:549189)'}, {'company_name': 'PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)'}, {'small_section': ['Tuas', 'SGD\xa05,000 - SGD\xa07,000', 'Posted on 24-Oct-22']}, {'Responsibilities:': 'Conduct laboratory scale experiments and analysis with supervision to support plant operation issues, proposed process modifications, new raw material qualification, evaluation of processes to minimize waste (reuse, etc.), evaluation of new process technologies.Collaborate and work with multi-discipline functions such as process engineers, quality, regulatory, compliance, etc. in troubleshooting all manufacturing problems and upsets..Support technology transfers activities from drafting the standard laboratory procedures (SLP) to execution of laboratory experiments to support process validation..Write new standard operating procedures (SOPs) and up-version the existing SOPs as required..Work with other Process Scientists and Engineers to anticipate and eliminate any process chemistry related issues..', 'Requirements:': 'Minimum Master’s degree/PHD in Chemistry or relevant discipline.Teamwork, organic synthesis, analytical chemistry.'}, {'Career Level': 'Senior Executive', 'Qualification': 'Not Specified', 'Years of Experience': '4 years', 'Job Type': 'Full-Time', 'Job Specializations': 'Sciences, Chemistry', 'Registration No.': '200007268E', 'EA No.': '01C4394', 'Company Size': '51 - 200 Employees', 'Average Processing Time': '6 days', 'Industry': 'Human Resources Management / Consulting'}, {'Company Overview': '\n\n\t\tPERSOLKELLY is one of the largest recruitment companies in Asia Pacific providing comprehensive end-to-end workforce solutions to clients.\n\n\t\tHeadquartered in Singapore, the company was established in 2016 and is a joint venture between Kelly Services, Inc. and affiliates of PERSOL HOLDINGS Co. Ltd.\n\n\t\tToday, PERSOLKELLY operates more than 45 offices across 13 markets including Australia, China, Hong Kong, India, Indonesia, Korea, Malaysia, New Zealand, Philippines, Singapore, Taiwan, Thailand, and Vietnam.\n\n\t\tOur deep market understanding and industry expertise, honed over four decades of operations in Singapore, gives us an edge in driving business change and empowering your organisation to overcome future HR challenges. We combine our expertise with genuine human insights to provide strategic solutions for your HR needs. Our team will partner with you to enhance your HR practices, so you can confidently achieve more.\n\n\n\t\t\tBy sending us your personal data and curriculum vitae (CV), you are deemed to consent to PERSOLKELLY Singapore Pte Ltd and its local and overseas subsidiaries and affiliates collecting, using and disclosing your personal data to prospective employers/companies based in any country for purposes of evaluating\xa0 suitability for employment, conducting reference checks, administering employment related services, complying with Government’s COVID-19 health advisories and such other purposes stated in our privacy policy. Our full privacy policy is available at www.persolkelly.com.sg. If you wish to withdraw your consent, please drop us an email to let us know. Please feel free to contact us if you have any queries.\n\n\t\t\tPlease visit www.persolkelly.com.sg for a copy of our Privacy Policy. If you wish to withdraw your consent, please drop us an email at "[email\xa0protected]" to let us know. (NOTE: any resumes or job applications sent to this data protection mailbox will NOT be attended to as it is solely for the purposes of personal data protection related feedback.)\n\t\t\n\t\tFor more information, please visit www.persolkelly.com.sg\n'}, {'url': 'http://www.jobstreet.com.sg/en/job/senior-process-development-scientist-organic-synthesis-west-area-up-to-s%244500-id%3A549189-10098910?jobId=jobstreet-sg-job-10098910§ionRank=1500&token=0~b75a30f5-a26d-4165-8e8f-3bbb85383e38&fr=SRP%20Job%20Listing'}]
Responsibilities:
temp_dict = TOTAL_JOB_RAW_DATA[500][3]
TOTAL_JOB_RAW_DATA[0][3]
{'Responsibilities:\xa0': '',
'\xa0': 'Develop targeted bespoke analytics models to help the venture extract value from, and monetise, data on our platforms, where such value extraction could include the likes of better client decisioning, pricing and opportunity identification..Research, design, implement and validate cutting-edge analytics and data visualization techniques to achieve targeted outcomes, such as bringing predicted outcomes closer to experience while ensuring consistency with the model ecosystem, while identifying opportunities for solutions to be leveraged across applications to broaden their scope of use and improve risk analysis..Collaborate with partner technology teams in setting up an effective model lifecycle platform on the cloud, with possible roles to play in cloud architecture and platform engineering..',
'Essential Skills:': 'At least five years’ experience in a predictive analytics or Artificial Intelligence / Machine-learning role, or in modelling complex systems..Strong degree or postgraduate qualification in any discipline with substantial quantitative component (e.g. Physics, Mathematics, Statistics, Actuarial Sciences, Biostatistics, Meteorology, etc.)..Expertise in statistical and predictive modelling concepts, machine-learning approaches, clustering and classification techniques, and recommendation and/or optimization algorithms..Expertise in analytical programming with a focus on Python libraries e.g. pandas, and experience in data handling..Experience in cloud architecture or machine-learning platform engineering would be strongly advantageous..Experience with managing complex data projects would be advantageous..Understanding of trade and supply chain concepts would be advantageous..'}
for idx, row in enumerate(TOTAL_JOB_RAW_DATA):
JD = row[3]
try:
row[3] = {k.replace("\xa0"," ").replace(":",""):v.replace("\xa0"," ") for k, v in JD.items() if len(v) >10 }
except Exception as e:
print(f"Unable to process at idx {idx} due to {e}")
# Confirmed that any header with no value gets taken out
TOTAL_JOB_RAW_DATA[0][3]
{' ': 'Develop targeted bespoke analytics models to help the venture extract value from, and monetise, data on our platforms, where such value extraction could include the likes of better client decisioning, pricing and opportunity identification..Research, design, implement and validate cutting-edge analytics and data visualization techniques to achieve targeted outcomes, such as bringing predicted outcomes closer to experience while ensuring consistency with the model ecosystem, while identifying opportunities for solutions to be leveraged across applications to broaden their scope of use and improve risk analysis..Collaborate with partner technology teams in setting up an effective model lifecycle platform on the cloud, with possible roles to play in cloud architecture and platform engineering..',
'Essential Skills': 'At least five years’ experience in a predictive analytics or Artificial Intelligence / Machine-learning role, or in modelling complex systems..Strong degree or postgraduate qualification in any discipline with substantial quantitative component (e.g. Physics, Mathematics, Statistics, Actuarial Sciences, Biostatistics, Meteorology, etc.)..Expertise in statistical and predictive modelling concepts, machine-learning approaches, clustering and classification techniques, and recommendation and/or optimization algorithms..Expertise in analytical programming with a focus on Python libraries e.g. pandas, and experience in data handling..Experience in cloud architecture or machine-learning platform engineering would be strongly advantageous..Experience with managing complex data projects would be advantageous..Understanding of trade and supply chain concepts would be advantageous..'}
TOTAL_JOB_RAW_DATA[500][3]
{'Job Responsibilities': 'Translate business requirements to responsive functional web solutions. This includes designing and building APIs, front-end interfaces and scalable tools that ingest and transform real-time data using a variety of open-source and proprietary big data technologies..Recommend and implement ways to improve data reliability, efficiency and quality.Work closely with stakeholders to ensure high standards of data governance during implementation.Serve as technical subject matter expert on the latest big data technologies.',
'Requirements': 'Hands-on proven track record in developing products from front-end interface, middle-tier, to backend infrastructure.7+ years of superior experience developing commercial web-based applications.4+ years of full-stack web development experience in Javascript (node.js and React framework).Proficiency in SQL is mandatory.Excellent scripting knowledge in Python, Shell etc.Those with strong production experience in Scala or Spark programming languages will be considered favourably.Relevant experience in web, video, mobile or adtech domain is a definite plus.Demonstrated clear and thorough analytical thinking.Good eye for aesthetics and an attention to detail.A proven team player and contributor who can multi-task and deliver against timelines.Minimum degree in Computer Science/Engineering, or equivalent.'}
for idx, row in enumerate(TOTAL_JOB_RAW_DATA):
for key in row[3].keys():
if key in jd_headers:
jd_headers[key]+=1
else:
jd_headers[key]=1
sorted_jd_headers = dict(sorted(jd_headers.items(), key=lambda item: item[1], reverse=True))
# Okay, we have some variants of Job description and Requirements from candidates
sorted_jd_headers
{'Job Requirements': 696,
'Responsibilities': 480,
'Qualifications': 409,
'Job Responsibilities': 382,
'Requirements': 268,
'Job Requirements:': 266,
'Key Responsibilities': 222,
'Job Description': 186,
'Key Responsibilities:': 171,
'Responsibilities:': 103,
'Requirements:': 99,
'Preferred Qualifications': 72,
'Job Description:': 71,
'Minimum Qualifications': 58,
'The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.': 53,
'Key Responsibilities:\xa0': 47,
'Job Requirements:\xa0': 44,
'Key Responsibilities ': 44,
'Job Requirements ': 44,
'Job Responsibilities:': 42,
'Overview': 40,
'Description': 30,
'Qualifications:': 30,
'JOB REQUIREMENTS': 29,
'Requirement': 29,
'More Information': 24,
'Main Duties & Responsibilities': 24,
'About UOB': 24,
'About the Department': 24,
'Be a part of UOB Family': 24,
'Our Requirements': 23,
'Application': 23,
'Job description': 20,
'Job requirements': 18,
'Learning Benefits': 17,
'Education': 17,
'What we are looking for': 17,
'What we are looking for:': 16,
'Coding Skills:': 16,
'Profile': 16,
'Research and Comprehensive Skills:': 15,
'Position Overview': 15,
'About the Role': 15,
'The Job': 15,
'What to Expect': 15,
'About the Team': 15,
'.': 14,
'Preferred qualifications': 14,
'What you will be working on:': 14,
'Responsibilities of Research Scientists': 14,
'About The Team': 14,
'Experience and Qualifications': 13,
'Duties & Responsibilities': 13,
'Job Overview': 13,
'Preferred Qualifications:': 13,
'The E-Commerce Risk Control (ECRC) team is missioned:': 13,
'Job responsibilities': 13,
'REQUIREMENTS': 13,
'What you will be working on': 13,
'The E-Commerce Risk Control (ECRC) team is missioned': 13,
'About the Client': 12,
'About Us': 12,
'HOW TO APPLY:': 12,
'Education Backgrounds': 12,
'Knowledge/Skills Required': 12,
'Apply Now': 12,
'How to Succeed': 12,
'Closing Date': 12,
'Other Information': 12,
'Skills and experiences required': 12,
'Job Purpose': 11,
'JOB DESCRIPTION': 11,
'KEY REQUIREMENTS': 11,
'Business Function': 11,
'Functional skillsets': 11,
'Technical skillsets': 11,
'You will:': 11,
'You will': 11,
'\xa0': 10,
'[email\xa0protected]': 10,
'Skills': 10,
':': 10,
'JOB SCOPE': 10,
'KEY RESPONSIBILITIES': 10,
"What you'll need to succeed": 10,
'Experience': 10,
'The above eligibility criteria are\xa0not\xa0exhaustive. A*STAR may include additional selection criteria\xa0based\xa0on its prevailing recruitment policies. These policies may be amended\xa0from\xa0time to time without notice. We regret that only shortlisted\xa0candidates\xa0will be notified.': 10,
'Preferred Qualification': 10,
'Employer Description:': 10,
'Your skills and experience': 10,
'RESPONSIBILITIES': 10,
"What You'll Do": 10,
'Requirements:\xa0': 9,
'To all recruitment agencies:': 9,
'Your new role': 9,
'About Tiktok': 9,
'About Autodesk': 9,
'': 9,
'EEO Statement:': 9,
'Duties and Responsibilities': 9,
'Your field of responsibility': 9,
'As part of the role your responsibilities include:': 9,
'Your future colleagues': 9,
'Your new employer': 9,
'Requirements ': 9,
'As part of the role your responsibilities include': 9,
'Background': 8,
'Data Engineer (Remote possible)': 8,
'Roles and Responsibilities': 8,
'YOUR SUCCESS IS OUR ACHIEVEMENT!': 8,
'Minimum Qualifications:': 8,
'Are you an existing contractor or consultant with Autodesk? Please search for open jobs and apply internally (not on this external site). If you have any questions or require support, contact ': 8,
'Autodesk Careers': 8,
'Emoluments': 8,
'About Great Eastern': 8,
'Basic Qualifications': 8,
'What will help you succeed in this role': 8,
'Research Scientist (Electrical and Electronic Engineering/Computer Science)': 8,
'Main Responsibilities': 8,
'What you will do': 8,
'About TikTok': 8,
'Key Stakeholders': 8,
'Preferred Requirements:': 7,
'Thank you for your interest\xa0and\xa0application to this role. Please note that only short-listed\xa0candidates\xa0will be contacted.': 7,
'Interest & Application': 7,
'RESPONSIBILITIES:': 7,
'REQUIREMENTS:': 7,
'What will you do?': 7,
'Technology and Operations ': 7,
'Work Experience': 7,
'Job Offer': 7,
'Application:': 7,
'Preferred Requirements': 7,
'Coding Skills': 7,
'As the backend team lead, your will provide leadership in the following': 7,
'Responsibilities:\xa0': 6,
'Qualifications & Work Experience': 6,
'To Apply:': 6,
'Next Steps': 6,
'EA license No. 09C5803': 6,
'·\xa0\xa0\xa0\xa0\xa0MNC': 6,
'·\xa0\xa0\xa0\xa0\xa0Central': 6,
'·\xa0\xa0\xa0\xa0\xa05-day week': 6,
'Our client,\xa0': 6,
',': 6,
'OTHER INFORMATION:': 6,
'Janelle Kow Jing Qi': 6,
'Janelle at 6590 9964\xa0': 6,
'About us': 6,
'Preferred qualifications (one or more of the following)': 6,
']': 6,
'Start Small and Move Fast': 6,
"What you'll get in return": 6,
"What You'll Do:": 6,
'Preferred': 6,
'Experiences in at least two of the following areas is a strong plus:': 6,
'Key accountabilities': 6,
'click the "APPLY NOW" button': 6,
'Knowledge, Skills, Abilities': 6,
'In this role, you will:': 6,
'Technical Skills': 6,
'Client Details': 6,
'Position Summary': 6,
'Preferred Skills /Qualities': 6,
'To Apply': 6,
'About the Job:': 6,
'About the Team:': 6,
'As the backend team lead,\xa0your will provide leadership in the following:': 6,
'Basic Qualifications:': 6,
'Desired Qualifications:': 6,
'Must have skills:': 6,
'Nice to have skills:': 6,
'Your expertise': 6,
'OTHER INFORMATION': 6,
'Research and Comprehensive Skills': 6,
'Experiences in at least two of the following areas is a strong plus': 6,
'In this role, you will': 6,
'About the Job': 6,
'Desired Qualifications': 6,
'Must have skills': 6,
'Nice to have skills': 6,
'Required Attributes': 5,
'Next Step': 5,
'\xa0Data Scientist.': 5,
'Data Scientist': 5,
'[Order Number: ': 5,
'Continuous Learning': 5,
'We are in this Together': 5,
'Your new company': 5,
'What you need to do now': 5,
'How will you get here?': 5,
'The Opportunity': 5,
'Team Introduction': 5,
'Preferred Skills': 5,
'Education:': 5,
'Data Management Office': 5,
'Interest & Apply': 5,
'Job Role': 5,
'Skills:': 5,
'Experience or certification in the below technologies will be an added advantage:': 5,
'Research Scientist in Centre for Research in Child Development (OER) [NIE]': 5,
'Note to applicants:': 5,
'Job\xa0description:\xa0': 5,
'Job Duties:': 5,
'School of Computer Science and Engineering (SCSE) invites applications for the position of Research Assistant.': 5,
'Job Requirement:': 5,
'Vision': 5,
'Job description ': 5,
'Job Requirement': 5,
'Next Step:': 4,
'expected package': 4,
'reasons for leaving': 4,
'PURPOSE OF THE JOB': 4,
'Competencies & Skills': 4,
'Data Scientist (Life Sciences)': 4,
'@': 4,
'Scope of work:': 4,
'What is needed:': 4,
'A good degree in Computing or Data Science from a recognized University. Major in Software Engineering or possessing a Master degree will be advantageous.': 4,
'Proven AI industry practitioner and working experience as a Machine Learning Software Engineer or similar role, with good knowledge of industry practices and technological applications in the field. Familiarity with machine learning frameworks and libraries (such like Caffe, Spark ML, Keras, PyTorch, TensorFlow, Scikit-Learn, CNTK etc)': 4,
'At least 10 years’ experience in the knowledge domain': 4,
'Must have a firm grasp and understanding of data structures, data modeling and software architecture using Python, R, Java and C, as well as deep knowledge of math, probability, statistics and algorithms.': 4,
'about the job': 4,
'skills and Experience required': 4,
'Scope of Work': 4,
'Requirement:': 4,
'Personnel Registration No R22109255': 4,
'Your primary job responsibilities will be to': 4,
'Technical Requirements': 4,
'Background:': 4,
'Behavioural Modelling': 4,
'Duties & Responsibilities\xa0': 4,
'Up to $10k': 4,
'JOB REQUIREMENT': 4,
'Hadoop, HiveSQL, Spark': 4,
'Head of Generative Artificial Intelligence': 4,
'Job Discription': 4,
'Experience / Preferred Background': 4,
'Essential Soft skills': 4,
'Desirable Skills': 4,
'The responsibilities include, but are not limited to:': 4,
'cv_may(AT)goodjobcreations.com.sg': 4,
'Ownership': 4,
'Preferred requirements:': 4,
'Innovation Manager, Artificial Intelligence Lab, School of Computing (2 year contract)': 4,
'Join the Dynamic Team!': 4,
'To be successful in this role, you have': 4,
'Roles & Responsibilities': 4,
'About the team': 4,
'Healthcare Industry located at West near MRT stations': 4,
'Healthcare background is a MUST': 4,
'Data Management Office and Big Data Analytics': 4,
'Some of the Key Responsibilities Include': 4,
'Work Experience:': 4,
'Reputable Healthcare Sector, West MRT': 4,
'The ideal candidate should possess at least 5 years of experience in data architecture/ engineering and working/ programming knowledge in Python, R, Java, or C#': 4,
'Scope & Responsibilities': 4,
'Job Scope:': 4,
'Job Scope': 4,
'Qualification:': 4,
'About SATS – Feed and Connect Communities': 4,
'What you’ll do': 4,
'Digital Twin Simulation Engineer': 4,
'Closing date': 4,
'Key Requirements': 4,
'The Talent': 4,
'Job\xa0Role:': 4,
'Researchers - Analytical - Inorganic / Organic': 4,
'Requirements for Senior Education Research Scientist': 4,
'Responsibilities of Senior Education Research Scientists': 4,
'Preferred skills': 4,
'Skills and Proficiency': 4,
'Technical Competencies': 4,
'You will be involved in': 4,
'About Standard Chartered\xa0': 4,
'Do\xa0the\xa0right\xa0thing': 4,
'Never settle,': 4,
'Be\xa0better together,': 4,
'In\xa0line with our Fair Pay Charter,': 4,
'Core bank funding for retirement savings,\xa0medical\xa0and\xa0life insurance,': 4,
'Time-off': 4,
'Flexible\xa0working': 4,
'Proactive wellbeing support': 4,
'A continuous learning culture': 4,
'Being part\xa0of\xa0an inclusive\xa0and\xa0values driven organisation,': 4,
'Recruitment assessments -': 4,
'The\xa0Role\xa0Responsibilities': 4,
'Regulatory\xa0& Business Conduct': 4,
'Our\xa0Ideal\xa0Candidate': 4,
'Job Summary': 4,
'Scope of work': 4,
'What is needed': 4,
'The responsibilities include, but are not limited to': 4,
'Preferred requirements': 4,
'Experience or certification in the below technologies will be an added advantage': 4,
'Responsibilities ': 4,
'Regulatory & Business Conduct': 4,
'Our Ideal Candidate': 4,
'Technical skills include:': 3,
'Generic skills include:': 3,
'The responsibilities of this role are:': 3,
'The ideal candidate will need to have the following qualities and experience:': 3,
'An exciting career awaits the right candidate! Click "Quick Apply" to register your interest now.': 3,
"All applicants' CV will be treated with the strictest confidentiality. We regret to inform that only shortlisted candidates will be contacted.": 3,
'Duties and Responsibilities:': 3,
"ClayOPS is a venture acquired by NCS as of 9 September 2021. Working location for this position would be at ClayOPS' office at 6 Harper Road.": 3,
'Your Key Responsibilities includes:': 3,
'\xa0Requirements:': 3,
' +65 9004 5401': 3,
'Chan Chin How, Javier': 3,
'Job responsibilities:': 3,
'Essential Knowledge:': 3,
'How do we work:\xa0': 3,
'[About Tiktok]': 3,
'APPLY': 3,
'Key Requirements:': 3,
'How Will You Make an Impact?': 3,
' ': 3,
'Job Summary:': 3,
'How will you make an impact?': 3,
'Job Descriptions:': 3,
'Soft Skills:': 3,
'Abilities / Aptitudes': 3,
'You will be involved in a range of tasks including the following': 3,
'Job description:': 3,
'Senior Research Scientist (Computer/Electrical/Mechatronics Science/Statistics)': 3,
'Location': 3,
'Preferred Skills:': 3,
'The Role': 3,
'Senior Research Scientist B (Electrical & Electronics Engineering/Material Science/Physics/Chemistry)': 3,
'We regret to inform that only shortlisted candidates will be notified.': 3,
'Skills/Background': 3,
'Singapore': 3,
'Who you are': 3,
'What you’ll learn': 3,
'APPLY NOW BUTTON': 3,
'Research Scientist (AI for Healthcare)': 3,
'Qualification': 3,
'PREFERRED QUALIFICATIONS': 3,
'Nanyang Technological University, Singapore': 3,
'School of Social Sciences': 3,
'Tenure-track Assistant Professor in Economics and Data Science': 3,
'Key responsibilities include:': 3,
'At least, 2 to 3 technical certifications in any of the below technologies:': 3,
'How do we work:': 3,
'Outcome Driven': 3,
'Job Overview:': 3,
'Project Officer (Aviation/Statistics/Data Science/Engineering Science in Statistics)': 3,
'Review of applicants will continue until suitable candidates are found.': 3,
'Please note that only shortlisted candidates will be notified.': 3,
'Additional Desirable Skillsets/Experience': 3,
'Senior Specialist, Data Scientist': 3,
'Overview\xa0of\xa0the\xa0role:': 3,
'Teaching Hours': 3,
'Ensign is hiring !': 3,
'QUALIFICATIONS': 3,
'Required Qualifications': 3,
'Who we are': 3,
'Research Assistant (Data Science/Machine Learning/Computational Fluid Dynamics) (R00007081)': 3,
'About the School:': 3,
'About the Division:': 3,
'You are expected to possess the below:': 3,
'ESSENTIAL DUTIES AND RESPONSIBILITIES': 3,
'Your role': 3,
'Your team': 3,
'Job Qualifications': 3,
'Generic skills include': 3,
'The responsibilities of this role are': 3,
'Your Key Responsibilities includes': 3,
' Requirements': 3,
'Essential Knowledge': 3,
'Job Descriptions': 3,
'Soft Skills': 3,
'You are expected to possess the below': 3,
'Essential Skills:': 2,
'NLP\xa0and\xa0Knowledge Graph Engineer, Sensors & Machine Learning Lab': 2,
'About ASUS\xa0\xa0': 2,
'About AICS\xa0': 2,
'Solution Lead, Sensors & Machine Learning Lab': 2,
'Role summary:': 2,
'Role requirements:': 2,
'Role specific competencies and traits:': 2,
'Senior Machine learning (Vision) Engineer ': 2,
'The Role: ': 2,
'About You: ': 2,
'Research Analyst/ Associate/ Fellow in Machine Learning and Artificial Intelligence (ML/AI)': 2,
'Introduction': 2,
'Your\xa0Role\xa0and\xa0Responsibilities': 2,
'MAIN RESPONSIBILITIES': 2,
'Key accountabilities:': 2,
'Performance measurements:': 2,
'MAIN REQUIRED COMPETENCES': 2,
'Mandatory:': 2,
'Desirable:': 2,
'Mandatory:\xa0': 2,
'Thank you for your interest\xa0and\xa0application to this role. Please note that only shortlisted\xa0candidates\xa0will be contacted.': 2,
'Job requirements:': 2,
'An engineer with an interest in data and analyzing them?': 2,
'Our client is looking for a team player, who could join them and take it to the next level. If you love data, being involved in making business decisions with your engineering knowledge, check the criteria below. If you got what it takes, apply now!': 2,
' Lead Professional Officer/ Senior Professional Officer - Software Engineering (Machine Learning/ Deep Learning/ Artificial Intelligence)': 2,
'about the company': 2,
'about the manager/team': 2,
'Covid-19 Message': 2,
'Job Description for Assistant Principal Data Analyst': 2,
'Machine Learning Engineer, Sensors & Machine Learning Lab': 2,
'"Apply Now"': 2,
'COVID-19 Message': 2,
'Research Fellow / Data Scientist': 2,
'www.chualabnccs.com': 2,
'(Good to have)': 2,
'ClayOPS Pte Ltd': 2,
'Principal Data Scientist - Advisory': 2,
'\xa0Job Details': 2,
'Role:': 2,
'Requirements & Skills:': 2,
' SQL': 2,
'Databases such as MySQL/Hive/Redis': 2,
'Other Information:\xa0': 2,
'Roles and Responsibilities:': 2,
'Gaming Industry | Big Data Engineer | Up to $6500': 2,
'Your responsibility:': 2,
'Perform SQL development': 2,
'data warehouse': 2,
'To succeed in this role, you are likely to have the following attributes:': 2,
'Interest &\xa0Apply': 2,
'Personnel Registration\xa0No\xa0R1980978': 2,
'EA license\xa0No. 09C5803': 2,
'ETL processing:': 2,
'System Maintenance\u200b\u200b\u200b:': 2,
'Query and visualization:': 2,
'Main Responsibilities:': 2,
'Job scope and responsibilities:': 2,
'Additional Knowledge Skills would be an advant:': 2,
'WHAT’S ON OFFER': 2,
'CONSULTANT DETAILS': 2,
'2208-62898': 2,
'Outcome Driven ': 2,
'Scientist (Artificial Intelligence)': 2,
'Sr. Data Platform Engineer': 2,
'Experience & Skills:': 2,
'You will be required to:': 2,
'Job overview:': 2,
'What to expect:': 2,
'How to succeed:': 2,
'Specific criteria to succeed (other than those listed above):': 2,
'Preferred (Additional requirements which are not necessary pre-requisites):': 2,
'Team Intro': 2,
'[About the Role]': 2,
'Job Description for Principal Data Engineer - Product': 2,
'Job Title': 2,
'Job Specializations': 2,
'The candidate should possess:\xa0': 2,
'Research Scientists (Artificial Intelligence)': 2,
'Key responsibilities:': 2,
'D L Resources Pte Ltd': 2,
'Learning outcome:': 2,
'Up to $5500, Permanent Role with AWS + 3 months Variable Bonus': 2,
'Qualifications / Experience:': 2,
'What will you be expected to do?': 2,
'Qualifications/Requirements/Other info': 2,
'Responsibilites and Duties': 2,
'Required Skill & Experience': 2,
'Responsibility': 2,
'Database Skillset': 2,
'Strong analytical skills': 2,
'Salary up to $5000': 2,
'Location: Ang Mo Kio': 2,
'Other responsibilities: 20%': 2,
'Social and Behavioural Scientist': 2,
'Manage Corporate Activities': 2,
'Entry level are welcome to apply': 2,
'The officer will be required to but not exclusive to:': 2,
'Technical Skills:': 2,
'Permanent position, Salary up to $9,000 with AWS + 3 months VB': 2,
'Interested candidates can forward their CVs in MS Word format to jermaine#triton-ai.com': 2,
'Analytics:': 2,
'Secondary Responsibilities': 2,
'Candidates who meet most of the requirements will be considered.': 2,
'Objectives of this Role': 2,
'Daily and Monthly Responsibilities': 2,
'Skills and Qualifications': 2,
'Research Scientist (Mathematics/Computer Science/Electrical Engineering)': 2,
'https://www.careers-page.com/talent-trader-group/job/R8Y6Y6': 2,
'Summary of Job:': 2,
'functional dashboards': 2,
'Major European-based Chemical Manufacturing Organisation in Singapore': 2,
'Newly Created role': 2,
'Snowflake': 2,
'8+ years': 2,
'What to Expect:': 2,
'How to Succeed:': 2,
'Analysing clinical or research data via basic and advanced statistical methods, according to the PI’s research directions': 2,
'Ensure accuracy and completeness of data collection based on medical records and data entry': 2,
'Develop visualizations and written reports for research methodology, process, and findings for presentation and dissemination to key stakeholders': 2,
'Maintain regular communication with other team members in PI’s group and collaborators': 2,
'Master’s degree in Statistics or Biostatistics': 2,
'Strong skills in statistical software (e.g., STATA, SPSS, SAS, R, etc.)': 2,
'At least 2 years of experience in research, preferably in clinical research environment': 2,
'Able to work independently as well as in a team': 2,
'Track record of scientific publication and leading projects is advantageous': 2,
'KEY RESPONSIBILITIES:': 2,
'At least 5 years of relevant working experience as a Software Engineer in relevant field.': 2,
'We Are Looking For Someone Who Is Passionate About': 2,
'The ideal candidate will be …': 2,
'Monitor company equipment behavior on several aircraft programs a daily basis, report any weak signals to the team for discussion & decision': 2,
'Work closely with Data Analytics team based in France (weekly calls and regular interactions) for coordination & follow up on open alerts, as well as algorithm development': 2,
'At least three (3) years of Experience in Data Analytics or related field': 2,
'Proficient with Python, SQL / Databases, and PowerBI / Data visualization': 2,
'Experience using web scrapping / web APIs': 2,
'Proficient with Excel / PowerPoint': 2,
'Main Duties and Responsibilities': 2,
'Teradata FSLDM': 2,
'Key Roles and Responsibilities': 2,
'Your role as a leader': 2,
'Additional Requirements that are considered as an asset': 2,
'Basic purpose of the position': 2,
'Special Skills': 2,
'Competencies Critical for the Success of this Position': 2,
'Data Engineer,': 2,
'Primary Responsibilities and Duties (70%)': 2,
'Secondary Responsibilities and Duties (30%)': 2,
'What do you need to succeed?': 2,
'Job roles:': 2,
'Knowledge/Skills:': 2,
'How to Apply:': 2,
'lead the solution architecture aspects of Data Analytics and Marketing Automation domain': 2,
'cross-bank technology initiatives': 2,
'large scale technology modernizations and platform migrations': 2,
'10+ years of experience of services, product development, infrastructure and security experience as an architect or similar hands-on technology leadership role': 2,
'Successful candidates will be responsible for:': 2,
'Job Benefits': 2,
'Location: ': 2,
'Operations Analyst': 2,
'Patent Agent/ Patent Scientist': 2,
'Responsibilities and Authorities': 2,
'Experiences': 2,
'Competencies Preferred': 2,
'with MS SQL Server DBA certification preferred': 2,
'Key Responsibilities and Duties': 2,
'ROLES & RESPONSIBILITIES': 2,
'SKILLS': 2,
'Optional': 2,
'Qualifications and Requirements': 2,
'Specific Requirements (Mandatory for the role)': 2,
'Others': 2,
'Major Foreign-Based Manufacturing Organisation in Singapore': 2,
'Key IT Role in Singapore': 2,
'Personnel Registration No R1980978': 2,
'Advance Excel user (VLOOKUP, pivot tables)': 2,
'This includes:': 2,
'Role requirement': 2,
'Job Purpose:': 2,
'Healthy Longevity Translational Research Program': 2,
'Evaluating Client’s satisfaction at Eldercare Centre (EC)': 2,
'The above eligibility criteria are\xa0': 2,
'not': 2,
'\xa0exhaustive. A*STAR may include additional selection criteria\xa0': 2,
'based': 2,
'\xa0on its prevailing recruitment policies. These policies may be amended\xa0': 2,
'from': 2,
'\xa0time to time without notice. We regret that only shortlisted\xa0': 2,
'candidates': 2,
'\xa0will be notified.': 2,
' System Analyst': 2,
'Enterprise & Wholesale Bank Analytics Team': 2,
'Business Analytics': 2,
'Data Engineering and Analytics': 2,
'data engineering methods and technologies / tools such as ETL, R and/or Python. Azure Cloud proficiency will be an advantage.': 2,
'Qualification & Field of Study:': 2,
'Other Requirements:': 2,
'essential ': 2,
'Team Introduction:': 2,
'Ownership ': 2,
'A successful candidate will be involved in some or all of the following tasks:': 2,
'Strong understanding of a business domain (e.g. Supply Chain, Marketing, Revenue Management)': 2,
'Permanent Role + AWS + VB': 2,
'Basic up to 5.5k (Senior Executive Level with experience)': 2,
'Basic up to 9k (Principal Analyst Level with experience)': 2,
'The second promise - a good place to work': 2,
'Architecture & Design': 2,
'Testing': 2,
'Requirements for Research Scientists': 2,
'T-SQL, stored procedures and database design': 2,
'Singaporeans and relevant preferred': 2,
'If the following describe you, then you could be the one!': 2,
'Project Overview': 2,
'Lee Kong Chian School of Medicine invites applications for:': 2,
'Research Fellow in the laboratory of Associate Professor Eric Yap': 2,
'Skills & qualifications:': 2,
'I. Education': 2,
'II. Experience': 2,
'III. Knowledge, Skills, Abilities': 2,
'We are seeking for a highly qualified and motivated individual to take on a significant role in the ': 2,
'AI and Digital Innovation': 2,
' Research Group at SERI.': 2,
'Your Job': 2,
'Senior Data Scientist': 2,
'The Job / Responsibility': 2,
'Characteristic we look for ...': 2,
'Job Background/context:': 2,
'Knowledge/Experience:': 2,
'Essential': 2,
'Desirable': 2,
'Skills: (technical skills)': 2,
'Qualifications: ': 2,
'Senior Data Scientist ( Electric Vehicles )': 2,
'retained search': 2,
'leading International name': 2,
'Renewables Industry': 2,
'Chemical Engineering or': 2,
'Analytical Research covering Organic analysis techniques': 2,
'GC-MS, GCxGC, HPLC, LC-MS/MS, GPC, FTIR': 2,
'OR': 2,
'Inorganic Analys': 2,
'techniques : ICP-MS/MS, coulometry, CHN, XRF, XRD, CIC, IC, N/S-': 2,
'ROLE RESPONSIBILITIES': 2,
'R, Python, SQL, Excel.': 2,
'Student Technology, Agile & Readiness Training (S.T.A.R.T) Program': 2,
'Program Highlights:': 2,
'Program Locations:': 2,
'Primary Responsibilities:': 2,
'Program Eligibility/Qualifications:': 2,
'Preferred skills:': 2,
'Principal Education Research Scientist': 2,
'(OER SERS: OER) ': 2,
'Job scope': 2,
'Good to have\xa0': 2,
'Ang Mo Kio': 2,
'Database (ORACLE to MSSQL)': 2,
'Basic up to $6500 + Bonus': 2,
'Working Hours: ': 2,
'Who you are:': 2,
'You’re no doubt a data whiz': 2,
'you’re known to be both a problem-solver and an opportunity-explorer.': 2,
'you have the necessary hard, and soft, skills to succeed.': 2,
'Your role involves:': 2,
'Your background:': 2,
'Ideally, you should have:': 2,
'\xa0\xa0Good-to-have:': 2,
'\xa0Professional Qualification\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0': 2,
'What you will get:': 2,
'What it is like working here': 2,
'Non-technical\xa0': 2,
'Technical\xa0': 2,
'qualified Data Scientist': 2,
'Research Associate (Computer Science/Engineering/Electronic Engineering)': 2,
'Why Join Us': 2,
'Key Benefits:': 2,
'Develop and support enterprise data services, and ensure operational stability and performance through continuous optimization.': 2,
'data engineer or backend developer in a big data field.': 2,
' Software Development Life Cycle (SDLC) processes, and Agile methodologies like Scrum and Kanban.': 2,
'Sourced Values': 2,
'Data activities': 2,
'Systems activities': 2,
'Skills & Experience': 2,
'About aiQ': 2,
'Data Analytics Lead Responsibilities': 2,
'Required skills': 2,
'What\xa0': 2,
'you': 2,
'’ll achieve': 2,
'You': 2,
'\xa0will:': 2,
'Essential Requirements': 2,
'Desirable Requirements': 2,
'Job\xa0ID:\xa0': 2,
'5 days work week - Monday to Friday (8.30 am to 5.30pm)': 2,
'Play a leadership role in the 6G research;': 2,
'About the job': 2,
'What We Need from You': 2,
'digital transformation and driving digital changes in organization such as automation, process optimizations and data modelling are highly desirable.': 2,
'You will\xa0be\xa0involved in:': 2,
'Our ideal candidate:': 2,
'Minimum qualifications:': 2,
'Preferred qualifications:': 2,
'About the NLP team': 2,
'Data Management.': 2,
'Technical requirements': 2,
'Up to $5,500, Permanent Role with AWS + 3 months Variable Bonus': 2,
'Entry level is welcome to apply': 2,
'By end of internship, you will': 2,
'JOB SUMMARY': 2,
'JOB QUALIFICATIONS': 2,
'KNOWLEDGE REQUIREMENTS': 2,
'Accessibility Accommodation': 2,
'Together we:': 2,
'\ufeffHence\xa0the\xa0following\xa0are\xa0key:': 2,
'What can you expect?': 2,
'How can you succeed?': 2,
"If you're looking for a challenging ground to push your limits, this is the team for you!": 2,
'Professional Skills': 2,
'The Ideal Candidate': 2,
'[About the Team]': 2,
'Qualifications and Competencies': 2,
'Research Engineer (Computer Engineering/Computer Science/Electronics Engineering)': 2,
'Features of TTSP': 2,
'NOT to INCLUDE': 2,
'The product will:': 2,
'What you will be doing:': 2,
'What you should have:': 2,
'POSITION RESPONSIBILITIES': 2,
'EDUCATION': 2,
'IDEAL CANDIDATE': 2,
"What You'll Need": 2,
'Basic': 2,
'Knowledge of SQL and database structure': 2,
'Need to know a little bit about gaming metrics': 2,
'We are seeking our future colleague to:': 2,
'Permanent/Full-Time Position': 2,
'Central location (within walking distance to Raffles Place station)': 2,
'Handle AI, Blockchain, Data Mining, Data Analytics, IT Audits, Digital Forensics, and Cyber Security ': 2,
'Big Plus': 2,
'Essential Skills': 2,
'Role requirements': 2,
'Role specific competencies and traits': 2,
'Technical skills include': 2,
'Performance measurements': 2,
'Mandatory': 2,
'Mandatory ': 2,
'The ideal candidate will need to have the following qualities and experience': 2,
' Job Details': 2,
'Role': 2,
'Other Information ': 2,
'To succeed in this role, you are likely to have the following attributes': 2,
'ETL processing': 2,
'System Maintenance\u200b\u200b\u200b': 2,
'Query and visualization': 2,
'Job scope and responsibilities': 2,
'Additional Knowledge Skills would be an advant': 2,
'What to expect': 2,
'Specific criteria to succeed (other than those listed above)': 2,
'Preferred (Additional requirements which are not necessary pre-requisites)': 2,
'The candidate should possess ': 2,
'Key responsibilities': 2,
'Qualifications / Experience': 2,
'Working Conditions': 2,
'Other responsibilities 20%': 2,
'The officer will be required to but not exclusive to': 2,
'Analytics': 2,
'Successful candidates will be responsible for': 2,
'This includes': 2,
'Key responsibilities include': 2,
'At least, 2 to 3 technical certifications in any of the below technologies': 2,
'Qualification & Field of Study': 2,
'Other Requirements': 2,
'A successful candidate will be involved in some or all of the following tasks': 2,
'Skills & qualifications': 2,
'Skills (technical skills)': 2,
'Qualifications ': 2,
'Program Locations': 2,
'Primary Responsibilities': 2,
'Program Eligibility/Qualifications': 2,
'(OER SERS OER) ': 2,
'Good to have ': 2,
'Your role involves': 2,
'Your background': 2,
'Ideally, you should have': 2,
' Good-to-have': 2,
' Professional Qualification ': 2,
'What you will get': 2,
'Non-technical ': 2,
'Technical ': 2,
'Our ideal candidate': 2,
'Minimum qualifications': 2,
'\ufeffHence the following are key': 2,
'The Role Responsibilities': 2,
'The product will': 2,
'What you will be doing': 2,
'What you should have': 2,
'We are seeking our future colleague to': 2,
'Purpose of the post': 1,
'For Research Fellow Position:': 1,
'Preferred Job Requirements:': 1,
'\xa0APPLY NOW': 1,
'We regret that only short-listed candidates will be notified.': 1,
'Scope of employment shall include:': 1,
'Job Specific': 1,
'Position: Data Analyst': 1,
'Employment Type: 1-year Agency Contract (Highly Renewable)': 1,
'Location: Changi Business Park': 1,
'Tangspac Consulting Pte Ltd': 1,
'\xa0The officer will be required to but not exclusive to:': 1,
'DUTIES & RESPONSIBILITIES\xa0': 1,
'Data Analytics': 1,
'Data Management': 1,
'Business Insight Enablement': 1,
'Reporting Standardization and Automation': 1,
' jermaine#triton-ai.com': 1,
'Job Roles:': 1,
'APPLY NOW': 1,
'10 Anson Road #19-12 International Plaza Singapore 079903': 1,
'Summary': 1,
'Bioprocess Design Centre\xa0': 1,
'Additional Desirable Skillsets/Experience:': 1,
'Working Conditions:': 1,
'Will you be part of the extraordinary?': 1,
'Your role is only the beginning\u200b': 1,
'What should you have:': 1,
'Additional experience it would be great to have:': 1,
'. \xa0': 1,
'Responsibilities: -': 1,
'\xa0 Essential Knowledge:': 1,
'Data Engineer ': 1,
'ABOUT FRASERS PROPERTY': 1,
'ABOUT THE ROLE\xa0': 1,
'WHAT YOU WILL BE DOING\xa0': 1,
'WHAT WE ARE LOOKING FOR\xa0': 1,
'Diversity brings us closer to the communities we serve': 1,
'Part of your life. Part of tomorrow.': 1,
'Act as an analytics translator': 1,
'prepare for complex data analysis': 1,
'models ': 1,
'Facilitate interactive design sessions': 1,
'optimize visualization experiences': 1,
'Support supply chain in the creation of analytical solutions': 1,
'formulate problem/opportunity statements': 1,
'enable effective delivery': 1,
' improve AI solutions efficiency and effectiveness': 1,
'Stay up to date': 1,
'incorporate the most feasible practices': 1,
'more than 2 years ': 1,
'Business Analyst ': 1,
' SAP Predictive Analytics, revenue ': 1,
'supply chain (S&OP, ERP) databases': 1,
'Data Visualization, Tableau': 1,
'SQL/Access databases': 1,
'SAP Business Objects/Intelligence': 1,
'Python ': 1,
'JavaScript, C': 1,
'C#, Java': 1,
'Artificial Intelligence ': 1,
'(Python, R': 1,
' Semiconductor process ': 1,
'Data Management Office (DMO)': 1,
' Big Data Analytics Centre (BDAC': 1,
'Additional Knowledge and Skills would be an advantage:': 1,
'We are building and expanding the best digital bank in ASEAN': 1,
'The role': 1,
'Understanding of:': 1,
'Operate the SiTadeL Supply Chain Control Tower and its Applications:': 1,
'Analyse operational data and present insights from a business perspective\xa0': 1,
'Any 2 to 3 of the below technical certifications:': 1,
'Good to have for added advantage:': 1,
'“Apply Now”': 1,
'Summary of Job Responsibilities': 1,
'Product Analytics:': 1,
'Overall:': 1,
'Location:': 1,
'Working Hours:': 1,
'Duration:': 1,
'Notice:': 1,
'Cessation of Collection of full NRIC Numbers:': 1,
'Abilities/Aptitudes:': 1,
'The ideal candidate should possess the following qualities:': 1,
'Our Team:': 1,
'Your Responsibility:': 1,
'1.\xa0\xa0\xa0\xa0\xa0\xa0Understanding Business Needs for Data': 1,
'2.\xa0\xa0\xa0\xa0\xa0\xa0Ensure Smooth Operations of Group Cloud Data Infrastructure': 1,
'3.\xa0\xa0\xa0\xa0\xa0\xa0Build and Maintain Data Pipelines': 1,
'4.\xa0\xa0\xa0\xa0\xa0\xa0Knowledge Management and Team Mentoring (Senior Position)': 1,
'Job Responsibilities include:': 1,
'Job Summary\xa0': 1,
'Research Officer / Junior Scientist\xa0': 1,
'·\xa0\xa0\xa0\xa0\xa0\xa0\xa0': 1,
'Job Requirements & Attributes': 1,
'Jobscope:': 1,
'Key areas of focus, include:': 1,
'How do we work': 1,
'Principle Responsibilities:': 1,
'Sample Vitrification:': 1,
'Data Collection:': 1,
'Data analysis:': 1,
'Assistant Vice President, Senior Digital Analyst': 1,
'About Digital Transformation, Innovation & Data Division (DTID)': 1,
'Thank you for your interest and application to this role. Please note that only short-listed candidates will be contacted.': 1,
'[Order Number:': 1,
'2208-62766': 1,
'CV_Edward(at)goodjobcreations.com.sg': 1,
'Research Scientist / Principle Engineer –': 1,
'Technology Development\xa0': 1,
'The following are\xa0added advantages:': 1,
'Data Visualization Lead.': 1,
'technical': 1,
'non-technical': 1,
'business partners': 1,
'analysis, design': 1,
'development': 1,
'data visualization': 1,
'Analytical and Reporting': 1,
'BusinessObjects, Qlik Sense, PowerBI': 1,
'Design, develop': 1,
'QlikSense, BO, Power BI': 1,
'Stability': 1,
' remuneration': 1,
'competitive': 1,
'About Us:': 1,
'Key areas of focus, include:\xa0': 1,
'Key Strategic Data Engineering Role': 1,
'Java and SQL': 1,
'Talend': 1,
'MUST be currently based in Singapore and has relevant working experience in Singapore': 1,
'About the Product Owner (Data & BI Hive) role:': 1,
'degree': 1,
'12+ years of experience': 1,
'Required Technical Competencies:': 1,
'Wong Jing Kai': 1,
'Beldric Chua, at 6590 9920 ': 1,
'Skills/Background:': 1,
'Work Scope:': 1,
'The ideal candidate should have:': 1,
'Advantageous but not a necessity will be:': 1,
'*To apply, send your resume to josephyap[at]recruitfirst.com.sg with reason(s) for leaving past employment, last drawn and expected salary.': 1,
'All applications will be treated with strictest confidentiality. We regret that only shortlisted candidates will be notified. Thank you.': 1,
'RecruitFirst Pte Ltd E.A. 13C6342': 1,
'Joseph Yap Shi Hao (R1767577)': 1,
'The primary role of the Biostatistician is to provide basic and advanced statistical support for clinical studies and assist with study design, literature review, data analyses, and reports of findings. The incumbent will work under Prof Zhang Cuilin’s team, specializing on conducting research on Global Asian women’s health cohorts on cardio-metabolic disease, nutrition and reproductive health, mental health and epidemiology based in Singapore.': 1,
'Other ad-hoc analyses as required by the PI': 1,
'Meticulous, possess good interpersonal and organising skills \xa0': 1,
'Option for Part-time commitment': 1,
'As the Big Data Lead, your will provide leadership in the following:': 1,
'About us:': 1,
'DATA WAREHOUSE ANALYST': 1,
'THE ROLE:': 1,
'THE PERSON:': 1,
'PREFERRED EXPERIENCE:': 1,
'ACADEMIC CREDENTIALS:': 1,
'Bioinformatician (Structural Biology)': 1,
'Research Associate': 1,
'Tasks:': 1,
'Academic Qualification:': 1,
'Experience:': 1,
'Ref No.: ': 1,
'2208-62973': 1,
'Software Engineer ': 1,
'Big Data Exploratory and Analysis': 1,
'About the Company': 1,
'cv_janice(at)goodjobcreations.com.sg': 1,
'Duties': 1,
'To apply, please click apply now or send your CV to aliciasl.lim[at]recruitfirst.co or WA 82280387': 1,
'Abilities / Aptitudes:': 1,
'About DKSH Smollan Field Marketing': 1,
'DKSH Smollan Field Marketing (DSFM) ': 1,
'join us today if you are ready to “Drive growth. Be the difference.”': 1,
'General Responsibilities:': 1,
'Data Literacy:': 1,
'Skills and Knowledge:': 1,
'Soft skills:': 1,
'\xa0Duties and Responsibilities:': 1,
'2206-62429': 1,
'Job summary': 1,
'Key job responsibilities:': 1,
'credit, risk and financial reporting': 1,
'data': 1,
'Required Qualifications:': 1,
'Title:\xa0Researcher (Biology)': 1,
'Reporting to: Head of Biological Research': 1,
'Experiences:': 1,
'2210-63330': 1,
'Title:': 1,
'What impact will you make?': 1,
'Work you’ll do': 1,
'Typical tasks will include:': 1,
'Due to volume of applications, we regret only shortlisted candidates will be notified.': 1,
'Required Skills': 1,
'Qualified Lead/Senior Data Engineer': 1,
'leading a data team': 1,
'Well-Established Series B': 1,
'block-chain technology': 1,
'headquartered in Singapore': 1,
'Lead/Senior': 1,
' Qualified Lead/Senior data engineer,': 1,
'8 years': 1,
'data engineering': 1,
'Leadership ': 1,
' people management': 1,
'ClayOPS': 1,
'Data Solution Architect': 1,
' -\xa0': 1,
'The ideal candidate:': 1,
'define technology solutions for business requirements/capability roadmap': 1,
'define the future architecture and application roadmap': 1,
'Create/maintain': 1,
'Influence': 1,
'Monitor ': 1,
'Collaborate across the technology organization': 1,
'Drive change across the Data engineering team': 1,
'architecture, design pattern, framework and new way of working': 1,
'Functional knowledge of Retail bank, Wholesale, Global Markets, Finance, Risk and Compliance oriented products & business processes\xa0': 1,
'Familiarity with Marketing Automation and Analytics solutions and technologies ': 1,
'Deep experience in marketing automation technologies and processes': 1,
'defining the associated operating models': 1,
'Salary and Benefits:': 1,
'Learning and Development:': 1,
'Work Arrangement:': 1,
'MAIN DUTIES AND RESPONSIBILITIES': 1,
'Job\xa0Title:': 1,
'Job\xa0Duration:': 1,
'The Core Objectives:': 1,
'Essential Experience:': 1,
'Desirable Experience:': 1,
...}
At this point we can do a manual mapping for most of the headers or we can try to use clustering to group the headers. Ultimately we are expecting two headers: Job Description and Candidate requirements
from transformers import AutoTokenizer, AutoModel
import torch
from datasets import Dataset
model_name = "distilbert-base-uncased"
tokeniser = AutoTokenizer.from_pretrained(model_name)
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
# Computes them on the GPU if available, else its on the CPU
model = AutoModel.from_pretrained(model_name).to(device)
Some weights of the model checkpoint at distilbert-base-uncased were not used when initializing DistilBertModel: ['vocab_layer_norm.bias', 'vocab_transform.weight', 'vocab_layer_norm.weight', 'vocab_transform.bias', 'vocab_projector.bias', 'vocab_projector.weight']
- This IS expected if you are initializing DistilBertModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).
- This IS NOT expected if you are initializing DistilBertModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).
encoded_jd_headers = tokeniser(list(sorted_jd_headers), padding=True, truncation=True)
encoded_jd_headers.keys()
dict_keys(['input_ids', 'attention_mask'])
def tokenise(sample_data):
return tokeniser(sample_data['headers'],padding=True, truncation=True)
# Need to extract the last hidden state of the output of the encoder
def extract_embeddings(batch):
# place model inputs on the GPU
# the tokenizer model input names are all of the names of the fields from the tokenizer
# like input_ids, attention_mask
inputs = {k:v.to(device) for k,v in batch.items() if k in tokeniser.model_input_names}
# we use the model to take all of the inputs per batch, generate the output
# and then use the output to extract the last hidden states
with torch.no_grad():
last_hidden_state = model(**inputs).last_hidden_state
# Return vector the the [CLS] token
# we use numpy as the map function requires it to be in this format
return {'hidden_state':last_hidden_state[:,0].cpu().numpy()}
pd_jd_headers = pd.DataFrame(list(sorted_jd_headers.keys()))
pd_jd_headers.columns = ['headers']
dataset = Dataset.from_pandas(pd_jd_headers)
dataset
Dataset({
features: ['headers'],
num_rows: 1508
})
dataset_tokenized = dataset.map(tokenise, batched=True, batch_size=None)
dataset
Dataset({
features: ['headers'],
num_rows: 1508
})
dataset_tokenized
Dataset({
features: ['headers', 'input_ids', 'attention_mask'],
num_rows: 1508
})
selected_cols = ["input_ids", "attention_mask", "headers"]
dataset_tokenized.set_format("torch", columns=selected_cols)
dataset_last_hidden_state = dataset_tokenized.map(extract_embeddings, batched=True)
dataset_last_hidden_state[0]['hidden_state']
tensor([-8.3159e-02, 2.4526e-01, -1.1860e-01, -1.0044e-01, 1.8381e-01,
2.4405e-02, 2.9303e-01, 3.0645e-01, -1.6347e-01, -3.1733e-01,
-1.9686e-01, 1.3585e-01, 1.3408e-01, 1.4591e-01, 2.2979e-02,
2.1816e-02, 1.0117e-01, 3.5235e-01, 1.1339e-01, -4.1862e-01,
-1.9952e-01, -3.4001e-01, -5.0375e-02, -9.9727e-02, 1.2963e-01,
-7.0560e-02, -4.5423e-02, 6.8624e-02, 3.3571e-02, -8.1304e-02,
1.2321e-02, -4.3648e-02, 1.5348e-01, -5.3622e-02, 1.6152e-01,
-1.3282e-02, 7.4976e-02, -1.3052e-01, 6.3866e-02, -1.5919e-01,
-6.9070e-02, 1.1721e-01, 1.9296e-01, -4.2959e-02, 1.2117e-01,
-3.8345e-02, -2.0058e+00, -3.4739e-01, -1.3723e-01, -1.3554e-01,
4.1981e-02, 9.3409e-02, -1.1866e-02, 3.0503e-01, 3.2604e-01,
2.4737e-01, -1.6239e-01, 1.4099e-01, -5.1979e-02, 2.2247e-03,
4.2128e-01, 1.5152e-01, -1.0563e-01, -8.5790e-02, 2.1942e-01,
-7.3279e-02, 8.5589e-03, 2.0352e-01, -4.0838e-01, 2.9622e-01,
-4.7210e-01, -1.0657e-01, 2.3042e-01, 1.1717e-01, -1.0232e-01,
8.5842e-03, -5.7236e-02, 9.3616e-02, -2.4407e-01, -4.7492e-02,
5.6970e-02, 4.7948e-01, 2.3723e-01, -9.3650e-02, 2.0163e-01,
1.1841e-01, -2.2814e-01, -3.3459e-01, 4.1924e-01, 5.9528e-01,
9.8760e-02, 1.4468e-01, 2.7787e-02, 3.3058e-01, 3.1739e-01,
-2.5000e-01, -2.7131e-01, 5.3431e-02, 3.0947e-01, 2.1653e-01,
1.5403e-01, 1.0178e-01, 1.6296e-01, -2.6924e-02, -1.0578e-01,
-9.9305e-02, 2.6168e-02, -3.3868e-01, -3.3623e-01, -2.6099e+00,
5.3795e-02, 1.1550e-01, -2.0620e-01, -3.3134e-01, -8.2798e-02,
3.1718e-01, 2.7698e-01, 1.2307e-01, 7.1653e-02, 6.3067e-02,
-7.4541e-02, 3.3667e-01, -1.4820e-01, 6.0492e-02, -1.3728e-01,
2.5919e-01, 2.2147e-02, -1.2389e-01, 2.9520e-01, 4.5645e-02,
3.1800e-02, 2.2226e-01, -1.8158e-03, 8.1639e-02, -2.6556e-01,
1.3309e-01, 2.2260e-01, -3.7507e-02, -2.8658e-01, 4.2824e-02,
-5.0311e-01, -2.1915e-01, -2.8198e+00, -1.6739e-03, 3.3441e-01,
-3.3772e-01, 5.3714e-02, 6.7790e-02, 4.2773e-02, 3.1478e-01,
1.0796e-01, 1.2863e-01, -7.7191e-02, 1.3445e-01, -2.5535e-01,
9.2215e-02, 1.3365e-02, -3.1710e-02, 1.7775e-01, 1.8681e-02,
1.0219e-01, 1.0260e-03, -2.2789e-01, 1.3123e-01, -1.7114e-01,
3.6266e-01, -8.1386e-02, -3.7674e-02, 2.2323e-01, 2.3118e-01,
-3.1092e-01, 1.9286e-02, 2.4548e-01, -2.1916e-01, 3.5323e-02,
2.2514e-01, 1.6080e-02, 3.5223e-01, 1.6590e-01, 9.3873e-02,
-1.0030e-01, 3.5038e-01, 2.2222e-01, 3.0425e-01, -3.4902e-02,
-1.9303e-01, 1.4168e-01, -2.9882e-01, -5.3039e-02, 1.6727e-01,
-2.7434e-02, -2.2575e-01, 2.4847e-01, -1.7435e-01, 2.5860e-01,
-1.9824e-01, 2.4696e-01, -2.5196e-01, 5.5260e-02, 6.0343e-03,
-3.8573e-02, -1.8521e-02, -1.0178e-02, 1.0286e-01, -1.9889e-01,
3.6549e+00, 2.2690e-02, -2.0993e-01, 9.8944e-02, 1.1940e-01,
1.5552e-02, 9.7888e-02, -1.3478e-01, -2.5265e-01, 2.9331e-01,
-1.5764e-02, -8.2116e-02, 2.2792e-01, 4.0822e-03, -1.6617e-01,
4.6837e-01, 1.7610e-01, 1.1016e-01, 2.7082e-01, -4.0607e-01,
5.4186e-02, 1.5040e-01, 1.1816e-01, 1.3108e-01, -1.0496e+00,
2.1844e-01, -1.4028e-01, -2.4030e-02, 2.1682e-01, -2.7255e-01,
5.8861e-02, -2.0167e-01, -1.2716e-01, 1.2670e-01, -5.2980e-02,
-1.5352e-01, 3.1949e-01, 1.1049e-01, 7.5740e-03, -3.0216e-02,
1.7611e-01, 2.6935e-01, 2.3895e-01, 2.2338e-02, 2.3724e-01,
3.7939e-01, -3.4608e-01, -1.6901e-02, -4.0214e-01, -1.0879e-02,
7.3320e-03, 1.5886e-01, 5.6550e-02, -2.6849e-01, -2.0181e-01,
-1.9927e-01, 1.3482e-01, 3.2902e-01, 1.1742e-01, -1.2329e-01,
-2.0103e-01, 9.8409e-02, -3.5649e-01, 1.0017e-01, 1.5077e-01,
5.2144e-02, -1.4443e-01, -3.3896e-01, -4.1249e+00, -2.0813e-01,
6.2834e-02, 3.0126e-01, 2.1341e-01, -1.1461e-01, 1.3234e-01,
1.0814e-01, 1.0869e-01, -3.5646e-01, 3.7274e-01, 1.2259e-01,
1.0005e-02, 1.1135e-01, -4.0792e-01, 1.9688e-01, -1.8355e-02,
-4.7038e-01, 1.6061e-01, -9.9249e-02, -3.4789e-02, 4.6351e-01,
-2.3596e-01, -3.1772e-02, 4.2911e-01, 1.6186e-01, -2.3331e-01,
-2.4320e-01, -1.9619e-01, -8.7737e-02, -1.7730e-02, -2.6999e-01,
1.6885e-01, -1.7989e-01, -3.2757e-01, -2.2835e+00, 1.3737e-01,
-1.8142e-01, 5.9422e-04, 1.1645e-01, -2.6464e-01, 4.4971e-01,
-1.8254e-01, -2.1800e-01, 3.5088e-02, 5.1306e-02, -1.0073e-01,
1.2072e-01, 4.1001e-01, 5.4395e-02, 2.6088e-01, 2.8286e-01,
-1.7273e-01, 1.7378e-01, 1.3584e-01, 1.0527e-01, -1.4527e-01,
-1.5307e-01, -2.0752e-01, -2.9002e-02, 2.9754e-01, -5.2231e-01,
1.4999e-01, -3.8379e-01, -2.4623e-01, 4.0962e-02, -2.8970e-02,
-1.1880e-01, -1.6556e-01, -2.0248e-01, -2.2424e-01, -2.4611e-02,
3.1159e-01, 4.5383e-01, -1.6186e-02, -9.3870e-02, 4.7768e-01,
-1.5379e-01, 3.6676e-01, 3.9856e-01, 1.9786e-01, 7.8409e-03,
-3.0029e-01, 8.2256e-02, 1.9957e-01, 2.3271e-02, -2.7864e-02,
1.1809e+00, 2.3757e-04, 2.0679e-01, 1.0341e-02, 4.1568e-01,
1.8067e-01, -2.8651e-01, 1.4518e-01, 2.3919e-01, -2.4509e-01,
1.4548e-01, -2.7519e-02, -1.7486e-01, -3.3661e-01, 9.5006e-03,
-3.5136e-01, 9.5394e-03, -1.2443e-01, 1.2867e-02, 2.9326e-01,
-6.3665e-02, -8.7065e-01, -2.1903e-01, -3.3166e-01, 5.3722e-02,
1.5569e-01, 1.7800e-01, -6.6953e-02, -1.7331e-01, 1.0076e-01,
-1.5847e-01, 2.5383e-01, 7.2809e-02, 1.0659e-01, -3.0108e-03,
1.1412e-01, -6.8057e-01, -1.2187e-01, 1.2568e-01, 1.6787e-01,
3.4347e-01, 1.3369e-01, -2.0871e-01, 5.4664e-02, 2.6417e-01,
-8.0154e-01, -1.4058e-02, -2.1139e-01, -1.0863e-01, -2.2901e-01,
-2.3622e-01, 7.6453e-02, -7.0424e-02, -1.7555e-01, -2.4829e-01,
2.8876e-01, -3.0733e-02, 1.4203e-01, 1.6991e-01, 2.1748e-03,
1.9269e-01, 1.3765e-01, 6.0949e-01, 3.7891e-02, -6.4555e-02,
5.0572e-01, 1.5694e-01, 5.8607e-01, 1.7528e-01, 1.3721e-01,
1.1918e-02, -1.2303e-01, -8.8208e-02, -1.8407e-01, -6.8345e-02,
-4.0121e-01, -1.9779e-01, -8.5158e-02, 8.9843e-02, 1.9264e-01,
-1.3045e-01, -6.0273e-01, -9.9924e-02, -2.7479e-01, -9.3449e-02,
4.6695e-01, 4.2724e-01, 1.9968e-01, 1.0775e-01, 1.5858e-01,
-8.5873e-02, 2.6078e-01, -2.1636e-02, 3.5375e-01, -1.4249e-02,
3.3994e-02, 4.7999e-02, 2.6468e-01, -2.4666e-02, -1.8267e-01,
1.2789e-02, -9.0675e-02, -1.2862e-01, 3.4897e-04, 5.0609e-02,
-7.4146e-02, 1.7714e-01, -2.3609e-01, 1.0340e-01, 8.8904e-02,
-1.2794e+00, -3.7494e-02, -4.9354e-03, -9.0499e-02, -6.1313e-02,
-8.8627e-02, -2.9559e-01, 5.3950e-01, 2.7377e-01, -7.1293e-03,
5.2209e-02, -3.7331e-01, -4.8965e-02, -1.8641e-01, 2.4391e-01,
-1.5097e-02, 5.1496e-02, -7.2558e-02, 1.4221e-01, -7.8921e-02,
-1.4444e-01, 4.3602e-01, -9.6056e-02, 1.0359e-02, 3.2421e-02,
1.4775e-02, 3.2388e-02, 1.9961e-01, 8.7333e-02, -1.0625e-01,
1.1961e-01, -3.4061e-01, -5.1142e-01, 1.3257e-01, 2.1400e-01,
2.8295e-01, 7.6194e-02, -4.2492e-02, 1.9451e-01, -4.8954e-02,
-3.7000e-01, 5.9047e-02, 1.5857e-01, 8.4368e-02, 3.0647e-01,
8.1455e-02, -3.0012e-01, 8.5365e-02, -7.7555e-02, 7.8729e-02,
-1.1491e-01, -4.0080e-03, -1.9972e-01, -1.0112e-01, -1.9151e-02,
7.0894e-02, 2.4036e-02, 1.0012e-01, -1.5064e-01, 4.3772e-02,
3.7080e-01, -2.9470e-01, 1.3011e-01, 1.4782e-01, -1.6982e-01,
-6.9682e-01, -2.8643e-01, 9.2459e-02, -2.1515e-01, 1.2916e-01,
6.2381e-02, -9.4078e-02, -1.3971e-03, 2.0959e-01, -3.6625e-01,
-5.8965e-02, 2.9113e-01, 5.7797e-02, -5.9780e-04, -3.6298e-02,
-3.5508e-02, -3.6468e-01, -1.1557e-01, 1.7987e-01, -3.6270e-02,
-1.3874e-01, -3.1845e-02, 1.4094e-01, 6.5306e-03, 1.3636e-01,
-3.4494e-01, -3.6180e-02, 1.5186e-01, 2.5236e-01, 1.1239e-01,
-8.0030e-02, 9.6994e-02, 1.7371e-01, 2.2071e-02, 7.1977e-02,
8.3975e-02, 2.7376e-01, 1.8177e-01, 2.4089e-02, -6.4367e-02,
1.7838e-01, 8.3615e-02, -4.5140e-02, -3.5771e-01, 9.5647e-02,
-6.4739e-02, -1.8261e-02, -2.4059e-03, -1.6549e-02, 2.2522e-01,
-4.6369e-01, 9.0146e-02, 7.6585e-02, 1.9315e+00, 2.8300e-01,
1.1080e-01, -6.3759e-02, 2.7073e-01, 1.4523e-01, 3.3900e-02,
2.8948e-01, -5.7907e-01, 2.3136e-01, 1.8265e-01, -1.1789e-01,
-1.6438e-01, 2.5338e-01, 1.3654e-01, 2.5153e-01, 2.6543e-02,
-8.6906e-02, -3.2557e-01, 1.0795e-01, -3.7407e-01, 6.3391e-01,
3.1047e-01, -8.9829e-02, 6.8436e-02, 2.8578e-01, -1.4819e-02,
-2.9205e-01, 1.0400e-01, -1.5364e-01, -1.6838e-01, -2.3144e-02,
2.1554e-01, 5.0929e-01, -7.6215e-02, -1.9893e-01, -7.9035e-02,
-3.8374e-01, -8.0158e-02, 2.7912e-02, -1.4357e-02, -4.0916e-01,
3.6282e-01, 8.9356e-02, 1.2956e-01, 5.7301e-01, -1.3309e-01,
-3.3346e-01, 1.1255e-01, 1.1006e-01, -4.4993e-04, -5.5244e-02,
-8.3840e-02, 4.0439e-02, -4.8717e-02, -7.7488e-02, -4.8230e-02,
-1.7480e-01, 7.0591e-04, 3.9514e-01, -1.4555e-03, 3.9654e-01,
4.1050e-01, 1.5367e-02, 1.8259e-01, 1.8472e-01, -3.8213e-01,
2.7396e-01, 1.2190e-01, 1.8030e-01, 6.4409e-03, -1.0892e-01,
2.6971e-01, 2.2078e-01, 2.5845e-02, -6.7110e-02, 3.9223e-01,
1.8223e-01, -3.8357e-02, -2.8996e+00, -1.0956e-01, -6.3624e-02,
1.6039e-01, -1.9631e-01, 3.7377e-01, -7.6559e-02, -2.9008e-01,
-2.0723e-02, -1.5067e-01, 1.3617e-01, 1.5094e-01, 2.7144e-01,
-9.2560e-02, 1.6141e-01, 1.8328e-01, -2.8191e-02, -2.1182e-01,
-1.6328e-01, 1.9628e-01, -3.5380e-02, 1.6530e-02, -2.4865e-01,
-1.8237e-01, -5.8112e-01, -1.6356e-01, 9.0949e-02, -3.2929e-01,
8.8740e-02, 1.9555e-01, -1.9107e-01, 2.2064e-01, 3.2894e-02,
1.6261e-01, 2.0736e-01, -1.3084e-01, 2.0705e-01, -6.3796e-02,
-9.0238e-02, 3.2499e-01, -3.5737e-01, 8.6359e-02, -6.1447e-02,
1.1494e-01, -1.2792e-01, -2.1531e-03, 3.0520e-01, -1.6083e-01,
4.5644e-01, -2.7193e-01, -4.2490e-01, 1.5962e-01, 1.2043e-01,
-4.8766e-02, 1.4901e-01, 3.3676e-01, 2.6843e-01, 3.3154e-01,
-3.5120e-03, -1.5793e-01, -3.1727e-03, 3.3583e-01, -6.3563e-02,
2.4127e-01, 3.2572e-01, -1.4269e-01, -1.2222e-01, -1.0670e-01,
2.0777e-01, 2.3102e-01, 6.9754e-02, -1.6485e-01, 1.6098e-02,
2.7608e-02, 2.2209e-01, 9.5946e-02, 1.0587e-01, 2.5550e-01,
2.5407e-01, 2.5943e-01, 3.3410e-02, -3.3174e-01, -2.1904e-01,
1.0104e-01, 3.9340e-01, -7.9026e+00, -1.3343e-01, -2.8498e-01,
-5.7692e-02, 2.1910e-01, -2.5078e-01, 2.1169e-01, -3.6190e-01,
2.0974e-01, -1.1062e-01, -2.3398e-02, -1.7978e-01, -3.4428e-02,
-2.6736e-01, -6.0605e-02, 3.0298e-01])
# Lets do some clustering
X_train = dataset_last_hidden_state['hidden_state']
from sklearn.cluster import KMeans
clustering_model = KMeans(n_clusters=3)
clustering_model.fit(X_train)
C:\tools\miniconda3\envs\scrapper-env\lib\site-packages\sklearn\cluster\_kmeans.py:1334: UserWarning: KMeans is known to have a memory leak on Windows with MKL, when there are less chunks than available threads. You can avoid it by setting the environment variable OMP_NUM_THREADS=6.
warnings.warn(
KMeans(n_clusters=3)In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
KMeans(n_clusters=3)
labels = clustering_model.predict(X_train)
import matplotlib.pyplot as plt
# We appear to have a good spread , lets inspect the outcome
plt.hist(labels)
(array([274., 0., 0., 0., 0., 664., 0., 0., 0., 570.]),
array([0. , 0.2, 0.4, 0.6, 0.8, 1. , 1.2, 1.4, 1.6, 1.8, 2. ]),
<BarContainer object of 10 artists>)
len(dataset_tokenized['headers'])
1508
len(labels)
1508
# Clustering based just on the headers may not be effective as the content may not matche with the header
list(zip(dataset_tokenized['headers'], labels))[:50]
[('Job Requirements', 1),
('Responsibilities', 1),
('Qualifications', 1),
('Job Responsibilities', 1),
('Requirements', 1),
('Job Requirements:', 1),
('Key Responsibilities', 1),
('Job Description', 1),
('Key Responsibilities:', 1),
('Responsibilities:', 1),
('Requirements:', 1),
('Preferred Qualifications', 1),
('Job Description:', 1),
('Minimum Qualifications', 1),
('The above eligibility criteria are not exhaustive. A*STAR may include additional selection criteria based on its prevailing recruitment policies. These policies may be amended from time to time without notice. We regret that only shortlisted candidates will be notified.',
0),
('Key Responsibilities:\xa0', 1),
('Job Requirements:\xa0', 1),
('Key Responsibilities ', 1),
('Job Requirements ', 1),
('Job Responsibilities:', 1),
('Overview', 2),
('Description', 2),
('Qualifications:', 1),
('JOB REQUIREMENTS', 1),
('Requirement', 2),
('More Information', 2),
('Main Duties & Responsibilities', 1),
('About UOB', 2),
('About the Department', 2),
('Be a part of UOB Family', 2),
('Our Requirements', 2),
('Application', 2),
('Job description', 1),
('Job requirements', 1),
('Learning Benefits', 1),
('Education', 1),
('What we are looking for', 2),
('What we are looking for:', 2),
('Coding Skills:', 1),
('Profile', 2),
('Research and Comprehensive Skills:', 1),
('Position Overview', 2),
('About the Role', 2),
('The Job', 2),
('What to Expect', 2),
('About the Team', 2),
('.', 2),
('Preferred qualifications', 1),
('What you will be working on:', 2),
('Responsibilities of Research Scientists', 1)]
Manual Mapping#
Eliminate headers with no values : I.e Sentences in bold but contain no lists or contains text but no bullet points
Remove punctuations to get rid of
Job Requirements:vsJob RequirementsRename, combine headers to appropriate ones
End result: we want to have 2 core headers with Job requirements (requirements from the candidate, qualficiations, and Job Responsibilities or Description (JD, or whatever that is demanded from the candidates)
jd_headers_list = ['description','responsibilities','responsibility','scope','purpose',\
'role','expect','do','accountabilities','activity','work']
jd_secondary_headers_list = ['',' ',':','\xa0']
jr_headers_list = ['requirement','skill', 'qualification','attributes','succeed','possess','experience','prefer','education',\
'certification','mandatory','essential','looking','candidate','expertise','competenc','profile']
import copy
TOTAL_JOB_RAW_DATA_COPY = copy.deepcopy(TOTAL_JOB_RAW_DATA)
data_copy = copy.deepcopy(data)
TOTAL_JOB_RAW_DATA_COPY[12][3]
{'Job Description': 'Provide customized research and analysis to identify, qualify, cultivate, solicit and steward donors and prospects.Conduct financial or biographical research and compose profiles on individuals, corporations and foundations to identify, qualify, and prioritize prospective donors; independently research, select sources for research and ensures accuracy of reports.Conduct web-based research of publicly available information and monitor news and publicly-available information from professional publications, press releases and major newspapers on prospects and potential prospects to provide comprehensive reports of personal, financial and relationship based information and for solicitation strategy recommendations.Work collaboratively with and as a liaison to fundraisers and senior leaders, work to increase the pool of potential leadership gift donors and provides highly customized and strategic information that helps build increase in giving..Analyze prospective donor information and succinctly present results as reports, charts, tables, dashboards and other visual aids.Process ad-hoc requests for research as they are received and ensure all requests are completed accurately and in a timely manner.Evaluate research tools and emerging technologies and keep abreast of research trends and data management trends in the field of prospect research and management.Assist in developing best practices in prospect research and management in order to recommend ways to create efficiencies..Utilizes and broadens knowledge of prospect research methodologies, sources, and results.',
'Qualifications': 'Proficiency in using Business Intelligence tools (e.g. Power BI, Tableau or Qlik Sense).Knowledge of database, ETL and data API concepts..Proficiency in statistical computer languages (R, Python, MATLAB) to manipulate data and draw insights from large data sets..Experience using in one or more of the following techniques/methods: statistical and predictive modelling techniques, clustering and classification techniques, text analytics, and optimization methods..Knowledge of a second programming language (e.g. C++, C#/.NET, Java) is highly favourable..'}
for row_idx, row in enumerate(TOTAL_JOB_RAW_DATA_COPY):
jd = []
jr = []
others = []
header_list = row[3].keys()
for header_idx, header in enumerate(header_list):
# print(header)
# print(row[3][header])
# sometimes something can happen to the first header and get attributed to nothing for example:
if (header_idx==0) and (header in jd_secondary_headers_list):
jd.append(row[3][header])
elif any(sample in header.lower() for sample in jd_headers_list):
jd.append(row[3][header])
elif any(sample in header.lower() for sample in jr_headers_list):
jr.append(row[3][header])
else:
others.append([header, row[3][header]])
#print({'jd':jd,'jr':jr,'others':others})
TOTAL_JOB_RAW_DATA_COPY[row_idx][3] = {'jd':jd,'jr':jr,'others':others}
len(data['job_title'])
1436
TOTAL_JOB_RAW_DATA[155][3]
{'Your new role': 'Lead the design and delivery of data solutions at Group level for the various business units..Interact with business users and stakeholders to identify business needs and then translate them into technical requirements.Define group wide Data strategies and solutions for deployment, working with other Data Engineers, Data Analysts and Data Architects.Implement effective data management and governance tools, to ensure quality and consistency of data.Keep updated on latest data technologies in the market to be integrated..',
"What you'll need to succeed": 'At least 5 years of Data Analytics experience with 1 year of leadership and technical direction management.Strong knowledge working with various data tools such as ETL tools, data warehousing, and business intelligence tools..Business analysis skills to partner with users and translate technical requirements.Experience in designing data solutions and data structure classifications.'}
TOTAL_JOB_RAW_DATA_COPY[155][3]
{'jd': ['Lead the design and delivery of data solutions at Group level for the various business units..Interact with business users and stakeholders to identify business needs and then translate them into technical requirements.Define group wide Data strategies and solutions for deployment, working with other Data Engineers, Data Analysts and Data Architects.Implement effective data management and governance tools, to ensure quality and consistency of data.Keep updated on latest data technologies in the market to be integrated..'],
'jr': ['At least 5 years of Data Analytics experience with 1 year of leadership and technical direction management.Strong knowledge working with various data tools such as ETL tools, data warehousing, and business intelligence tools..Business analysis skills to partner with users and translate technical requirements.Experience in designing data solutions and data structure classifications.'],
'others': []}
other_section = {}
for row_idx, row in enumerate(TOTAL_JOB_RAW_DATA_COPY):
header_list = row[3]
others = header_list['others']
if len(others)!=0:
other_section[row_idx] = others
other_section
{9: [['For Research Fellow Position',
'A PhD degree in a relevant area, e.g., Control Engineering, Chemical Engineering, Automation, Systems Engineering, Computer Science or Applied Mathematics;.Good publication record;.Experienced in advanced process control, machine learning, and programming languages (e.g., python, Matlab, C++, etc).This position is available from July 2022 to December 2022.']],
21: [['Research Analyst/ Associate/ Fellow in Machine Learning and Artificial Intelligence (ML/AI)',
"Design research projects in close collaboration with the Institute's Directors (Prof. Sumit Agarwal / A.Prof Johan Sulaeman / A.Prof Zhang Weina) and Research Affiliates.Take ownership and responsibility for the successful delivery of research projects, ensuring they are completed within the required deadline and allocated budget, and meeting/exceeding project specifications and targets.Participate in pre-project activities such as identifying required resources to ensure project completion including staffing and organizational needs of the project team, and preparing high-level project plans with project timeline and resource requirements.Development of data analysis frameworks..Plan, supervise and perform (if necessary) the development of supervised and unsupervised machine learning tools to process information from various data sources, including commercial databases and alternative, non-traditional datasets..Plan, supervise and perform (if necessary) the generation of impact measures using machine learning, in collaboration with the Institute's Directors and other Research Fellows..Monitor progress of research projects and provide necessary interventions to ensure smooth completion of each project.Manage and coordinate project deliverables, ensuring their quality.Manage industry partners' expectation by understanding their needs and providing realistic expectations and scope of each project.Manage the collaborations with research and industry stakeholders, including providing periodic progress updates and deliverables for grant funding body or project sponsors.Preparation of results for industry communications, presentations, and academic articles for journal publications.Guide, mentor, and supervise research associates on the project team.Work closely with the rest of the SGFIN team to support SGFIN's activities and objectives.Academic background in the following subjects is preferred: computing, information systems, economics, business, finance, or related disciplines. A bachelor's degree is required, a master's degree in one of these subjects is preferred, with a PhD degree required for the Research Fellow position..Basic understanding of financial sector (banks and other financial institutions), financial markets, corporate financial statements, and credit risk analysis, is preferred..A thorough knowledge of the research field of machine learning and artificial intelligence is highly preferred..Programming skills, including knowledge of machine learning and artificial intelligence processes and tools, are highly desired, along with experience in conducting and supporting research and data analysis of research projects..Database management experience is desired..Proactive in problem solving..Good time management and planning skills with a commitment to delivery..Strong project management skills, with ability to manage several projects concurrently..Strong delivery management experience, with proven track records in managing and steering projects towards smooth execution and on time delivery..Adaptive to change with a positive work attitude..Enthusiastic team player who is self-driven, committed, and willing to take initiative..Strong interpersonal and leadership skills, effective in coordinating stakeholders, fostering teamwork, and leading high performance project team..Strong verbal and interpersonal communication skills, along with written communication skills."]],
23: [['Performance measurements', 'OTD.Developments QCD.']],
37: [['@', 'Only shortlisted candidates will be contacted.']],
38: [['What is needed',
'Minimum Degree in Computer Engineering, Computer Science and Electronics Engineering or its equivalent..Strong C++ and C# programming skills with at least 1-2 years as a data engineer..Possess good understanding of software development life cycles..Working experience in handling projects involving Data Analytics related work is a plus.Attained Agile-related certification such as Certified Scrum Master is a plus.']],
39: [['Must have a firm grasp and understanding of data structures, data modeling and software architecture using Python, R, Java and C, as well as deep knowledge of math, probability, statistics and algorithms.',
'Keen interest to support research and academic project work, with demonstrated ability in developing software solutions to technical problems..Possess strong supervisory skills and enjoy working closely with students in an educational environment..Self-starter with hand-on knowledge to setup network and server systems, manage software development environment and configuration activities to support testing and maintenance of information system, software applications, hosted services and websites..Demonstrate proficiency to keep abreast of development in the field and pursue professional certification programs. Possess of industrial certifications in relevant areas will be an added advantage..Professional Officers appointed at senior levels may have managerial responsibilities..A committed believer in continuous learning and self-improvement, with a strong sense of confidence in managing his/her own learning process..Good communication and interpersonal skills..Passionate about training, coaching and mentoring..Able to build and maintain strong working relationships with people within and external to the university..Self-motivated team player and flexibility to work across functions/teams in a dynamic hand-on environment..Possess strong analytical and critical thinking skills..Show strong initiative and take ownership of work..']],
49: [['What is needed',
'Minimum Degree in Computer Engineering, Computer Science and Electronics Engineering or its equivalent..Strong C++ and C# programming skills with at least 1-2 years as a data engineer..Possess good understanding of software development life cycles..Working experience in handling projects involving Data Analytics related work is a plus.Attained Agile-related certification such as Certified Scrum Master is a plus.']],
51: [['about the job',
'Work with end customers and internal vision system development team to define business challenges that require the use of various ML/DL & Computer Vision Algorithmic techniques.Analyze large sets of Visual (images and videos) and Sensor data and train machine learning models using commercial tools such as Cognex as well as open-source platforms(TensorFlow, pyTorch, OpenCV) for detection, classification, tracking, behavioral analysis, anomaly detection..Gather customers feedback and continuously improve existing ML models and algorithms..Write code (Python/C++/C#) to prepare, use, enhance and test models..']],
56: [['Next Steps', 'Only shortlisted candidates will be notified..']],
61: [['Data Engineer (Remote possible)',
'Competitive Remuneration Package.Remote working available.']],
73: [['Behavioural Modelling',
'Anomaly Detection.Physics Aware Simulation & Digital Twins.Forecasting.Agent-based Simulation.Computational Intelligence.Social & Cognitive Computing.Interpretable/Explainable AI.'],
[' Job Details',
'Good experience with end-to-end analytics process – ideation/value elicitation, data profiling, data preparation, analytical modelling, testing, validation, visualization, and solutioning.Strong problem solving skills, curiosity, and passion for data science.Experienced in SQL (any flavour), Python, R, Java, or C.Experience in designing ETL pipelines and BI reporting software.Familiar with open source analytical modelling, distributed computing, simulation, optimization, and visualization tools.Excellent coordination and time management skills to handle complex projects.Willing and enthusiastic about continuous learning.Experience/knowledge of big data engineering, software engineering, predictive maintenance will be a plus.']],
75: [['Other Information ',
'Hybrid Work Model (WFH / Raffles Place).Mon - Fri, 9am - 6pm .up to $6,500 per month .Candidates will be required to reside in Singapore .']],
82: [['OTHER INFORMATION',
'Location: Central (Raffles Place).Working days: Monday to Friday (office hour).Salary: Up to $10,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..']],
84: [['About us',
'Develop machine learning, deep learning algorithms and graph networks using multi-modality data sources such as imagery, text and tabular data for maritime, agriculture, infrastructure and sustainability applications.Work with software team to integrate developed algorithms into geospatial system products.Work with product, business development and sales teams to develop comprehensive geospatial products roadmap.Provide pre and post sales technical support.Degree / Master / PhD in Electrical Engineering, Computer Science, Mathematics or Statistics or equivalent.At least 5-10 years of relevant work experience.Proficient in machine learning and deep learning techniques.Proficient in Python programming and experience with libraries such as PyTorch, openCV, scikit-learn, XGBoost and Prophet.Experience with Git, containerisation and software development workflow.Knowledge of cloud platforms and development would be an advantage.Knowledge of working with geospatial data would be an advantage.Knowledge of Earth Observation Satellite systems and their imaging products would be an advantage.Applicants should be motivated, proactive, able to work independently and results oriented.Location: Ang Mo Kio.']],
85: [['Data Scientist',
'To improve time-series statistical modeling forecasting accuracy over an 18 month horizon using R and Python on the Google Cloud Platform.To build machine learning models using Python to automate business processes.To analyze structured and unstructured datasets to discover trends and patterns.To dig-in, understand the data, and to use creative thinking and problem-solving skills to design scalable and robust solutions.To present complex information using data visualization techniques through dashboards and reporting such as Microsoft Power BI..Bachelors or master’s degree in Statistics or Mathematics with experience in Python, time series, with a strong understanding and knowledge in time series forecasting; univariate, multivariate, and ensemble modeling..Experience with database technologies (SQL or others) in querying, creating databases, stored procedures; .Experience with Google Cloud Platform or similar (AWS, Microsoft Azure); Microsoft Power BI.']],
88: [['Data Engineer (Remote possible)',
'Competitive Remuneration Package.Remote working available.']],
101: [['Head of Generative Artificial Intelligence',
'Golden Opportunity with Global Defence Consultancy.Career Succession to become Head of Corporate Research Lab.Around S$200k annual package.']],
103: [['ETL processing',
'Responsible for data collection, cleaning, and conversion processing based on ElasticSearch Beats, Aws Step Function, and Aws Fluentd systems.'],
['System Maintenance\u200b\u200b\u200b',
'Responsible for data system maintenance of Elasticsearch, Athena, and Bigquery, including data maintenance, system maintenance, and routine troubleshooting.'],
['Query and visualization',
'Responsible for data query and visualization based on Esearch and Athena Bigquery systems, and can handle some data requirements of different departments..']],
109: [['Job Discription',
'Good experience with end-to-end analytics process – ideation/value elicitation, requirements definition, data profiling, analytical modelling, testing, validation, visualization, and solutioning.Strong problem solving skills and passion for artificial intelligence and data science research.Experienced in SQL (any flavour), Python, R, Matlab, Java, C++/ C.Experienced in preparing research papers using standard document preparation tools such as Microsoft Word or Latex.Familiar with distributed computing, modelling & simulation, optimization, and visualization tools.Excellent coordination and time management skills to handle complex projects.Willing and enthusiastic about continuous learning.']],
136: [['OTHER INFORMATION',
'Location: Central (Raffles Place).Working days: Monday to Friday (office hour).Salary: Up to $10,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..']],
148: [['Innovation Manager, Artificial Intelligence Lab, School of Computing (2 year contract)',
"Design, implement and oversee strategic initiatives, programs, and projects by working with faculty members, research scientists and engineers, students, and other partners and collaborators to plan and manage the scope, schedule, cost and resources involved. .Monitor and facilitate successful delivery and implementation of strategic initiatives, programs and projects, ensuring that they are completed on time while meeting the requirements, such as schedule and cost constraints. .Establish and improve program and innovation management practices, such as protocols, processes, tools, and documents as necessary. .Develop strong relationships across various stakeholders, including project teams, internal management, external collaborators and partners..Perform horizon scanning and identify new opportunities for novel initiatives, programs, and projects in AI to create social and economic impact..Bachelors or master's degree in a quantitative/technical field, e.g., Computer Sciences, Engineering, or equivalent. Experience in Artificial Intelligence (AI) or Data Science is highly desirable. .Experience and a proven track record in program management or managing multidisciplinary, cross-functional projects. .Solid understanding of project management processes and practices. Project management certification (e.g., PMP, PRINCE2) is desirable but not required. .Familiarity with R&D projects and government/industry R&D funding schemes .Excellent communication and presentation skills, able to articulate complex issues to different stakeholders verbally and in writing. .Strong interpersonal and leadership skills, effective in fostering teamwork with members of diverse background. .Occasional travel is expected. ."]],
176: [['Join the Dynamic Team!',
'Develop and maintain the machine learning system and platform, including training, inference, pipeline orchestration, to support core products;.Build the large scale systems for ML integrating with GPU, RDMA network and storage system;.Enrich the end to end machine learning experience, and provide machine learning resources for all the products of TikTok and its affiliates..']],
178: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics..Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
183: [['Team Intro',
'Build industry leading recommendation system, develop highly scalable classifiers and tools leveraging machine learning.Understand product objectives and machine learning techniques, improve model and recommendation strategy.Understand user behavior and apply Machine Learning algorithms to optimize push notification and production experience.Work with TikTok cross functional teams to grow TikTok in important regional markets.']],
185: [['Learning Benefits',
'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.']],
214: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
243: [['Performance measurements', 'OTD.Developments QCD.']],
244: [['Next Steps', 'Only shortlisted candidates will be notified..']],
246: [['OTHER INFORMATION',
'Location: Central (Raffles Place).Working days: Monday to Friday (office hour).Salary: Up to $10,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..']],
252: [['Position Data Analyst',
'Position: Data Analyst.Employment Type: 1-year Agency Contract (Highly Renewable).'],
['Employment Type 1-year Agency Contract (Highly Renewable)',
'Location: Changi Business Park.']],
257: [[' The officer will be required to but not exclusive to',
'Work in an innovative, dynamic and fast-paced environment to test, develop and optimize molecular and immune-diagnostics assays and novel analytical platforms.Work independently to plan, execute, access and evaluate efficiency and efficacy of experiments for the development and optimization of digital pathology and immuno diagnostics assay using a novel analytical platform..Apply design control and phase gate driven product development processes for the development of medical device systems and hardware platform products in accordance to ISO 13485..Fulfil ethics approval (IRB) requirements for clinical studies involving human subjects research. .Communicate with internal and external stakeholders on progress of experiments, present and interpret experimental results and make recommendations on ways to optimize product development in accordance to ISO13485..Write design optimization and verification plans and reports in accordance to ISO 13485..Write approval memos for justification and rationale for purchase of laboratory associated equipment and consumables..Handle biological and clinical samples (whole blood, cells or tissue).Perform routine sample preparation from biofluid and tissue samples.Execute product development experiments and data analysis.Conduct validation and verification test based on ISO 13485 processes.Oversee maintenance of records of lab associated material and equipment.']],
265: [['@', 'Only shortlisted candidates will be contacted.']],
271: [['Learning outcome',
'Hands-on technical experience with building reports and visualization using real business data.Problem solving skills.Good knowledge on how a service business works.Stake holder management.']],
276: [['Behavioural Modelling',
'Anomaly Detection.Physics Aware Simulation & Digital Twins.Forecasting.Agent-based Simulation.Computational Intelligence.Social & Cognitive Computing.Interpretable/Explainable AI.'],
[' Job Details',
'Good experience with end-to-end analytics process – ideation/value elicitation, data profiling, data preparation, analytical modelling, testing, validation, visualization, and solutioning.Strong problem solving skills, curiosity, and passion for data science.Experienced in SQL (any flavour), Python, R, Java, or C.Experience in designing ETL pipelines and BI reporting software.Familiar with open source analytical modelling, distributed computing, simulation, optimization, and visualization tools.Excellent coordination and time management skills to handle complex projects.Willing and enthusiastic about continuous learning.Experience/knowledge of big data engineering, software engineering, predictive maintenance will be a plus.']],
282: [['What is needed',
'Minimum Degree in Computer Engineering, Computer Science and Electronics Engineering or its equivalent..Strong C++ and C# programming skills with at least 1-2 years as a data engineer..Possess good understanding of software development life cycles..Working experience in handling projects involving Data Analytics related work is a plus.Attained Agile-related certification such as Certified Scrum Master is a plus.']],
283: [['Data Scientist',
'To improve time-series statistical modeling forecasting accuracy over an 18 month horizon using R and Python on the Google Cloud Platform.To build machine learning models using Python to automate business processes.To analyze structured and unstructured datasets to discover trends and patterns.To dig-in, understand the data, and to use creative thinking and problem-solving skills to design scalable and robust solutions.To present complex information using data visualization techniques through dashboards and reporting such as Microsoft Power BI..Bachelors or master’s degree in Statistics or Mathematics with experience in Python, time series, with a strong understanding and knowledge in time series forecasting; univariate, multivariate, and ensemble modeling..Experience with database technologies (SQL or others) in querying, creating databases, stored procedures; .Experience with Google Cloud Platform or similar (AWS, Microsoft Azure); Microsoft Power BI.']],
284: [['OTHER INFORMATION',
'Location: Central (Raffles Place).Working days: Monday to Friday (office hour).Salary: Up to $10,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..']],
287: [['Healthcare Industry located at West near MRT stations',
'Healthcare background is a MUST.'],
['Healthcare background is a MUST',
'Assist in identifying and implementing process improvements within and across Functional Groups and/or respective programmes..Complete content build and testing of the system as guided/requested by stakeholders..Be involved in programme management work areas including but not limited to conducting requirements analysis, functional testing, system implementation, end-user training and coordinating with appointed IT partners for on-going support to users..Be an integral member of the Next Generation Electronic Medical Records (NGEMR) project, by supporting the leads of the assigned Functional Group in recording and translating their business needs into business requirements..Organizing, coordinating project/workgroup meetings, including scheduling, booking and preparing of rooms/virtual sessions, collating of meeting attendance, minutes taking and tracking matters arising for matters related to the assigned Functional Group..Healthcare/IT Business Analysts who take an interest in process improvement, value creation and/or programme management to provide support & improve healthcare..A tertiary degree from a recognized university in IT.Preferably 2-4 years of relevant working experience with project/programme management and/or business analysis in a healthcare/healthcare IT setting.']],
288: [['What is needed',
'Minimum Degree in Computer Engineering, Computer Science and Electronics Engineering or its equivalent..Strong C++ and C# programming skills with at least 1-2 years as a data engineer..Possess good understanding of software development life cycles..Working experience in handling projects involving Data Analytics related work is a plus.Attained Agile-related certification such as Certified Scrum Master is a plus.']],
301: [['What should you have',
'Data visualisation tool (e.g. Tableau, Qlik, PowerBI).SQL knowledge.Programming or scripting language (e.g. Python, R, Java).Analytical software (e.g. SAS).Distributed architectures (e.g. HDFS, Hive).Ability to analyse and break down complex concepts and technical findings into clear and simple language for communication to team members and clients.Ability to link industry specific business requirements to BI, Analytics and Big Data solutions.']],
307: [['Other Information ',
'Hybrid Work Model (WFH / Raffles Place).Mon - Fri, 9am - 6pm .up to $6,500 per month .Candidates will be required to reside in Singapore .']],
309: [['Responsibilites and Duties',
'Installing and configuring computer hardware, software, systems, networks, printers and scanners..Providing Level 1 technical support for POS and in-house programs across the company (may be in person, phone or email)..Monitoring and maintaining computer system and networks..Outsourcing and liaising with vendors for IT equipment..Data analyzation reports..Other ad-hoc duties.']],
315: [['Data Engineer (Remote possible)',
'Competitive Remuneration Package.Remote working available.']],
332: [['Business Function',
'Deliver data work for driving incremental value for the wealth management franchise – accountable for financial outcomes..Identify, build, and deliver use cases based on the customer lifecycle management to drive business value..Drive continuous improvement through test and learn and experimentation to increase effectiveness of data driven engagement with our customers..Drive adoption of a data-driven operating model and control tower (dashboards) build out for key lines of business, to enhance the way we operate the business..Work with front office, business managers, product managers, and customer management teams to create data solutions, address business challenges and identify untapped opportunities..End-to-end data solutioning which includes translating business problems into data requirements, data discovery, and data processing to deliver outcomes..Excellent in storyboarding, strategical thinking, and presentation..Strong analytical skills, highly numerate, and proactive.Good interpersonal and communication skill, stakeholder engagement..With at least 3 years of relevant working experience, preferably with data management and analytics in the banking industry..Ph.d/Master Degree in Banking/Finance, Business, Mathematics/Statistics, Computer or related disciplines..Prior experience or exposure to private bank or wealth management domain..4-8 years’ experience in financial institution or top tier consulting..Experience in delivering cross-functional data projects to solve business problem and drive business outcomes..Good understanding of the data science production life cycle with demonstrable experience working with structured, semi-structured and unstructured data..Excellent software skills (Python, SQL, bash) and knowledge in design patterns and code optimization..Good grasp of Machine Learning models and concepts, their mathematical underpinnings, and trade-offs (model selection, tuning, problem formulation, drift, semi-supervised learning)..Experience using NLP techniques (NER, Sentiment Analysis, Topic Modelling, transformers)..Experience using machine learning frameworks (TensorFlow, Pytorch, Spark, Hydra)..Self-starter, good communication, and presentation skill..']],
346: [['Job Summary',
'Consolidate, harmonize & condition POS from multiple sources & retailers..Deploy ETL & automation for harmonization: prepare POS using Python & MS Excel..Maintaining & updating weekly & monthly POS at region & country level.Update existing dashboard & PBIs.Develop new PBI dashboards as per business needs.Deliver insights from multiple POS data: sell-in, distributor sell-out, & retailer sell-out.Deliver concise reports for your manager, stakeholders, and senior leaders.Support in campaign & NPI POS tracking.Other responsibilities: 20%.']],
356: [['Data Engineer (Remote possible)',
'Competitive Remuneration Package.Remote working available.']],
359: [['How will you make an impact?',
'Provide independently on-site and remote scientific application support & training support on products.Perform product demonstrations and training at customer or company sites; deliver product line specific pre-sales activities.Prepare and present seminars to wide array of audiences; assist the regional sales team in the development of accounts.Support the organization in the achievement of the regional commercial, service and support goals.Diagnose & resolve product performance problems and customer queries/complaints.Remain up to date with product and groundbreaking scientific know-how and work in line with our Support & Service Competencies.Play a significant role when introducing and supporting new products and applications.Build trust with our customers and excel in customer service.May be required to support other portfolios, perform other related duties as required or assigned.'],
['Understanding of',
'Assay Design, Optimization and Validation.Sample Preparation.Instrument Operation and Troubleshooting.Software and Data Analysis.Experience in communicating technical materials in written and verbal form; customer training experience is a plus.']],
363: [['Operate the SiTadeL Supply Chain Control Tower and its Applications',
'Address queries from users relating to any of the applications in SiTadeL and assist with troubleshooting if necessary .Manage the development and implementation of innovative Supply Chain Control Tower solutions and tools .Perform regular refresh of the various SiTadeL applications to ensure that data is accurate and relevant .'],
['Analyse operational data and present insights from a business perspective ',
'Extract and clean data from the various SiTadeL applications to develop purposeful data visualizations for Key Performance Indicator (KPI) reporting to key stakeholders .Conduct data analysis to provide insights and assist in identifying and solving issues faced .Communicate insights of feasibility analysis and relevant success strategies with key business stakeholders for decision making .Build partnerships with key service partners and customers within and across industries to accelerate the adoption of data analytics initiatives .'],
['Manage Corporate Activities',
'Assist in the planning of meetings, workshops and other associated activities .Perform data analysis to analyse macro trends that will affect the business and communicate the findings through visualisations and slides .'],
['Entry level are welcome to apply',
'Experience with data analysis (Excel, VBA, Python) and data visualization tools (Qlik, Power BI) .Preferably 2 years of experience working with data (Entry level may also apply) .Proficient in statistics and possess demonstrated knowledge and experience in analysing data and deriving business value from data. .Strong time management, project management and interpersonal skills .Highly motivated and demonstrated ability to work well with cross-divisional teams and at all levels of the organization .Keen interest to work in a Supply Chain organisation and in shaping supply chain outcomes .Singaporean only.']],
374: [['Product Analytics',
'Analyze various aspects of the casino operations, including product and area performance, operational and manpower efficiency, dealer performance etc..Apply statistical models, optimization techniques and simulations to improve gaming floor optimization, demand forecasting, manpower scheduling, risk evaluation etc..Assist in building solutions and tools to enhance floor optimization and operational efficiency..'],
['Overall',
'Drive data based decisions through creation of insightful reports and dashboard.Design impactful data visualization/dashboards to communicate complex ideas in Data Visualization Tools.Be able to work independently on reports and analyses.Generate new ideas on how to improve processes for our team, or our stakeholders.']],
375: [['Duration', '2-year contract (Renewable/chance of conversion).']],
376: [['The officer will be required to but not exclusive to',
'Work in an innovative, high-spirited, and fun environment to test, develop and optimize immuno-diagnostics assays and novel analytical platform.Communicate with project lead on progress of experiments, present and interpret experimental results and support in work to optimize product development in accordance with ISO13485.Provide support in design optimization and verification plans and reports in accordance with ISO 13485.Handle and perform routine sample preparation of biological and clinical samples (eg. serum, plasma, cells, and tissue).Execute product development experiments and data analysis.Support and conduct validation and verification test based on ISO 13485 processes.'],
['Abilities/Aptitudes',
'Individual who is highly motivated, proactive, and adaptable to work exigencies.Good understanding of applicable medical device regulations and design control processes that comply with ISO 13485 is preferred.']],
377: [['The officer will be required to but not exclusive to',
'Work in an innovative, high-spirited, and fun environment to test, develop and optimize molecular, immuno-diagnostics assays and novel analytical platform..Drive technical aspects of assigned project..Work independently to plan, execute, assess, and evaluate efficiency and efficacy of experiments for the development and optimization of molecular and immuno diagnostics assay and novel analytical platforms..Apply design control and phase gate driven product development processes for the development of medical device systems and hardware platform products in accordance with ISO 13485..Communicate with internal and external stakeholders on progress of experiments, present and interpret experimental results and make recommendations on ways to optimize product development in accordance with ISO13485..Write design optimization and verification plans and reports in accordance with ISO 13485..Write/contribute to project scoping/planning and proposals..Handle and perform routine sample preparation of biological and clinical samples (eg. serum, plasma, cells, and tissue)..Execute product development experiments and data analysis..Conduct validation and verification test based on ISO 13485 processes..'],
['Abilities / Aptitudes',
'Individual who is highly motivated, proactive, and adaptable to work exigencies..Experience in applying design control and phase gate driven product development processes for the development of medical device systems and hardware platform products in accordance with ISO 13485..Good understanding of applicable medical device regulations and design control processes that comply with the ISO 13485, FDA 21 CFA Part 820 and the 98/79/EC IVD and MDD Directives..']],
379: [['1. Understanding Business Needs for Data',
'Identify data engineering requirements across multiple business verticals, systems, platforms, and applications..Design technical requirements and suitable data models, based on business data needs, while ensuring compliance with group data governance, privacy, and security guidelines..Perform data profiling and advise the business on data acquisition strategy..'],
['2. Ensure Smooth Operations of Group Cloud Data Infrastructure',
'Guide the alignment of information management standards with the enterprise architectural plan and information security standards.Develop strategies for seamless and low-risk integration of data between systems.Communicate the data architecture, design and recommendations to stakeholders.Proactively identify and resolve blockers & issues, exploring options and solutions..'],
['3. Build and Maintain Data Pipelines',
'Facilitate the integration of cloud data platform with existing enterprise infrastructure.Build scalable data pipelines to extract, transform, and “serve” data to enable data analytics solutions..Test data pipelines for scalability, reliability, and exceptions handling..Monitor pipelines performance and ensure proper data audit measures are in place..Automate everything, possible..'],
['4. Knowledge Management and Team Mentoring (Senior Position)',
'Document internal SOPs and sharing of Data Engineering Best Practices.Guide and mentor junior team members and new joiners..']],
380: [['ETL processing',
'Responsible for data collection, cleaning, and conversion processing based on ElasticSearch Beats, Aws Step Function, and Aws Fluentd systems.'],
['System Maintenance\u200b\u200b\u200b',
'Responsible for data system maintenance of Elasticsearch, Athena, and Bigquery, including data maintenance, system maintenance, and routine troubleshooting.'],
['Query and visualization',
'Responsible for data query and visualization based on Esearch and Athena Bigquery systems, and can handle some data requirements of different departments..']],
381: [['Job Summary',
'Consolidate, harmonize & condition POS from multiple sources & retailers..Deploy ETL & automation for harmonization: prepare POS using Python & MS Excel..Maintaining & updating weekly & monthly POS at region & country level.Update existing dashboard & PBIs.Develop new PBI dashboards as per business needs.Deliver insights from multiple POS data: sell-in, distributor sell-out, & retailer sell-out.Deliver concise reports for your manager, stakeholders, and senior leaders.Support in campaign & NPI POS tracking.Other responsibilities: 20%.']],
385: [['The Job',
'Design and develop Tableau dashboards to automate and track business performance and project initiatives.Provide automation support for the division to improve operational efficiency.Monitor and track development of distribution incentives and challenges on a regular basis using automated reports.Drive analytics and insights on distribution performance and behavior to support business decision-making process.Work cross-functional to ensure the delivery of distribution strategic initiatives and execute any ad-hoc tasks as assigned.Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..']],
388: [['Permanent position, Salary up to $9,000 with AWS + 3 months VB',
'Permanent position, Salary up to $9,000 with AWS + 3 months VB.Reputable Healthcare Sector, West MRT.'],
['Reputable Healthcare Sector, West MRT',
'The ideal candidate should possess at least 5 years of experience in data architecture/ engineering and working/ programming knowledge in Python, R, Java, or C#.']],
396: [['about the job',
'Work with end customers and internal vision system development team to define business challenges that require the use of various ML/DL & Computer Vision Algorithmic techniques.Analyze large sets of Visual (images and videos) and Sensor data and train machine learning models using commercial tools such as Cognex as well as open-source platforms(TensorFlow, pyTorch, OpenCV) for detection, classification, tracking, behavioral analysis, anomaly detection..Gather customers feedback and continuously improve existing ML models and algorithms..Write code (Python/C++/C#) to prepare, use, enhance and test models..']],
403: [['Key areas of focus, include',
'Leverage customer data and analytics to acquire, develop, and retain high-value customers more profitably and effectively.Work with the casino sales team to optimize structure, communication, and coverage.Develop a robust behavioral and needs-based segmentation to create more relevant, actionable, and personalized campaigns, offers, and engagements.Collaborate with the marketing technology team to enhance CRM and real-time rules capabilities.'],
['Analytics',
'Apply advanced analytics, modelling and machine learning on patron behavior, CLV prediction and profitability analysis..Enhance our 360° view of our most valuable guests and create actionable segmentations of patrons across the entire Integrated Resort..Work closely with Sales and Marketing departments to:.Monitor the business and highlight trends and opportunities..Translate modelling results and segmentations into business strategy via data/dashboards with impactful visualization..Design data-driven personalized offers and A/B testing..Evaluate the effectiveness of our marketing strategies..Work closely with Business Intelligence, data warehouse, IT and smart IR teams to implement analytical solutions..']],
404: [['You will be involved in a range of tasks including the following',
'Manage a team of 2-3 data scientists and data engineers deployed to the agencies that we partner with, to drive the growth of data science capabilities at the partner agency that you are deployed to..Work closely with business stakeholders at the partner agency to build a strong pipeline of impactful projects. This will involve understanding their business challenges, scoping the problem and developing business cases on how to turn data into critical information and knowledge which can then translate into action and impact..Organise and guide the team to execute the pipeline of projects by performing data cleaning, pre-processing, and feature engineering to build relevant models to conduct meaningful analysis. Iterate with key stakeholders to perform subsequent deep dives based on initial insights. Depending on the use case, design dashboards and interactive visualizations as tools for data exploration and storytelling..Work with the agency Chief Data Officer (CDO)’s and Chief Information Officer (CIO)’s Offices to improve the agency’s data management and analytics infrastructure, and to grow data science capabilities within the agency’s workforce..Support the professional growth and development of the data scientists and data engineers in your team and forge a positive team culture to ensure staff retention.']],
410: [['Sample Vitrification',
'Proteins will be produced separately, hence experience in protein production is not required, although favoured.Candidate will be responsible for optimisation of the vitrification of grids .'],
['Data Collection',
'Candidate will oversee collecting screening and high resolution cryo-EM data from the T12 and Krios .'],
['Data analysis',
'Candidate will oversee processing the data and producing cryo-EM maps from high resolution Krios data collections.Candidate will help setup the processing pipeline for CSI.']],
421: [['Head of Generative Artificial Intelligence',
'Golden Opportunity with Global Defence Consultancy.Career Succession to become Head of Corporate Research Lab.Around S$200k annual package.']],
436: [['The following are added advantages',
'Experience in chatbot implementation with Google Dialogflow.Experience in SQL and Databases, HTML5, CSS, JavaScript tools and web services (REST and SOAP).']],
443: [['functional dashboards',
'Exposure to other products in MS Power Platform (Power Automate) - Desirable.']],
445: [['Must have a firm grasp and understanding of data structures, data modeling and software architecture using Python, R, Java and C, as well as deep knowledge of math, probability, statistics and algorithms.',
'Keen interest to support research and academic project work, with demonstrated ability in developing software solutions to technical problems..Possess strong supervisory skills and enjoy working closely with students in an educational environment..Self-starter with hand-on knowledge to setup network and server systems, manage software development environment and configuration activities to support testing and maintenance of information system, software applications, hosted services and websites..Demonstrate proficiency to keep abreast of development in the field and pursue professional certification programs. Possess of industrial certifications in relevant areas will be an added advantage..Professional Officers appointed at senior levels may have managerial responsibilities..A committed believer in continuous learning and self-improvement, with a strong sense of confidence in managing his/her own learning process..Good communication and interpersonal skills..Passionate about training, coaching and mentoring..Able to build and maintain strong working relationships with people within and external to the university..Self-motivated team player and flexibility to work across functions/teams in a dynamic hand-on environment..Possess strong analytical and critical thinking skills..Show strong initiative and take ownership of work..']],
447: [['Key areas of focus, include ',
'Leverage customer data and analytics to acquire, develop, and retain high-value customers more profitably and effectively.Work with the casino sales team to optimize structure, communication, and coverage.Develop a robust behavioral and needs-based segmentation to create more relevant, actionable, and personalized campaigns, offers, and engagements .Collaborate with the marketing technology team to enhance CRM and real-time rules capabilities.'],
['Analytics',
'Apply advanced analytics, modelling and machine learning on patron behavior, CLV prediction and profitability analysis..Enhance our 360° view of our most valuable guests and create actionable segmentations of patrons across the entire Integrated Resort..Work closely with Sales and Marketing departments to:.Monitor the business and highlight trends and opportunities..Translate modelling results and segmentations into business strategy via data/dashboards with impactful visualization..Design data-driven personalized offers and A/B testing..Evaluate the effectiveness of our marketing strategies..Work closely with Business Intelligence, data warehouse, IT and smart IR teams to implement analytical solutions..Lead a team of high performing analysts to deliver excellent results and coach junior team members..']],
448: [['Major European-based Chemical Manufacturing Organisation in Singapore',
'Major European-based Chemical Manufacturing Organisation in Singapore.Newly Created role.'],
['Snowflake',
'Experience working in a virtual team setting and self-driven with desire to take the lead and drive tasks to completion in a remote environment.Detail-oriented and strict attention to details and the ability to quickly spot and fix problems.MUST be currently based in Singapore and has relevant working experience in Singapore.']],
454: [['8+ years',
'Strong understanding of consumer lending products like Credit Cards, mortgages, loans and overdrafts is a must..Deep experience developing successful data and BI platforms and solution to business problems..Proven track record of solving ambiguous and highly complex data problems..Experience with statistical analytics and AI / ML models. Hands on experience in open-source programming language, e.g., SQL, Python, R, Scala and ML frameworks..Strong interpersonal and communication skills. Must be able to explain technical concepts and analysis implications clearly to a wide and senior audience, and be able to translate business objectives into actionable analysis..Ability to design processes and procedures which are continually reviewed, improved and changes communicated for effective implementation, with consensus of key leaders in the wider organization..Ability to understand and connect business drivers and rationale for and application of those relevant to the Retail business..']],
457: [['Data Management Office',
'The single point of contact for users across UOB for data issue escalations. The EDM ensures that data hosted in data warehouse is of good quality and conforms to data standards such as completeness, accuracy and consistency, to support regulatory and management reports. The team also promotes data automation and makes use of data to help develop initiatives to improve productivity..Data discovery through provision data requests to respective playpen for business units across the Group. The objective advocates self-service data exploration and analysis within and among Business/Support Units. Data definition and specification documents are available to provide navigational guidance and support for data provision purposes..']],
460: [['Advantageous but not a necessity will be',
'Hands-on experience with design of experiments (DOE) applied to bioprocesses and associated software (JMP, MiniTab)..Practical experience in handling larger bioreactors (10 l to 200 l)..Knowledge of relevant large-scale industrial fermentation practices..Practical experience with in-situ extraction methods..Practical or theoretical experience with gas fermentation bioreactors..Background knowledge on bioprocesses for food applications (precision fermentation, alternative proteins etc.)..Knowledge of Downstream Processing methods as an additional focus..Automated fermentation control strategies..Willing to have a flexible schedule and occasionally work part of the weekend to expand fermentation coverage (time will be balanced during the week).']],
463: [['Job Discription',
'Good experience with end-to-end analytics process – ideation/value elicitation, requirements definition, data profiling, analytical modelling, testing, validation, visualization, and solutioning.Strong problem solving skills and passion for artificial intelligence and data science research.Experienced in SQL (any flavour), Python, R, Matlab, Java, C++/ C.Experienced in preparing research papers using standard document preparation tools such as Microsoft Word or Latex.Familiar with distributed computing, modelling & simulation, optimization, and visualization tools.Excellent coordination and time management skills to handle complex projects.Willing and enthusiastic about continuous learning.']],
465: [['Analysing clinical or research data via basic and advanced statistical methods, according to the PI’s research directions',
'Ensure accuracy and completeness of data collection based on medical records and data entry.'],
['Ensure accuracy and completeness of data collection based on medical records and data entry',
'Develop visualizations and written reports for research methodology, process, and findings for presentation and dissemination to key stakeholders.'],
['Maintain regular communication with other team members in PI’s group and collaborators',
'Other ad-hoc analyses as required by the PI.'],
['Master’s degree in Statistics or Biostatistics',
'Strong skills in statistical software (e.g., STATA, SPSS, SAS, R, etc.).'],
['Track record of scientific publication and leading projects is advantageous',
'Option for Part-time commitment.']],
468: [['As the Big Data Lead, your will provide leadership in the following',
'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities..Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the development activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..']],
470: [['ACADEMIC CREDENTIALS',
'Bachelor’s degree in Computer Science, Computer Engineering or related field strongly preferred.']],
477: [['.',
'Manages existing SAP BW and any future data warehouse and data lake built in the Azure Synpase workspace..Manages existing SAP BW technical team and built up the in-house technical team required to implement the data warehouse and data lake. .Manages the enterprise wide integration platform to ensure that all integration processes runs as expected; any exception issues or errors will be timely reported to application owner..']],
484: [['Tasks',
'Carry out literature survey and patent search to understand developments related to research projects..Assist the Research Manager in coordinating with the Operation and QC departments for process scale-up and analytical support..Develop new products, processes and new analytical methodologies and validate them..Interact with peer groups for project(s) coordination and participates in product launch..Analyse and interpret research data, report results as research papers and scientific reports..Maintain all documentation as per company SOP..Maintain lab inventory and equipment..']],
493: [['Abilities / Aptitudes',
'Highly motivated and results driven.Proactive and takes ownership of the projects.Works well as part of a team, yet able to work independently.Prioritizes assigned tasks and manages time accordingly.Self-learner.']],
503: [['Monitor company equipment behavior on several aircraft programs a daily basis, report any weak signals to the team for discussion & decision',
'Issue timely recommendations/alerts to customer in the frame of the Predictive Maintenance service.Monitor operational events linked to company products (failures, removals, etc), follow up on the recommendations and retrieve all related info on removed components (history, flight cycles, fault messages on aircraft, technical log / troubleshooting performed, flight data, etc) from the airline.Participate in the development of new monitoring algorithms, or improvement of existing algorithm, by analyzing operational events (daily maintenance debriefs, technical logs, etc), previous recommendations issued, and customer feedback.Develop Fleet Reports (status of the fleet, open alerts by system / aircraft / criticality) and associated automated generation scripts. Share fleet reports to customer on a weekly basis, and answer customer’s related questions / queries.Work closely with Data Analytics team based in France (weekly calls and regular interactions) for coordination & follow up on open alerts, as well as algorithm development.'],
['Proficient with Python, SQL / Databases, and PowerBI / Data visualization',
'Experience using web scrapping / web APIs.'],
['Proficient with Excel / PowerPoint',
'Interest in aviation & aircraft systems (mechanical, hydraulics, electrical systems).Knowledge of ACMS / ACARS / IMACS (aircraft monitoring & data transfer protocols).']],
512: [['Teradata FSLDM',
'Experience in data integration tools such as Informatica.Experience in visualization tools such as Power BI and data engineering tools such as Hive, Impala, Spark etc..Experience with platform migrations.']],
526: [['Typical tasks will include',
'Perform tasks requiring a degree of problem solving and the ability to understand basic accounting concepts. (trainings available).Carry out data quality checks and alerts if errors occur..Manage a portfolio of advisory and audit analytics projects, ensuring tasks are being done on time and in an efficient and accurate manner..Assist with data extraction tasks from various external ERP systems..Perform in-depth data analysis as part of the standard audit analytics packages and develop custom solutions to solve complex questions..Understand the drivers of a business, analyze their data, and use this to provide insight and advice to our clients.']],
533: [['The Job',
'Provide support for big data applications (on-premises and private cloud) directly and via triage to 3rd party support vendors where appropriate..Write functional and technical documentation for applications..Engage in Database Administration / Maintenance tasks on big data platform for testing purposes..Respond to business user requests for change (RSA) in application functional capabilities and engage with technical leadership on business demand for feature development..Participate in Projects involving application or data components as a SME..Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..']],
536: [['Data Engineer,',
'You will be building data warehouse, data mart and providing data service for the stakeholders.You are responsible for database architecture and designing.Build dashboard to support metrics tracking and decision making.Build up block-chain data query capabilities..'],
['Job Offer',
'Chance to pioneer the team in Singapore.Excellent compensation package with stock option.Work-life balance with flexible work arrangement.']],
543: [['cross-bank technology initiatives',
'Functional knowledge of Retail bank, Wholesale, Global Markets, Finance, Risk and Compliance oriented products & business processes .'],
['large scale technology modernizations and platform migrations',
'Expertise in large databases involving e.g. Oracle, Teradata etc (good to have).Expertise in Data Integration tools/platform e.g. Informatica, IBM Data Stage etc (good to have).Expertise in Visualization tools/platform e.g. Qlik, Power BI etc (good to have).Expertise in Big Data Engineering tools/platform e.g. Cloudera, Horton Works, APACHE etc. Deep expertise in HDFS, HIVE, IMPALA, Kafka, SPARK, YARN is a plus (good to have).10+ years of experience of services, product development, infrastructure and security experience as an architect or similar hands-on technology leadership role.']],
545: [['Overview',
'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention .Candidates with appropriate qualifications and relevant research experience are encouraged to apply. Successful applicants will work with a team of researchers at CRCD. We invite applications for the position of Research Scientist to join our efforts..'],
['Closing Date',
'Review of applicants will continue until the position is filled..'],
['Other Information',
'Queries regarding the position should be directed to .'],
['Application',
'Interested applicants should complete and submit the following documents:.Cover letter addressing how you meet each of the requirements of this position;.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research expertise, interests, and future directions;.1 to 3 of your best publications;.Name of at least 3 referees;.Any other documents that demonstrate your qualifications.']],
548: [['Data Management Office',
'The single point of contact for users across UOB for data issue escalations. The EDM ensures that data hosted in data warehouse is of good quality and conforms to data standards such as completeness, accuracy and consistency, to support regulatory and management reports. The team also promotes data automation and makes use of data to help develop initiatives to improve productivity..Data discovery through provision data requests to respective playpen for business units across the Group. The objective advocates self-service data exploration and analysis within and among Business/Support Units. Data definition and specification documents are available to provide navigational guidance and support for data provision purposes..']],
562: [['Job Benefits',
'Basic + AWS.Monday to Friday.8am to 5pm.Location: Clementi.']],
564: [['Research Scientist (AI for Healthcare)',
'Build world-class capabilities and excellence in AI in Healthcare to be recognized by international research communities..Work with scientists in IHPC and clinical collaborators to advance research and digital transformation in healthcare..Publish high-impact papers to advance science (We have published several works in New England Journal of Medicine, The Lancet Digital Health, Nature Medicine, IEEE TPAMI, etc.)..Execute programmes to ensure timely delivery of project milestones with high-quality outcomes..']],
569: [['Degree in Engineering or Computer Science or IT',
'Hands on experience in technical design patterns, development, and documentation..Experience using Visual Studio 2019 and later..Strong in SQL server complex SQL query and Stored procedure development (2+ years).Good knowledge of microservice architecture and SOA..RPA UiPath knowledge advantage..']],
580: [['Patent Agent/ Patent Scientist',
'Drafting patents, filing and prosecuting patent applications.Conducting prior art/freedom to operate searches.Advising on Singapore’s patent laws and procedures.Reviewing specification search and examination reports.Assisting lawyers with patent litigation.Advising on strategies and courses of actions available to clients.(For Patent Agents) Registered Patent Agent / Patent Attorney Qualification in Singapore (Candidates qualified in other jurisdictions such as UK. Europe, US, or others may also be considered).Career path towards senior management and directorship of the firm.Postgraduate study and other qualifications such as a law degree or industry experience will be well regarded but are not essential..Strong command in verbal & written English..Excellent interpersonal and communication skills..Minimum 3 years of experience in patent drafting and prosecution.A good team player with a positive working attitude is essential.Be able to work independently.Be resourceful, possess strong interpersonal skills, and have the ability to manage business demands proactively..Experience and interest in managing and growing the practice.The candidate will work closely with our team in Jakarta and will answer directly to the Singaporean management..Directorship of the firm is possible..Career opportunities for building up an IP practice in Singapore..']],
584: [['Innovation Manager, Artificial Intelligence Lab, School of Computing (2 year contract)',
"Design, implement and oversee strategic initiatives, programs, and projects by working with faculty members, research scientists and engineers, students, and other partners and collaborators to plan and manage the scope, schedule, cost and resources involved. .Monitor and facilitate successful delivery and implementation of strategic initiatives, programs and projects, ensuring that they are completed on time while meeting the requirements, such as schedule and cost constraints. .Establish and improve program and innovation management practices, such as protocols, processes, tools, and documents as necessary. .Develop strong relationships across various stakeholders, including project teams, internal management, external collaborators and partners..Perform horizon scanning and identify new opportunities for novel initiatives, programs, and projects in AI to create social and economic impact..Bachelors or master's degree in a quantitative/technical field, e.g., Computer Sciences, Engineering, or equivalent. Experience in Artificial Intelligence (AI) or Data Science is highly desirable. .Experience and a proven track record in program management or managing multidisciplinary, cross-functional projects. .Solid understanding of project management processes and practices. Project management certification (e.g., PMP, PRINCE2) is desirable but not required. .Familiarity with R&D projects and government/industry R&D funding schemes .Excellent communication and presentation skills, able to articulate complex issues to different stakeholders verbally and in writing. .Strong interpersonal and leadership skills, effective in fostering teamwork with members of diverse background. .Occasional travel is expected. ."]],
596: [['Research Scientist (Electrical and Electronic Engineering/Computer Science)',
'Efficient software and hardware implementation, and benchmarking of post-quantum cryptographic primitives.Studying vulnerabilities and side-channel attacks for these designs.Preparing reports and scientific papers based on the findings.Possess PhD in the Electrical and Electronic Engineering/Computer Science.Experience in optimized software and hardware implementations with background in cryptography.Excellent teamwork and verbal, written communication skills.']],
597: [['Optional',
'Experienced on Viya Visual Investigator (e.g. Network visualization configuration/customization, Workflow configuration/customization, etc.).Provide best practices on analytics and sas configuration for VI/VA.Experienced building end-to-end case lifecycle management including manual user data capture and storage, information sharing between partition and global network, etc..Experienced with customizing functional scenarios, workflows and alerts such as further manipulation of scores etc..Experienced on integration of VI with other SaS tools.Experienced to build process to store fields keyed in during different stages of investigation on VI in the database, and having the information reflected on the global network and in search results..Experience delivering VI/VA solution through the SDLC lifecycle – Development, QA and production.']],
600: [['The Job',
'Recognized as the Data Product owner, the DPM will be deemed as the point of contact and key liaison party with all external stakeholders including the regulators.Manage and align across all internal stakeholders on business requirements, economic & liability model for data provision and consumption, principles of participation and customer consent, operational requirements.Manage the implementation of the data product and subsequent enhancements / change requests within the given timelines.Operationalize the data product and partner with business to maximize the effective use of data to create and maintain strategic advantage.Accountable for the quality, reliability and sustainability of the data product.Design the roles of team members to ensure complete coverage of all aspects of due diligence in running the data product, which covers sustainability and business continuity.Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..']],
602: [['About us',
'Develop machine learning, deep learning algorithms and graph networks using multi-modality data sources such as imagery, text and tabular data for maritime, agriculture, infrastructure and sustainability applications.Work with software team to integrate developed algorithms into geospatial system products.Work with product, business development and sales teams to develop comprehensive geospatial products roadmap.Provide pre and post sales technical support.Degree / Master / PhD in Electrical Engineering, Computer Science, Mathematics or Statistics or equivalent.At least 5-10 years of relevant work experience.Proficient in machine learning and deep learning techniques.Proficient in Python programming and experience with libraries such as PyTorch, openCV, scikit-learn, XGBoost and Prophet.Experience with Git, containerisation and software development workflow.Knowledge of cloud platforms and development would be an advantage.Knowledge of working with geospatial data would be an advantage.Knowledge of Earth Observation Satellite systems and their imaging products would be an advantage.Applicants should be motivated, proactive, able to work independently and results oriented.Location: Ang Mo Kio.']],
603: [['(a) ',
'Bachelor’s Degree in Business, Digitalization, Technology or related discipline.At least 5 years’ of experience in data architecture/engineering..Working knowledge of common programming languages such as Python, R, Java or C#..Experience with relational databases (including SQL fluency) and nonrelational databases..Familiarity with extract-transform-load/extract-load-transform operations is a must (eg Informatica)..Familiarity with data warehousing concepts (schemas, operational data stores, feature stores, datamarts) is a must..Experience with cloud-based computing, storage, analytics, administration and management, such as Healthcare Commercial Cloud..Prior experience in healthcare industry or technology startups will be an advantage.Professional certification in cloud infrastructure, Project Management, data engineering, data-ops or equivalent areas would be advantageous..Working knowledge of streaming ingestion and streaming analytics is an advantage..Working knowledge of container technology is an advantage..People Management skills.Ability to work independently.Adaptable.Creative.Good Communication Skills.Design Thinking.']],
605: [['Others',
'Working Location: Singapore, Commonwealth.5 working days per week.Remuneration commensurate with relevant working experience and similar trade / knowledge.Leave, medical, Dental benefits, and Group insurance..Flexible Working Time Policy.']],
610: [['Major Foreign-Based Manufacturing Organisation in Singapore',
'Major Foreign-Based Manufacturing Organisation in Singapore.Key IT Role in Singapore.']],
613: [['The Job',
'Own the technical strategic roadmap planning and execution for the data platform. Collaborate with engineering teams, product managers, and data scientists to inform this roadmap..Lead the development of our group’s data products, such as product experimentation, user audiences/segmentation, product analytics, etc..Ensure our data platform operates securely, efficiently and cost effectively 24x7.Establish data generation, collection, transformation and governance best practices.Design and develop unified data schemas and tables.Scale our data pipelines, tools and data stores.Help identify and build shared libraries and resources for data science and analytics.Own data engineering practices, raising the bar for the quality and speed of software delivery and operations..Set clear measurable goals for your data engineers..Foster a culture of continuous growth improvement through coaching, mentoring, feedback and clear measurable outcomes..Attract, develop and retain great engineers who are passionate about data engineering and serving internal and external users. Support their career growth and development..As part of the leadership team, work with key stakeholders to proactively shape the organisation’s culture and conduct environment that is aligned to the organization’s Core Values.Champion culture and conduct behavioral expectations within the Department/Division.Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices.']],
614: [['Join us on this journey to make a difference for the nation and our future generations, if you are',
'Experienced leading data pipeline building and data wrangling and enjoys optimizing data systems and building them from the ground up as part of multiple cross-functional teams,.Have strong project management and organizational skills, self-directed and comfortable supporting the data needs across multiple teams, systems and products,.Excited by the prospect of optimizing or even re-designing central and agencies’ data architecture to support next generation of government products and data initiatives, and.Recognized expert with proven technical leadership, experienced working in a agile team to build systems from architecture to deployment for cloud and on-prem infrastructure, and.Have the desire to serve the public good through the use of technology..']],
615: [['Digital Twin Simulation Engineer',
'Golden Opportunity with EV MNC .Competitive Remuneration Package.Leading Digital Twin R&D division.']],
620: [['Advance Excel user (VLOOKUP, pivot tables)',
'Data/ business / pipeline management.Prior analyst experience in tech industry is mandatory to understand the nature of business.'],
['Send your resume to [email protected]!',
'All shortlisted candidates will be contacted.']],
621: [['This includes',
'Microfluidics development of a low-cost droplet storage device.Operation and characterization of digital microfluidics.Workflow integration of droplet storage chip with digital microfluidics.Characterization of biological entities (cells, molecules, drugs) in the developed platforms.']],
627: [["What you'll get in return",
'Competitive compensation package including a competitive performance-based bonus structure and consistent career development.']],
631: [['Next Steps', 'Only shortlisted candidates will be notified..']],
637: [['Responsbilities',
'Work closely with the DataFirst Data Security Product Owner & Lead as Product Owner for specific Data Security Services. .Define customer needs and the associated features to meet those needs..Work with the data security cross-functional team in designing solutions including a user journey centric perspective. Planning and scheduling of the product releases. Prioritizes defect or bug resolution..Work closely with LCS, ISS and Data Governance counterparts in solution design and conformance with Data Policy & Standards and any regulatory requirements..Socialise solutions with BU/SU stakeholders and ensure buy-in and fit for purpose solutions.Communicate updates including corresponding metrics & KPIs to data security products (inclusive of technical and non-technical aspects) in governance and program tracking forums..Establish robust and efficient programme management hygiene, including a Project Steering Committee with a regular cadence to provide visibility on the Data Security Stream and seek any required decisions from Senior Sponsors. Produce appropriate documentation including meeting packs, risk logs, minutes/notes and tracked actions..']],
639: [['The Job',
'Lead and facilitate techno-functional design workshops & project implementation involving big data platform (Hadoop, cloudera), data analytics solutions (e.g. SAS Viya,R, Python etc), data visualisation tools (e.g. Tableau), ETL/ELT tools (Talend, Informatica, Artificial Intelligence (AI) solutions, as well as open source technology (eg. Mariadb) etc..Work with business product owners, application teams, infrastructure team, vendors, data scientists to conduct Proof of Concepts (POCs), jointly evaluate and implement various data analytics and AI related solutions..Understand data flows and lineage from operational data sources to analytical data sources..Review and approve project designs including data models and ETL..Establishing and enforcing standards, processes, frameworks, tools and best practices for process modeling, semantic modeling, and logical and physical data modelling..Establish standard information architecture best practices in the context of the enterprise’s overall architecture, and consistently apply such standards to operating units and functions across the company..Work with project teams to ensure compliance with data management standards..Participate in the development and maintenance of corporate data architecture, data management standards and conventions, data dictionaries and data element naming standards and conventions for multiple computing environments..Work with Information Security to ensure proper classification and protection of enterprise data..Create ETL specifications and documentation used to develop data migration mappings and transformations for Data Warehouse loading..Provide comprehensive consultation to database administration, business analysts and business owners in resolving questions during the translation to a physical database..Research and evaluate alternative solutions and recommend the most efficient and cost effective data related solutions for improved data integrity..Regular review of emerging technologies to assess their relevance and viability in solving on-going information management challenges. Big Data, cloud computing, data visualization, data masking, enterprise business metadata management and Data SOA..Work closely with users to understand and help develop functional specifications..Prepares written reports of findings and recommendations..Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..']],
641: [['Healthy Longevity Translational Research Program',
'Work with management team, and research team to develop a clinical research management system in line with NUS/ NUHS data policy guidelines.Formulate techniques for quality data collection to ensure adequacy, accuracy and legitimacy of data.Establish rules and procedures for data sharing, curation, management.Identify, manage and track issues, risks and dependencies that affect the delivery of the project outcome.Support research team in the daily use of data systems and ensure adherence to legal and company standards.Assist with reports and data extraction when needed.Monitor and analyze information and data systems and evaluate their performance to discover ways of enhancing them (new technologies, upgrades etc.).Ensure clinical databases and archives are protected from security breaches and data losses.Develop data visualization framework, models for CHL.']],
643: [['Evaluating Client’s satisfaction at Eldercare Centre (EC)',
"Interview Eldercare (EC)s' staff to understand existing programmes conducted at the centres .Propose evaluation methodology and design forms to understand clients’ satisfaction with EC’s services and programme offerings .Develop a process to capture feedback regularly .Administer survey with seniors (individual or focus groups) .Compile, analyze data, findings and provide recommendations .Collaborate and communicate with internal and external stakeholders .May require to perform additional duties as requested."]],
653: [['Business Analytics',
'Build data pipelines and functions for visualisation and business analytics supporting the business and respective product owners.Deliver accurate regular and ad-hoc performance tracking and analysis to drive traffic, transactions and processes.Ad-hoc analysis based on strategic direction of the business and deep dive into specific area / trend.Make data management recommendations based on data and industrial practices .Assist in business case and pricing initiatives as required.'],
['Data Engineering and Analytics',
'Design, develop and implement datasets, models, as well as support to interpret and present statistical outcomes to support the organisation’s operations and execution of key business strategies.Design and conceptualize solution that address the organisation’s challenges through use of data engineering and analytics and process large amount of data by applying algorithms.Collaborate with stakeholders to build data management and analytics capabilities, conduct feasibility studies,.Knowledge of ETL and OLAP to support and contribute to database implementation and systems, devising strategies to promote continuous improvement.Devise methods and strategies to obtain and extract data to derive business insights..'],
['data engineering methods and technologies / tools such as ETL, R and/or Python. Azure Cloud proficiency will be an advantage.',
'Highly motivated, structured and methodical with high degree of initiative.Strong problem solving, quantitative and analytical abilities.Excellent written and oral communication skills..Able to work independently or cross functionally.']],
676: [['Reputable Healthcare Sector, West MRT',
'The ideal candidate should possess at least 5 years of experience in data architecture/ engineering and working/ programming knowledge in Python, R, Java, or C#.']],
680: [['Overview',
'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention .Candidates with appropriate qualifications and relevant research experience are encouraged to apply. Successful applicants will work with a team of researchers at CRCD. We invite applications for the position of Research Scientist to join our efforts..'],
['Closing Date',
'Review of applicants will continue until the position is filled..'],
['Other Information',
'Queries regarding the position should be directed to .'],
['Application',
'Interested applicants should complete and submit the following documents:.Cover letter addressing how you meet each of the requirements of this position;.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research expertise, interests, and future directions;.1 to 3 of your best publications;.Name of at least 3 referees;.Any other documents that demonstrate your qualifications.']],
687: [['Research Scientist (Electrical and Electronic Engineering/Computer Science)',
'Efficient software and hardware implementation, and benchmarking of post-quantum cryptographic primitives.Studying vulnerabilities and side-channel attacks for these designs.Preparing reports and scientific papers based on the findings.Possess PhD in the Electrical and Electronic Engineering/Computer Science.Experience in optimized software and hardware implementations with background in cryptography.Excellent teamwork and verbal, written communication skills.']],
688: [['Architecture & Design',
'Teradata Architecture - Good understanding in relational Database like Teradata to support and build industry standard data mart for various line of business in the bank.Data Modeling - Good understanding and knowledge in Data Modeling area using industry standard data model (FSLDM) and STAR data model. Good knowledge of designing models using a data modeling tool such as ERWIN.'],
['Testing',
'Automated testing - Good understanding in automated testing using industry standard testing tool.']],
691: [['Overview',
'Cognitive, Emotional and Social Development (CESD).Learning Sciences & Innovation (LSI).Schools, Leadership and System Studies (SLSS).Teacher Professionalism and Learning (TPAL).Lifelong Learning, Cognition and Wellbeing (LLCW).'],
['Application',
'Please submit your application and include the following documents:.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research interests and achievements;.1 to 3 of your best publications;.Name of 3 referees;.Cover letter addressing how you meet the requirements of this position (optional);.Any other documents that demonstrate your qualifications.Please indicate the position code (OER RS: SoLEC) in your application.']],
692: [['T-SQL, stored procedures and database design',
'Good analytical and problem-solving skills.Good communication and presentation skills.Certification in Database Administration in MS SQL.'],
['Additional Job Infomation', 'Singaporeans and relevant preferred.']],
695: [['Overview',
'Cognitive, Emotional and Social Learning (CESD). Lifelong Learning, Cognition and Wellbeing (LLCW).Learning Sciences & Innovation (LS&I).Schools, Leadership and System Studies (SLSS).Teacher Professionalism and Learning (TPAL).'],
['Application',
'Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements.Research statement indicating your research interests and achievements.1 to 3 of your best publications.Name of 3 referees.Cover letter addressing how you meet the requirements of this position (optional).Any other documents that demonstrate your qualifications.Please indicate the position code (OER RS/SRS: SoL) in your application..']],
696: [['The Job',
'Manage and align internally on Business and Technical requirements.Maintain and ensure Data Quality of the Data Product (SGFinDex).Collaborate with Data Management & Governance team to align on Data Quality Matrix, Data Definition and Data Lineage.Coordinate with the relevant stakeholders to ensure the different level of internal testing (Unit/Functional/Regression/End-to-End/UAT) are performed. .Collaborate with relevant stakeholders to prepare test data and perform User Acceptance Test.Defect Management - coordinate internally and externally for defect fixes.Maintain and build documents and artifacts.Participate in testing WS in case of addition of new field / participants.Data expert and POC for new use cases implementation project.Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices..Degree in Computer Engineering, Computer Science, Mathematics, Software Engineering, equivalent fields or proven experience in data engineering.Stakeholder Management - Conversant in Business terms and ability to resolve and explain data product issues with Business users and other concerned stakeholders.A minimum 3 years of experience in Data Engineering and Data Analytics field. A data practitioner with proven experience in quality assurance and formulate testing strategy/approach.Excellent interpersonal and communication skills, with ability to manage different levels of stakeholders across the organization and navigate through conflicts and differences competently and with ease;.Detail oriented and analytical, with good problem solving, organizational skills, and program management knowledge and experience;.Process oriented, and able to translate complex problems into logical and repeatable processes and diligently document the proposed technical solution.High level of integrity, takes accountability of work and good attitude over teamwork..Takes initiative to improve current state of things and adaptable to embrace new changes..']],
708: [['These will keep you busy while enjoying your time with us',
'Manage data on AWS/Azure platform.Write efficient SQL query to extract and aggregate data from cloud data lake / data warehouse.Write Python script to extract open source data for analysis.Perform Data analytics and Data visualization on large data set using Tableau/Power BI.Create dashboard for monitoring and alert user of anomalous event.'],
['If the following describe you, then you could be the one!',
'Degree in Data Science, Computer Science/ Engineering or equivalent.Minimum 5 years of relevant work experience.Experience in managing data in AWS/Azure platform.Experience in writing SQL query to aggregate large data set.Good in Data Visualization using Tableau/Power BI.Experience in writing programming languages such as Python so as to create micro-service and handle large data.Good knowledge in statistics.Good problem-solving and data investigation skills.Able to handle a fast-paced environment.Team player with good interpersonal and communication skills.']],
716: [['Overview',
'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention.Candidates with appropriate qualifications and relevant research experience are encouraged to apply. Successful applicants will work with a team of researchers at CRCD. We invite applications for the position of Research Scientist to join our efforts..'],
['Closing Date',
'Review of applicants will continue until the position is filled..'],
['Other Information',
'Queries regarding the position should be directed to .'],
['Application',
'Interested applicants should complete and submit the following documents:.Cover letter addressing how you meet each of the requirements of this position;.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research expertise, interests, and future directions;.1 to 3 of your best publications;.Name of at least 3 referees;.Any other documents that demonstrate your qualifications.']],
729: [['OTHER INFORMATION',
'Location: Central (Promenade).Working days: Monday to Friday (office hour).Salary: Up to $13,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..']],
732: [['The Opportunity',
'Opportunity to work in a renowned MNC in the Fashion industry.Location: Central (Hybrid work arrangements).Working hours: Mon - Fri.Salary: Up to $3000.3 - 6 months contract available.'],
['The Talent',
'Minimum Diploma in IT or equivalent.Understanding on Business Intelligence systems such as Tableau, Power BI or Advanced Excel.Good analytical, mathematical and creative problem-solving skills.Ability to work independently.Fresh graduates with no experience but with relevant IT Knowledge are welcomed to apply.']],
748: [['OTHER INFORMATION',
'Location: Central (Downtown).Working days: Monday to Friday (office hour).Salary: Up to $7,000 or higher / Negotiable (salary will commensurate according to experience & qualifications)..Challenging, open, engaging, collaborative and creative environment.The Company strives to achieve employee satisfaction by providing attractive staff benefits, welfare & training programmes to all staff..']],
751: [['This includes',
'Microfluidics development of a low-cost droplet storage device.Operation and characterization of digital microfluidics.Workflow integration of droplet storage chip with digital microfluidics.Characterization of biological entities (cells, molecules, drugs) in the developed platforms.']],
752: [['KEY RESPONSBILITIES ',
'Working closely with lead software engineers on the application design and standardization.Responsible for design, build, test, and deployment of automation RPA and automation applications.Support automated RPA and application and perform troubleshooting to continuously improve the overall robustness of automation.Stay current on new products and learn new technology/skill/application.']],
753: [['Your Job',
'Deliver and facilitate learning via different delivery methods, such as instructor-led training, virtual classroom, e-learning, mobile learning and/or blended learning. .Develop and provide relevant in-house trainings on technical topics of your own expertise..Implement various learning programs companywide (e.g. coaching, job-shadowing, online training, etc)..Monitor and evaluate learning programs to ensure they timely and effective execution. .Upkeep all learning programs on a regular basis to encompass program, product, service delivery, procedural and technology changes..Identify and develop a holistic skills and competency matrix to map employees’ skills and their proficiency levels..Collaborate and partner with educational institutions in providing an experiential industrial exposure to "students" through work-study programs, internship, workshops, talks and holiday program..Facilitate and coach employees for sharing at career talks, job fairs and outreach events..']],
764: [['Overview',
"Participate on a team to apply scientific method to find solutions to real business problems..Perform data analysis, feature engineering and advanced methods to prepare and develop decisions from data..Leverage simple to advanced data techniques to support the team to deliver data analytic products for the firm..Performs analytics in support of the identification and understanding observed business outcomes..Collaborates with others to deliver on hypothesis testing and developing the mathematics to describe the business opportunity..Communicates effectively with analytics staff..Develops analytics, prepares and delivers both informational and decision-seeking presentations..Stays abreast of organization and management changes and has in-depth knowledge of company practices relevant to data science products..Maintains knowledge of company's total computing environment and planned changes in order to develop meaningful data science products..Contributes to the achievement of team objectives."]],
768: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
784: [['Background',
'Verlata is a growing professional services company, focusing on delivery outstanding results for our clients. We primarily focus on transitioning law firms and in-house legal teams from their legacy document store to cloud-based systems such as NetDocuments..We have 30+ team members across Singapore, Australia, New Zealand and the UK and are currently seeking a Data Migration Consultant to join our Singapore-based team..This will be the only migration role dedicated to document management migration in Singapore, supported by a capable team in Australia to assist with onboarding and training..This will be a full-time, permanent-based role in a remote working environment..In this exciting and versatile role, you will be responsible for successful end-to-end management of all things data and migrations for our document management implementation projects. Working closely with our project managers, configuration experts and trainers, you will be the key person in ensuring the integrity of the data as part of the migration piece of the project. You will be a key part of the team with a high level of autonomy and responsibility..The source and size of the data will vary project to project and will consistently provide fresh challenges and opportunities to solve new problems. Some projects may be wrapped up in a couple of months and others may run for over a year, often with a few projects to be managed in parallel..You may also assist with projects for other Verlata teams. .'],
['Day-to-day activities include ',
'Conduct data analysis and migrations using our migration tools.Investigate and implement ways of improving the data migration process in conjunction with our other tech/migration team members in other regions.Meet with newly signed clients (with the project team) to gather requirements and kick off their project.Attend and conduct web-based and onsite meetings with clients as part of implementation engagements.Investigate advanced customer issues and co-ordinate resolution with the rest of our team.Email clients post-implementation migration reports .']],
785: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
786: [['Characteristic we look for ...',
"A trendsetter. You thrive in an intellectually challenging environment with leading edge technologies. .A team player. We over 'I'..A learner. You have an insatiable thirst for knowledge and greater understanding. .A pragmatist. Your goal is to create useful products, not build technology for technology's sake. .An empath. You understand what the customer needs and use that perspective to create the best user experience. ."]],
810: [['We will offer you',
'Opportunities for practical learning..Competitive compensation and benefit program..Job rotation program..']],
817: [['Senior Data Scientist ( Electric Vehicles )',
'Golden Opportunity with EV MNC .Competitive Remuneration Package.Leading AI R&D division.']],
818: [['You will',
"Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with product and DEs, DAs, and other engineers to deliver features to drive the user growth of products.."]],
819: [['Researchers - Analytical - Inorganic / Organic',
'International Renewables Business who is well known for Sustainable Solutions.Pioneer roles.New Setup in Singapore.Permanent Opportunities.']],
821: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
829: [['The Job',
"Own and be responsible for the successful delivery of projects, ensuring they are completed on time, meeting requirements and within allocated budget..Manage project lifecycle, from requirement, design, technical construction, testing, acceptance, training, documentation and implementation, in accordance with the GE's Project Management Process and Methodology..Participate in pre-project activities such as estimation of project efforts, preparation of high level project plan with project timeline and resource requirements, and staffing and organization of project team..Plan, coordinate and communicate project plan, timeline and activities to the project team..Work closely with the group of key business owners and source systems SMEs, IT Risk & compliance, IT Security, QA on the agreed project objectives..Monitor and track progress of projects and stay on top of the projectso ensure smooth execution..Manage and coordinate project deliverables, ensuring their quality and configuration management..Analyse and highlight project risks and develop necessary risk mitigation plans..Analyse and highlight project dependencies to pre-empt project issues.Maintain project issue register to keep close match of the project issues till their resolution..Manage performance of the project team, guide the project team in resolving issues, and resolve conflicts within the project team..Manage customer's expectation by understanding customers' needs and providing realistic expectations and scope of the projects..Manage and work closely with vendors, business partners and data centre involved in projects..Provide periodic update on project progress to project sponsors and escalate project issues not resolvable not project team level..Provide periodic update on project progress to project sponsors and escalate project issues not resolvable not project team level and PSC team..Takes accountability in considering business and regulatory compliance risks and takes appropriate steps to mitigate the risks..Maintains awareness of industry trends on regulatory compliance, emerging threats and technologies in order to understand the risk and better safeguard the company..Highlights any potential concerns /risks and proactively shares best risk management practices.."]],
830: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
834: [['You will',
'Build and governing matrices for fast changing business in an analytical data-driven approach to identify business issues and opportunities;.Prototype analysis pipelines to provide insights, and provide quick responses to business inquiries and events;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendation on appropriate solutions..']],
844: [['R, Python, SQL, Excel.',
'Experience/ Knowledge in:.Hypothesis Testing (Eg. t-test, Anova, chi-sq).Modeling (Eg. Regression, Decision Trees, Random Forests, Neural Networks, Clustering, Classification, K-cross validiation etc).Big Data frameworks/ technologies (Eg. Spark, Hive etc).Location: Central.Working hours: Office hour.Industry: Gaming.']],
847: [['Program Locations', 'US: New York, NY.']],
851: [['(OER SERS OER) ',
'Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research interests and achievements;.1 to 3 of your best publications;.Name of 3 referees;.Cover letter addressing how you meet the requirements of this position (optional);.Any other documents that demonstrate your qualifications.']],
857: [['Good to have ',
'Experience with working with cloud platforms.Understanding of OLAP and ETL.Understanding of data governance, quality & control.Building and deploying of learning/statistical models.']],
859: [['About you',
'You have 7+ years of experience in data science roles, preferably using Python as the main programming language..You have built NLP systems that power products that delight customers..You are able to own the entire lifecycle of a data science project. You don’t need to be an expert on every aspect of it, but you must be a quick learner to pick things up and go deep when needed..You have a strong product mindset, and enjoy working cross-functionally..You use solid engineering practices, and write maintainable code..You thrive in a fast-paced environment..You enjoy mentoring others, and introduce and promote best practices across the team..'],
['Bonus points if',
'You have experience with data-intensive applications..You have worked with MongoDB (or other non-relational databases), Airflow and/or Apache Spark..You have worked with MLOps tools, such as Metaflow or MLflow.You’ve worked on recommender or forecasting systems..You have a Master or PhD degree in Applied Computing, Computational Linguistics, Machine Learning or a related field..']],
860: [['Ang Mo Kio', 'Ang Mo Kio.Database (ORACLE to MSSQL).'],
['Database (ORACLE to MSSQL)', 'Basic up to $6500 + Bonus.'],
['Basic up to $6500 + Bonus',
'Reputable Engineering Company in Singapore.']],
862: [['Your background',
'You have the track record:.You have at least 5-8 years of hands-on experience with analytical tools and techniques, and of which, past 5 years of relevant experience being in an analytical function building and implementing various statistical models, working with large amounts of data and articulating business questions, data extraction and use of statistical approaches to arrive at an answer..You’ve built and operationalised the analytical capability of a business or organisation..You have the basics covered:.Able to translate business problems into mathematical formulations? Check..Understand mathematical and Artificial Intelligence (AI) Machine Learning (ML) modelling techniques? Check..Proficient in data manipulation and analysis? Check..Programming experience in R, Python, Spark or other statistical software? Check..Other programming languages can include SQL, Hadoop, Java, Hive, and/or MariaDB? Check..Experience using ‘Git’ as a version control tool, preferably with the ability to work in Linux environment? Check..'],
['Ideally, you should have',
'Experience working with unstructured datasets, and knowledge in text mining and text analysis..Deep interest and aptitude in data, metrics, analysis and trends and applied knowledge of statistics, measurements and model evaluation..HR domain knowledge and/or People analytics-related experience is a plus..']],
867: [[' Good-to-have',
'Familiar with Linux operation system..Financial domain expertise (Treasury & Markets). Experience with statistical modelling and time series analysis..']],
873: [[' Good-to-have',
'Familiar with Linux operation system..Financial domain expertise (Treasury & Markets). Experience with statistical modelling and time series analysis..']],
875: [['What you will get',
'Opportunity to drive innovation in digital banking and make an impact..Hands-on experience with big data in finance..Lots of learning opportunities in machine learning and financial risk management..An environment that values teamwork, transparency and respect..']],
877: [['What you will get',
'Opportunity to drive innovation in digital banking and make an impact..Hands-on experience with big data in finance..Lots of learning opportunities in machine learning and financial risk management..An environment that values teamwork, transparency and respect..']],
881: [['Non-technical ',
'Excellent in storyboarding, strategical thinking, presentation. .Strong analytical skills, highly numerate and proactive.Good interpersonal and communication skill, stakeholder engagement.With at least 3 years of relevant working experience, preferably with data management and analytics in the banking industry.Ph.d/Master Degree in Banking/Finance, Business, Mathematics/Statistics, Computer or related disciplines.'],
['Technical ',
'Proficient in SAS/python/SQL Programming.Preferred knowledge in Business Intelligence tools and data science.Experience to manipulate and handle large dataset.']],
889: [['qualified Data Scientist',
'Improve and optimize search engine and recommendations system.Work as strategic partner to define priorities and develop project roadmaps with internal stakeholders.Using tools like Python, R, SQL, and others to drive efficient data exploration and modelling.Build a statistically rigorous solutions to large-scale web and data infrastructure problems.'],
['Job Offer',
'Flexible working arrangement.Chance to work in overseas office.Equity + Bonus payout.']],
898: [['The Opportunity',
"Adecco is partnering our client, one of the world's Tech MNCs.We are looking for a Finance Analyst.The role will start out as a contract.Candidates who are immediately available/ able to start work within short notice will be preferred."],
['The Talent',
'Degree in a quantitative field of study preferred.3-5 years of experience in strategy consulting, corporate finance or similar commercial analytical role.Sound business judgement and problem solving, and analytical skills.Advanced proficiency in spreadsheets/ modelling..Familiarity with, and/or enthusiasm for SQL and working with large volumes of complex data.'],
['Send your resume to [email protected]',
'All shortlisted candidates will be contacted.']],
900: [['Non-technical ',
'Excellent in storyboarding, strategical thinking, presentation. .Strong analytical skills, highly numerate and proactive.Good interpersonal and communication skill, stakeholder engagement.With at least 3 years of relevant working experience, preferably with data management and analytics in the banking industry.Ph.d/Master Degree in Banking/Finance, Business, Mathematics/Statistics, Computer or related disciplines.'],
['Technical ',
'Proficient in SAS/python/SQL Programming.Preferred knowledge in Business Intelligence tools and data science.Experience to manipulate and handle large dataset.']],
905: [['Overview',
'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention.Candidates with appropriate qualifications and relevant research experience are encouraged to apply. Successful applicants will work with a team of researchers at CRCD. We invite applications for the position of Research Scientist to join our efforts..'],
['Closing Date',
'Review of applicants will continue until the position is filled..'],
['Other Information',
'Queries regarding the position should be directed to .'],
['Application',
'Interested applicants should complete and submit the following documents:.Cover letter addressing how you meet each of the requirements of this position;.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research expertise, interests, and future directions;.1 to 3 of your best publications;.Name of at least 3 referees;.Any other documents that demonstrate your qualifications.']],
908: [['Research Associate (Computer Science/Engineering/Electronic Engineering)',
"Research on different deep-learning and machine-learning based algorithms and applications.Implement the algorithms and experiments for the application level.Analyze the complexity of different algorithms and perform evaluation on different application-level metrics.Collaborate with other team member(s) for more efficient outcome delivery.Perform administrative works assigned by the PI to ensure the smoothness of the project.Master's degree or above in Computer Science/Engineering or Electronic Engineering at a top-tier university.Experience in deep learning, machine learning, design automation, embedded systems, real-time systems, computer architecture, computer-aided design, etc or related fields.Good spoken and written English.Entry level candidates are welcome to apply.Experienced applicants are preferred."]],
916: [['Good to have ',
'Experience in eCommerce or online retails industry.Cloud infrastructure experience.Understanding of good data governance.DevOps background and AI/ML fundamentals..']],
917: [['About the Team',
'Translate business requirements into technical implementations and responsible for building batch and real-time data warehouse;.Design, build and launch real-time/batch data models/pipelines in production;.Build up data marts and own data quality for business areas;.Support existing real-time/batch systems in production, solve on-call issues;.Define and manage SLA for all data sets in business areas;.Support daily project management, assist junior engineers in business and technical problems..']],
920: [['Your background',
'You have the track record:.You have at least 5-8 years of hands-on experience with analytical tools and techniques, and of which, past 5 years of relevant experience being in an analytical function building and implementing various statistical models, working with large amounts of data and articulating business questions, data extraction and use of statistical approaches to arrive at an answer..You’ve built and operationalised the analytical capability of a business or organisation..You have the basics covered:.Able to translate business problems into mathematical formulations? Check..Understand mathematical and Artificial Intelligence (AI) Machine Learning (ML) modelling techniques? Check..Proficient in data manipulation and analysis? Check..Programming experience in R, Python, Spark or other statistical software? Check..Other programming languages can include SQL, Hadoop, Java, Hive, and/or MariaDB? Check..Experience using ‘Git’ as a version control tool, preferably with the ability to work in Linux environment? Check..'],
['Ideally, you should have',
'Experience working with unstructured datasets, and knowledge in text mining and text analysis..Deep interest and aptitude in data, metrics, analysis and trends and applied knowledge of statistics, measurements and model evaluation..HR domain knowledge and/or People analytics-related experience is a plus..']],
925: [['Overview',
'Support strategic planning and execution for long term business plans through in-depths research, industry studies and the study of market trends..Design and establish indicator systems for safety and risks of the platform, monitor and optimize risk coverage in each link, measure the performance of content safety strategies and facilitate decision-making..Build and enhance risk detection models or toolings to strengthen enforcement and automation of trust and safety policies.Derive and drive quantitative projects from start to finish, including developing analytical frameworks, distilling actionable insights and working with XFN partners to drive business impact..']],
938: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
940: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
944: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
948: [['Overview',
"Participate on a team to apply scientific method to find solutions to real business problems..Perform data analysis, feature engineering and advanced methods to prepare and develop decisions from data..Leverage simple to advanced data techniques to support the team to deliver data analytic products for the firm..Performs analytics in support of the identification and understanding observed business outcomes..Collaborates with others to deliver on hypothesis testing and developing the mathematics to describe the business opportunity..Communicates effectively with analytics staff..Develops analytics, prepares and delivers both informational and decision-seeking presentations..Stays abreast of organization and management changes and has in-depth knowledge of company practices relevant to data science products..Maintains knowledge of company's total computing environment and planned changes in order to develop meaningful data science products..Contributes to the achievement of team objectives."]],
963: [['Develop and support enterprise data services, and ensure operational stability and performance through continuous optimization.',
'Work hand-in-glove the product owners and various stakeholders to deliver features, using best-of-breed technologies and robust engineering methodologies..Coordinate closely with platform engineers to ensure the data services remain performant and scalable amid seasonal demand patterns..Demonstrate technical and product expertise, and be able to advise business users and solution new features..'],
['data engineer or backend developer in a big data field.',
'Good working knowledge of Linux (or Unix-like) Operating System..Solid working knowledge of enterprise-grade database technologies and languages (Oracle PL/SQL, SQL)..']],
965: [['About the Job',
'The Job is to design, define, maintain, and support the architecture of existing product. As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system. You will also be the backend lead of a small dynamic team of software developers..You will work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..'],
['About the Team',
'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..'],
['As the backend team lead, your will provide leadership in the following',
'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..']],
966: [['Sourced Values',
'Be involved in pre-sales activities by working closely with our clients to tailor and define enterprise scale strategies and identify new opportunities..Defining and implementing cloud-based solutions with a heavy focus on application, data, and infrastructure, in line with industry best practices and enterprise architecture guidelines..Provide leadership, mentoring and coaching to a team of consultants and own the outcome of projects..Consulting to clients in the form of business and technical strategic recommendations, report writing, analysis and delivery..Conduct technical assessments of existing environments and facilitate workshops with clients, partners, and our team..Representing Sourced Group and be an ambassador at regional conferences and have an impact in the cloud community..Apply cutting edge technologies and tools in big data and machine learning to build, manage and automate pipelines for data pipelines and analytics platform..Build production grade end-to-end analytics solution to solve business challenges together with Data Engineering, Data Scientists and business teams..Creation of data governance blueprint and reference architecture for various analytics use cases..Study and evaluate the state-of-the-art technologies such as cloud based optimized computing clusters, serverless data processing, and frameworks of data engineering, and establish, apply and maintain best practices and principles of data engineering..Perform code reviews to improve the quality of data pipelines.Monitor and evolve data analytics platforms to support business driven use cases and new consumption patterns..Bachelor’s or Master’s Degree in Software Engineering, Computer Science or related fields.5 to 10 years of experience in industry (ideally banking, ecommerce, telecoms, consulting) with demonstrated track record of leveraging advanced analytics to achieve business impact..At least 3 years of experience in data mining and machine learning on large amount of data, and multi-tier software application design.Excellent understanding of software & data engineering principles and design patterns..Familiar with tools such as Anaconda, Jupyter, Eclipse, Jira, Git, SVN, Jenkins, etc.Great programming skills in Python (Pandas, SciPy, NumPy, PySpark, etc), Scala, Java, SQL, Shell Script.Experience with traditional data analytics platform stack (Hadoop, Hive, HBase, Spark, Flink, Kafka, Presto, Airflow, etc), and / or cloud (AWS) based analytics services (Amazon Kinesis Data Streams, AWS EMR, AWS Glue etc…) and structured (SQL) and unstructured databases (Graph Database, NoSQL)..Familiar with industry paradigms and standards for model development, validation and testing and have developed and implemented large-scaled machine learning solutions from end to end..Strong in problem-solving, being resourceful with end to end critical thinking to find out solutions even in unfamiliar scenarios..Good communication and project management skills..Demonstrated strong interests in learning about Data Governance, Analytics & Machine Learning through own initiatives.Deep technical knowledge and experience with enterprise scale data modelling.Strong understanding of distributed systems architecture..Data quality process experience including data cleansing, audits and alerts, triage mechanisms & processes and referential integrity..Hands-on experience in databases, advanced SQL and software development in languages such as Python, Go, Scala, Java, TSQL, PL/SQL to name a few..Previous skills in Big Data technologies and Apache ecosystem technologies such as Spark, Kafka, Hive, Airflow, NiFi..Experience building end to end data pipelines using on-premises or cloud-based data platforms..Exposure to cloud-native data warehouses (AWS/Redshift, GCP/BigQuery, Azure, Snowflake) as well as experience in Integration/Middleware (Talend, API, Enterprise Service Bus.) is highly desirable..']],
981: [['You will',
'Build data pipelines to portray business status, based on a deep understanding of our fast changing business and data-driven approach;.Extract information and signals from a broad range of data and build hierarchies to accomplish analytical and mining goals for “Packaged Business Capability” such as user-growth, gaming and searching;.Keep improving the integrity of data pipelines to provide a comprehensive data service..']],
989: [['Data activities',
'automate collection of new data sources, and enable our Data Scientists and other Engineers to access the data.liaise with 3rd parties to consume their data feeds.convert Jupyter Notebooks into optimised Python batch jobs and Spark jobs.perform data analysis under the guidance of our Data Scientists.create libraries in python for our Staff and Clients to use.'],
['Systems activities',
'AWS Cloud Infrastructure configuration (Servers, Networks, Dbs, etc.).Setup monitoring and provide operational support for production systems.DevOps – AWS & Ansible.Ubuntu Linux.Shell scripting – bash.Snowflake.Kubernetes.'],
['About aiQ',
'Population movement based on the geolocation of mobile devices.Consumer Panel (Customer Surveys) of retail consumption.Point Of Sales payments for retail purchases.']],
994: [['You will be involved in a range of tasks including the following',
"Work with fellow GovTechies and project teams to develop user stories, functional/technical specifications and acceptance criteria.Evaluate and recommend suitable technology while aligning with GovTech's technology directions (such as cloud-based, enterprise architecture and modernization of legacy systems, adoption of SG Tech Stack).Identify and adopt the appropriate development methodology (e.g. Agile or Waterfall) in an Outsourced, Co-Sourced or In-house development environment.Ensure system or product readiness for smooth deployment, adoption and operations.Analyse impact of requested changes and propose improvements to continuously address changing business needs, and work with support team to understand and address technical problems (Operations & Maintenance phase).Triage and prioritise needs, and prepare and present requirements with assessments to internal teams and key stakeholders to guide platform design and development.Create and maintain comprehensive project or product documentations."]],
995: [['About The Team',
'Responsible for development of NLP technologies in our products.Participate in and support the incubation of new NLP technologies.Participate in research on NLP technologies.']],
1007: [['About the School',
'As a premier business school in a leading technological university, Nanyang Business School (NBS) is the nexus of world-class innovation, research, and business education. Situated within NTU’s technology and innovation ecosystem, we are uniquely positioned to create and share knowledge on how cutting-edge technologies can be leveraged for enterprise transformation and a smart economy..Located in Singapore, the heart of East-West culture and business, NBS aims to develop leaders who are able to innovate for the future, lead and transform organizations with cultural dexterity, and build sustainable enterprises in Asia and globally..'],
['About the Division',
"The Marketing Division of Nanyang Business School aims to excel as a thought-leader in the field, educate our students to be the next generation of business leaders and collaborate with industry partners to improve existing business practices..In line with our ambition to be a thought-leader in the field, our faculty members have published in many of the world's leading academic journals including the Journal of Marketing, Journal of Marketing Research, Marketing Science, Management Science, Journal of Consumer Research and Journal of Consumer Psychology..Our faculty also serve the academic community through editorships in prestigious academic journals and professional activities..As a testimony to the impact the division makes, our faculty members have won international awards for their research and contribution to knowledge creation.."]],
1016: [['You will',
'Build data pipelines to portray business status, based on a deep understanding of our fast changing business and data-driven approach;.Extract information and signals from a broad range of data and build hierarchies to accomplish analytical and mining goals for “Packaged Business Capability” such as user-growth, gaming and searching;.Keep improving the integrity of data pipelines to provide a comprehensive data service..']],
1039: [['Research Scientist (Electrical and Electronic Engineering/Computer Science)',
'Efficient software and hardware implementation, and benchmarking of post-quantum cryptographic primitives.Studying vulnerabilities and side-channel attacks for these designs.Preparing reports and scientific papers based on the findings.Possess PhD in the Electrical and Electronic Engineering/Computer Science.Experience in optimized software and hardware implementations with background in cryptography.Excellent teamwork and verbal, written communication skills.']],
1044: [['You will',
"Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with product and DEs, DAs, and other engineers to deliver features to drive the user growth of products.."]],
1055: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
1057: [['You will',
"Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with product and DEs, DAs, and other engineers to deliver features to drive the user growth of products.."]],
1062: [['The E-Commerce Risk Control (ECRC) team is missioned',
'- Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
1067: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics. Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
1070: [['Overview',
'Support strategic planning and execution for long term business plans through in-depths research, industry studies and the study of market trends..Design and establish indicator systems for safety and risks of the platform, monitor and optimize risk coverage in each link, measure the performance of content safety strategies and facilitate decision-making..Build and enhance risk detection models or toolings to strengthen enforcement and automation of trust and safety policies.Derive and drive quantitative projects from start to finish, including developing analytical frameworks, distilling actionable insights and working with XFN partners to drive business impact..']],
1072: [['What We Need from You',
'University degree in Data science Engineering with experience of 10-12 years plus, candidate with lesser experience may be considered.Knowledge of systems development, including system development life cycle, project.management approaches and requirements, design and testing techniques.Proficiency in data modeling and design, including SQL development and database administration.Ability to implement common data management and reporting technologies, as well as the basics of columnar and NoSQL databases, data visualization, unstructured data, and predictive analytics..Understanding of AI (ML/DL) technologies, like predictive modelling, optimisation, data mining, data visualization etc..Knowledge of programming languages Python, C/C++, Java, and Perl and software engineering practices.Natural curiosity, creative and critical thinker with learner mindset..Demonstrable technical expertise in, and passion for, technology and innovation. Professional experience in a technical role in the Energy, Mobility, is an upside..Deep understanding of how technology or new business models unlock new opportunities..Executive presence’ and the ability to represent DuraPower in internal leadership and public forums..Strong communication skills with the ability to build and maintain relationships within a complex, global corporation; and.A true “team player” with a collaborative attitude and an interest in developing talent..']],
1074: [['Required know-how',
'Mask drawing software (L.-edit, Layout, AutoCAD).UV lithography.Silicon dry/wet etching.Soft lithography (e.g. PDMS casting).']],
1080: [['Digital Twin Simulation Engineer',
'Golden Opportunity with EV MNC .Competitive Remuneration Package.Leading Digital Twin R&D division.']],
1083: [['Learning Benefits',
'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.']],
1084: [['Learning Benefits',
'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.']],
1085: [['Learning Benefits',
'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.']],
1086: [['Learning Benefits',
'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.']],
1087: [['digital transformation and driving digital changes in organization such as automation, process optimizations and data modelling are highly desirable.',
'IT savvy and familiar with digital tools used in business domain..Passionate about technology and possesses the visionary to drive digital change..Extensive experience and knowledge of industry practices to bring industry perspective to the University.Keen interest in innovation projects, with demonstrated ability in developing solutions to technical problems..Enjoy working closely with students in an educational environment..Demonstrate proficiency to keep abreast of development in the field and pursue professional certification programs..Possess industrial certifications in relevant areas will be an added advantage..A committed believer in continuous learning and self-improvement, with a strong sense of confidence in managing his/her own learning process..Good communication and interpersonal skills..Passionate about training, coaching and mentoring..Able to build and maintain strong working relationships with people within and external to the university..Self-motivated team player and flexibility to work across functions/teams in a dynamic hand-on environment..Possess strong analytical and critical thinking skills..Show strong initiative and take ownership of work..']],
1089: [['About the Job',
'The Job is to design, define, maintain, and support the architecture of existing product. As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system. You will also be the backend lead of a small dynamic team of software developers..You will work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..'],
['About the Team',
'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..'],
['As the backend team lead, your will provide leadership in the following',
'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..']],
1091: [['About the Job',
'The Job is to design, define, maintain, and support the architecture of existing product..As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system..You will also be the backend lead of a small dynamic team of software developers..You will work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..'],
['About the Team',
'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..'],
['As the backend team lead, your will provide leadership in the following',
'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..']],
1094: [['You will',
'Build and governing matrices for fast changing business in an analytical data-driven approach to identify business issues and opportunities;.Prototype analysis pipelines to provide insights, and provide quick responses to business inquiries and events;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendation on appropriate solutions..']],
1103: [['You will be involved in',
'Leading in driving improvements in the quality and automation of financial and business/cost analyses so as to guide Management in decision making and performance monitoring.Forecasting and analysing costs of manufacturing processes, labor and inventory.To automate high level, top down, sets of analytics and dashboards to track outcomes.Creating dynamic financial dashboards for management view.Utilising analytics software to identify inefficiencies within the manufacturing operations.Helping management to make important decisions based on costs and benefits.Creating and managing budgets, and monitor spending.Conducting audits and collaborating with operations to optimize the various business processes and transactions.Monitor changes in processes or methods to calculate effects on overall costs.']],
1106: [['About TikTok',
'Responsible for building an effective data tracking workflow for a Sales team, monitoring progress and finding problems in a timely manner;.Responsible for maintaining the data integrity on data warehouse and developing dashboards and reports according to business needs.Tracking and collecting market and industry information, and monitoring and analysing business-related products.Tracking and analysing advertising data, drawing actionable insights for market growth and optimisation.Working and collaborating with a cross functional team that includes Sales, Customer Solutions, Product and Marketing.']],
1109: [['About The Team',
'Responsible for development of NLP technologies in our products.Participate in and support the incubation of new NLP technologies.Participate in research on NLP technologies.']],
1120: [['You will',
'Build data pipelines to portray business status, based on a deep understanding of our fast changing business and data-driven approach;.Extract information and signals from a broad range of data and build hierarchies to accomplish analytical and mining goals for “Packaged Business Capability” such as user-growth, gaming and searching;.Keep improving the integrity of data pipelines to provide a comprehensive data service..']],
1123: [['Application',
'A cover letter addressing how you meet the requirements of this position.A resume including a publication list, names of three referees and your desired starting date of employment.1 to 3 of your best publications.Research statement indicating your research interests.Any other documents that demonstrate your qualifications.Please indicate the position number (CRCD RS/SRS) in your application..']],
1125: [['About the NLP team',
'Develop NLP and ML technologies in products;.Participate in and support the incubation of new NLP and ML technologies;.Participate in research on NLP and ML technologies..']],
1129: [['Data Management.',
'Experience user in tools such as MS Access, Project, SQL server, VBA, and decision tools..Good team player and able to collaborate effectively with all levels in the organization..Strong analytical and systematic approach to problem solving..']],
1130: [['Join the Dynamic Team!',
'Develop and maintain the machine learning system and platform, including training, inference, pipeline orchestration, to support core products;.Build the large scale systems for ML integrating with GPU, RDMA network and storage system;.Enrich the end to end machine learning experience, and provide machine learning resources for all the products of TikTok and its affiliates..']],
1132: [['Overview',
'Cognitive, Emotional and Social Learning (CESD). Lifelong Learning, Cognition and Wellbeing (LLCW).Learning Sciences & Innovation (LS&I).Schools, Leadership and System Studies (SLSS).Teacher Professionalism and Learning (TPAL).'],
['Application',
'Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements.Research statement indicating your research interests and achievements.1 to 3 of your best publications.Name of 3 referees.Cover letter addressing how you meet the requirements of this position (optional).Any other documents that demonstrate your qualifications.Please indicate the position code (OER RS/SRS: SoL) in your application..']],
1135: [['Application',
'A cover letter addressing how you meet the requirements of this position.A resume including a publication list, names of three referees and your desired starting date of employment.1 to 3 of your best publications .Research statement indicating your research interests.Any other documents that demonstrate your qualifications.Please indicate the position number (CRCD RS/SRS) in your application..']],
1136: [['How we’ll support you',
'Flexible working to assist you balance your personal priorities.Coaching and support from experts in your team.A culture of continuous learning to aid progression.A range of flexible benefits that you can tailor to suit your needs.Training and development to help you excel in your career.']],
1147: [['You will be involved in',
'Leading in driving improvements in the quality and automation of financial and business/cost analyses so as to guide Management in decision making and performance monitoring.Forecasting and analysing costs of manufacturing processes, labor and inventory.To automate high level, top down, sets of analytics and dashboards to track outcomes.Creating dynamic financial dashboards for management view.Utilising analytics software to identify inefficiencies within the manufacturing operations.Helping management to make important decisions based on costs and benefits.Creating and managing budgets, and monitor spending.Conducting audits and collaborating with operations to optimize the various business processes and transactions.Monitor changes in processes or methods to calculate effects on overall costs.']],
1154: [['The Data Architect',
"Will interface with technology and specific business / functional areas for the development and management of the firm's data assets..Advises internal and external business and technology groups by providing strategic direction, guidance, and data domain expertise in addressing business issues and opportunities..Responsible for understanding available data architecture principles/guidelines and contributing to the best practices, standards, and frameworks supporting the firm's data strategy..Responsible for gathering/deciphering business requirements into an architecturally sound data designs for transactional, analytical, and reporting data taking into consideration volume, velocity, and quality of data..Implementing data management methods and tools to achieve data architectural goals including data governance, data management, conceptual/logical/physical data modeling, DDL generation, data catalogs, data quality, data classification, data profiles, and data lineage..Responsible for the delivery of high-quality data architectural solutions, including enterprise and line of business architectures, while ensuring compliance with company policies..Initiates and drives processes that unleash the value of the Company's data assets to gain competitive advantage in the marketplace using data science and AI/ML techniques and tools..Strategizes and contributes to enterprise level technological initiatives on data governance, management, and usage. .In addition to the individual contributor primary responsibilities shown below, may also have managerial responsivities, such as: recruits, directs, motivates and develops staff, maximizing their individual contribution, their professional growth and their ability to function effectively with their colleagues as a team..Defines and implements data architecture for corporate data governance and data design principles..Ensures data management business solution deliveries..Adheres to the established data architecture methodologies and standards, and in compliance with company policy..Works closely with senior management to educate and to articulate resource requirements necessary to promote Data Strategy goals..Oversees warehousing activities of the organization to assure the strategic goals of the organization are met, and to assure integration of corporate data constructs (logical and physical database designs)..Works toward architectures enterprise data solutions..Performs enterprise planning and designing solutions for emerging business and complex technology environments including: cloud persistence migration, data lake, and data warehousing..Identifies and recommends ways to drive more value out of the company's data..Designs stable and flexible high performance data solutions, maximizing data reuse and avoiding data redundancy, according to the current and anticipated business rules, following Agile development techniques..Works with other stakeholders in optimizing data solutions.."]],
1156: [['You will be responsible for the below areas',
'Design and perform business-oriented, comprehensive data analysis (both sales and web analytics data) to monitor business performance , identify trends, generate key insights and discover potential business opportunities, both at day to day operational and strategic level.Develop Business Dashboards & Automation of Reporting across functions.Conduct Pricing Competitive Benchmark and develop pricing strategy along with internal stakeholders to help drive standard configurations and profitable growth.Support in Marketing Experimentation through Segmentation, Operationalization & Post-Mortem Analysis.Build customer segmentation strategies together with performance marketing team and implement short and long-term plans for growth and retention of customers to increase profitable growth..Provide suggestions on marketing experiments to run, develop actionable insights insights about the customer / business and collaborate with various stakeholders to design meaningful marketing promotion and digital experiments to optimize conversion performance and improve business performance.Develop basic analytical models with tools that help solve business problems / provide directions for our online business.Provide insightful analysis to management and internal stakholders for decision making.Work with Analytics / Data Science team to interpret the output of the predictive models to develop digital marketing experimentation plan.Work with the Tech team to drive marketing technology changes and enhancement to support performance goal.Support and manage adhoc key projects and/or business initiatives.']],
1164: [['Healthcare Industry located at West near MRT stations',
'Entry level is welcome to apply.'],
['Entry level is welcome to apply', 'Healthcare background is a MUST.'],
['Healthcare background is a MUST',
'Assist in identifying and implementing process improvements within and across Functional Groups and/or respective programmes..Complete content build and testing of the system as guided/requested by stakeholders..Be involved in programme management work areas including but not limited to conducting requirements analysis, functional testing, system implementation, end-user training and coordinating with appointed IT partners for on-going support to users..Be an integral member of the Next Generation Electronic Medical Records (NGEMR) project, by supporting the leads of the assigned Functional Group in recording and translating their business needs into business requirements..Organizing, coordinating project/workgroup meetings, including scheduling, booking and preparing of rooms/virtual sessions, collating of meeting attendance, minutes taking and tracking matters arising for matters related to the assigned Functional Group..Healthcare/IT Business Analysts who take an interest in process improvement, value creation and/or programme management to provide support & improve healthcare..A tertiary degree from a recognized university in IT.Preferably 2-4 years of relevant working experience with project/programme management and/or business analysis in a healthcare/healthcare IT setting.']],
1165: [['About The Team',
'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..']],
1172: [['You will be involved in',
'Collaborate and assist scientists in their experimentation..Execute experiments following protocols independently and perform accurate record keeping..Adhere to company policies and procedures following research and development scientific standards..Assist with laboratory management duties, such as equipment maintenance, reagents inventory and purchasing, general housekeeping..Participate in the development of new testing procedures/assays to support the release of new products..Possess good knowledge of chemical preparation and waste disposal..'],
['By end of internship, you will',
'Communicates clearly.Works well in teams.Shows initiative and independent learning.Understand laboratory operation and safety guidelines.Operation and maintenance of standard laboratory equipment.Develop critical thinking, report writing and analytical skills.Theoretical understanding of classical and real-time PCR.Understand PCR design strategies.Applied PCR techniques.Hands-on experience with Thermo Fisher instrumentation.Basic understanding of PCR analysis and associate data.Industry standard unidirectional workflow for molecular applications.']],
1175: [['\ufeffHence the following are key',
'Design and develop client centric and bank wide ML-powered analytical products.Provide necessary data analytics support to various internal stakeholders, including (but not limited to): sales, relationship managers, leadership, traders.Develop machine learning and advanced analytics solutions with the aim of improving yields from the business and enable improved customer experience..Work alongside existing analytics teams to enable consistent approach to data requirements.Work alongside engineering team to make the models production-ready and deployable for use of internal customers.'],
['Regulatory & Business Conduct',
'Display exemplary conduct and live by the Group’s Values and Code of Conduct..Take personal responsibility for embedding the highest standards of ethics, including regulatory and business conduct, across Standard Chartered Bank. This includes understanding and ensuring compliance with, in letter and spirit, all applicable laws, regulations, guidelines and the Group Code of Conduct..Lead to achieve the outcomes set out in the Bank’s Conduct Principles: [Fair Outcomes for Clients; Effective Financial Markets; Financial Crime Compliance; The Right Environment.] *.Effectively and collaboratively identify, escalate, mitigate and resolve risk, conduct and compliance matters..'],
['Key Stakeholders',
'Global Head of Digital Channels and Data Analytics, Global Heads of Credit and Macro Trading .']],
1178: [['Regulatory & Business Conduct',
'Display exemplary conduct and live by the Group’s Values and Code of Conduct..Take personal responsibility for embedding the highest standards of ethics, including regulatory and business conduct, across Standard Chartered Bank. This includes understanding and ensuring compliance with, in letter and spirit, all applicable laws, regulations, guidelines and the Group Code of Conduct..Lead to achieve the outcomes set out in the Bank’s Conduct Principles: [Fair Outcomes for Clients; Effective Financial Markets; Financial Crime Compliance; The Right Environment.] *.Effectively and collaboratively identify, escalate, mitigate and resolve risk, conduct and compliance matters..'],
['Key Stakeholders',
'Global Head of Digital Channels and Data Analytics, Global Heads of Credit and Macro Trading .']],
1179: [['About The Team',
'Responsible for development of NLP technologies in our products.Participate in and support the incubation of new NLP technologies.Participate in research on NLP technologies.']],
1188: [['About the Job',
'The Job is to design, define, maintain, and support the architecture of existing product. As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system. You will also be the backend lead of a small dynamic team of software developers..You will work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..'],
['About the Team',
'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..'],
['As the backend team lead, your will provide leadership in the following',
'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..']],
1189: [['About The Team',
'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..']],
1192: [['About the Job',
'The Job is to design, define, maintain, and support the architecture of existing product..As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system..You will also be the backend lead of a small dynamic team of software developers..You will work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..'],
['About the Team',
'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..'],
['As the backend team lead, your will provide leadership in the following',
'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..']],
1203: [['About The Team',
'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..']],
1207: [['About the Job',
'The Job is to design, define, maintain, and support the architecture of existing product. As an Architect the person would be required to design and implement Big Data tools and frameworks, define ELT processes, web services, collaborate with development teams, build platforms, and maintain the production system. You will also be the backend lead of a small dynamic team of software developers..You will work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems also to investigate new technologies and applications and apply modern software engineering practices such as unit testing and usability testing..'],
['About the Team',
'We are part of the Product Development team that is responsible for the growth of the Keysight businesses. The team consists of Manager, Architect, Data Eng., Data Scientist, UI/UX. We ensure the feature rich and highly performant product with well-designed architecture..'],
['As the backend team lead, your will provide leadership in the following',
'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..']],
1214: [['The E-Commerce Risk Control (ECRC) team is missioned',
'Build rules, algorithms and machine learning models, to respond to and mitigate business risks in Tiktok products/platforms. Such risks include and are not limited to account integrity, scapler,deal-hunter, malicious activities, brushing, click-farm, information leakage etc..Analyze business and security data, uncover evolving attack motion, identify weaknesses and opportunities in risk defense solutions, explore new space from the discoveries..Define risk control measurements. Quantify, generalize and monitor risk related business and operational metrics..Align risk teams and their stakeholders on risk control numeric goals, promote impact-oriented, data-driven data science practices for risks..']],
1226: [['Overview',
'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention.']],
1231: [['Senior AI Researcher',
'Golden Opportunity with EV MNC .Competitive Remuneration Package.One of the Best AI Research team in Singapore.']],
1254: [['Learning Benefits',
'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.']],
1257: [['(OER SERS OER) ',
'Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research interests and achievements;.1 to 3 of your best publications;.Name of 3 referees;.Cover letter addressing how you meet the requirements of this position (optional);.Any other documents that demonstrate your qualifications.']],
1268: [['Data Analysis',
'Manage data & information support for all the key initiatives of business units across BEM&T supporting countries & peers’ teams. It means interact with metrics owners across various functions and get end to end understanding of the system of measurement and applicability of the same across various Scorecards.Play strategic role in end-to-end data analytics journey, i.e. data collection, processing, data marts creation, reporting & dashboarding and analysis of data for various business functions/departments such as segments, products, operations, among others..Drive the creation of high-quality analyses for the business and the definition of metrics / leading indicators that track the business’s performance at different levels..Responsible for enhancing data systems, streamlining business processes and improving the quality of analytics solutions on a consistent basis; relentlessly drive on process improvement & automation to deliver higher efficiencies..'],
['Data Governance',
'Work with Compliance on enhancing data security governance in line with Group Policies and monitoring/tracking the team’s compliancy.Provide guidance to local teams on matters related to data governance and solutions to enable delivery of information to stakeholders in a secured, timely and efficient manner.Work closely with technology function and the data team on solutions to resolve identified production issues which are impacting existing infrastructure /solution covering data quality, data assurance, refresh timeliness, data security governance.'],
['Team Management and results',
'Identifying cost and efficiency opportunities, managing resources and talents; driving the resolution of issues; holding self and team accountable for results..Ensure that the data science team provides timely reports, dashboards and data driven business insights to drive business growth..']],
1271: [['You will',
'Plan and lead large-scale technical projects to lay the foundation for the iterative development and scale of early products.Develop robust, efficient technology products that serve 1 billion users.Contribute to engineering strategy, tooling, processes, and culture.Research and apply cutting-edge domain and technical knowledge into products.']],
1276: [['[About the Team]',
'Perform analysis on product usage product performance data..Identify factors affecting product usage, performance and growth, derive meaningful insights to guide to better product and decision making for our business leaders..Work with cross functional partners (Product Managers/Operations/Engineering etc.) for product optimization and bring value to the business..Design A/B experiments to optimize and drive future product developments..Perform market activity analysis and any other analytics that would help guide product and business decision making..Construct specialized data models based on product needs and business requirements..Able to operate with minimal supervision and independently identify + support data analysis needs of product and business lines..Coach and mentor junior members of the team. Setting clear team goals and overseeing day to day team operation..']],
1304: [['Research Engineer (Computer Engineering/Computer Science/Electronics Engineering)',
"Image and video restoration.Image and video generation.Object detection or.Unsupervised and self-supervised learning.Bachelor's degree in Computer Engineering, Computer Science, Electronics Engineering or equivalent.Strong background in machine learning and computer vision.Strong publication records in machine learning or computer vision conferences/journals is preferable.Knowledge of scientific or engineering software like PyTorch, TensorFlow, Keras, etc."]],
1306: [['Data Management and Quantitative Analysis - IC4',
'Independently works with internal and external datasets and client reference data and participates in the development of statistical, financial and/or econometric models for analyzing asset performance, securities data, derivative pricing, risk exposure or other sophisticated concepts..Provides analytical project management support for assigned area..With minimal guidance, supports assigned area with advanced, complex statistical and quantitative analyses..Contributes to the development of the techniques and methodologies to be used for each type of activity/analysis..Leads data modeling and quantitative analysis projects and serves as resource to less experienced colleagues..Uses technology tools to conduct analyses..Applies techniques such as SQL and querying and macro development to extract data for populating models..As an advanced user, may do some light programming or system configuration in order set up sophisticated models or algorithms..Understands the relevant processes and products in assigned area and which analyses, methodologies and approaches best support assessment of performance, risk, or valuation..Begins to lead complex projects in support of new or evolving processes/products..Interprets findings, prepares standard and ad-hoc reports and delivers results to management and/or other leaders..Provides recommendations for addressing observed outcomes..Translates complex technical concepts and analyses to non-technical audiences..Reviews accuracy of reports and calculations performed by less experienced colleagues. .No direct reports..Provides guidance to more junior analysts..Primarily responsible for the accuracy and quality of own work and the work of assigned project team members. .Work contributes to the achievement of area goals..']],
1313: [['Features of TTSP',
'Promotion and salary increment granted after 12 months’ tenure on achieving assigned KPI.A scholarship of $50,000 and $80,000 will be awarded to Master and Doctoral degree graduates respectively upon completion of the 2-year programme with satisfactory performance..GBA and overseas on-the-job, professional trainings are available.Visit a Startup to understand the essentials of a successful operation..Internal and external course sponsorships relevant to your job scope.An internal or external Mentorship will be offered.Participation in Top Ecosystem Alliance / CSR project.'],
['NOT to INCLUDE',
'Name of the University graduated.Master/PhD degree obtained / expecting and when.Did you participate in ITF Research Talent Hub before? If yes, please state the period..Were you an employee of ASTRI? If yes, please state the period.']],
1314: [['About the Team',
'Perform analysis on product usage product performance data..Identify factors affecting product usage, performance and growth, derive meaningful insights to guide to better product and decision making for our business leaders..Work with cross functional partners (Product Managers/Operations/Engineering etc.) for product optimization and bring value to the business..Design A/B experiments to optimize and drive future product developments..Perform market activity analysis and any other analytics that would help guide product and business decision making..Construct specialized data models based on product needs and business requirements..Able to operate with minimal supervision and independently identify + support data analysis needs of product and business lines..Coach and mentor junior members of the team. Setting clear team goals and overseeing day to day team operation..']],
1315: [['Regulatory & Business Conduct',
'Display exemplary conduct and live by the Group’s Values and Code of Conduct..Take personal responsibility for embedding the highest standards of ethics, including regulatory and business conduct, across Standard Chartered Bank. This includes understanding and ensuring compliance with, in letter and spirit, all applicable laws, regulations, guidelines and the Group Code of Conduct..Lead to achieve the outcomes set out in the Bank’s Conduct Principles: [Fair Outcomes for Clients; Effective Financial Markets; Financial Crime Compliance; The Right Environment.] *.Effectively and collaboratively identify, escalate, mitigate and resolve risk, conduct and compliance matters..'],
['Key Stakeholders',
'Global Head of Digital Channels and Data Analytics, Global Heads of Credit and Macro Trading .']],
1316: [['\ufeffHence the following are key',
'Design and develop client centric and bank wide ML-powered analytical products.Provide necessary data analytics support to various internal stakeholders, including (but not limited to): sales, relationship managers, leadership, traders.Develop machine learning and advanced analytics solutions with the aim of improving yields from the business and enable improved customer experience..Work alongside existing analytics teams to enable consistent approach to data requirements.Work alongside engineering team to make the models production-ready and deployable for use of internal customers.'],
['Regulatory & Business Conduct',
'Display exemplary conduct and live by the Group’s Values and Code of Conduct..Take personal responsibility for embedding the highest standards of ethics, including regulatory and business conduct, across Standard Chartered Bank. This includes understanding and ensuring compliance with, in letter and spirit, all applicable laws, regulations, guidelines and the Group Code of Conduct..Lead to achieve the outcomes set out in the Bank’s Conduct Principles: [Fair Outcomes for Clients; Effective Financial Markets; Financial Crime Compliance; The Right Environment.] *.Effectively and collaboratively identify, escalate, mitigate and resolve risk, conduct and compliance matters..'],
['Key Stakeholders',
'Global Head of Digital Channels and Data Analytics, Global Heads of Credit and Macro Trading .']],
1318: [['The product will',
'Enable users to manage large scale data assets in the underlying data engine securely and effortlessly.Improve the overall system observability, helping our users gain more transparency in the healthiness, resource utilization of the system.'],
['What you should have',
"Bachelor's Degree or Post Graduate in Computer Science..At least 2 years of backend experience.Good coding skills in mainstream languages such as GoLang, Java, or Scala.Good domain knowledge of ETL and data warehousing.In-depth knowledge in distributed real-time or batch data processing systems, such as Spark, Flink, Kafka, etc.Experience in optimizing systems like Spark, Flink, Storm, Kafka..Knowledge of big data ecosystems such as Kafka, Redpanda, Kinesis, Redshift, Hive is a plus.Good communication and interpersonal skills."]],
1320: [['Learning Benefits',
'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.']],
1322: [['Learning Benefits',
'Software Development Life Cycle.Data Science & Engineering.Agile Practices.Programming at scale.']],
1337: [['Program Locations',
'US: Pittsburgh, PA *New York, NY *Jersey City, NJ.']],
1347: [['You will',
'Build and governing matrices for fast changing business in an analytical data-driven approach to identify business issues and opportunities;.Prototype analysis pipelines to provide insights, and provide quick responses to business inquiries and events;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendation on appropriate solutions..']],
1356: [["What You'll Need",
'Proficiency with databases and SQL expertise..Experience with large-scale data warehousing architecture and data modeling..Expertise with data processing (ETL) technologies is required..Experience in one programming language such as Java, Scala, or Python..Strong analytical skills..Aptitude to independently learn new technologies..If need be, act as a leader to drive big efforts with other data analysts..'],
['Basic',
'PhD, MS or Bachelors degree in Statistics, Economics, Computer Science or another.quantitative field..Knowledge of Hadoop related technologies such as HDFS..Experience building high-quality end-to-end data solutions in an agile environment from requirements to production..Be able to proactively handle prioritization of work and deliver work of great quality and to influence the broader team..Experience with Looker, Tableau, Power Bl, or other business intelligence platforms..']],
1361: [['Client Details',
'Providing support in relation to analytics and data management to the sourcing department.Management of complex sized data and to provide analysis to assist in decision making.']],
1362: [['Overview',
"Designs and creates more complex logical/physical data models, and data dictionaries that cater to the specific business and functional requirements of applications..Provides support for data architecture efforts as needed..May allocate/coordinate work within a team/project..Develops logical data designs of increasing complexity to deliver stable and flexible high performance data solutions..Performs data extracts and creates complex data reports to analyze user metrics..Develops understanding of business needs and functionalities to determine compatibility of database with existing hardware/software applications and recommend the most cost-effective methods..Consults with database administration and client areas in resolving questions during the translation to a physical database design..Provides knowledge of enterprise data to assist the business in the creation and definition of internal and external message flows..Provides knowledge in existing database environments and makes recommendations for opportunities to share data and/or reduce data redundancy. Contributes to the achievement of related teams' objectives.."]],
1365: [['Researchers - Analytical - Inorganic / Organic',
'International Renewables Business who is well known for Sustainable Solutions.Pioneer roles.New Setup in Singapore.Permanent Opportunities.']],
1368: [['You will',
'Build and governing matrices for fast changing business in an analytical data-driven approach to identify business issues and opportunities;.Prototype analysis pipelines to provide insights, and provide quick responses to business inquiries and events;.Conduct routine and non-routine end-to-end analyses with large, complex data sets, and make recommendation on appropriate solutions..']],
1370: [['Knowledge of SQL and database structure',
'Advanced skills in MS Excel, and PowerPoint..'],
['Need to know a little bit about gaming metrics',
'Strong analytical skills with the ability to generate compelling recommendations.Exceptional communication and presentation skills, and the ability to clarify and summarize complex issues.Ability to work effectively and cross-functionally with all levels of management, both internally and externally.Self-starter, intellectually curious and creative individual comfortable operating in a fast-paced, ever-changing environment.Strong operational process with experience in project management and process improvement.']],
1371: [['The product will',
'Enable users to manage large scale data assets in the underlying data engine securely and effortlessly.Improve the overall system observability, helping our users gain more transparency in the healthiness, resource utilization of the system.'],
['What you should have',
"Bachelor's Degree or Post Graduate in Computer Science..At least 5 years of backend experience.Good coding skills in mainstream languages such as GoLang, Java, or Scala.Good domain knowledge of ETL and data warehousing.In-depth knowledge in distributed real-time or batch data processing systems, such as Spark, Flink, Kafka, etc.Experience in optimizing systems like Spark, Flink, Storm, Kafka..Knowledge of big data ecosystems such as Kafka, Redpanda, Kinesis, Redshift, Hive is a plus.Good communication and interpersonal skills."]],
1374: [['Overview',
'Cognitive development.Socioemotional development.Development of bilingual and biliteracy competencies.Development of children at risk or those with disabilities.Quantitative methods and/or longitudinal study design.Innovative pedagogical intervention .Candidates with appropriate qualifications and relevant research experience are encouraged to apply. Successful applicants will work with a team of researchers at CRCD. We invite applications for the position of Research Scientist to join our efforts..'],
['Closing Date',
'Review of applicants will continue until the position is filled..'],
['Other Information',
'Queries regarding the position should be directed to .'],
['Application',
'Interested applicants should complete and submit the following documents:.Cover letter addressing how you meet each of the requirements of this position;.Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements;.Research statement indicating your research expertise, interests, and future directions;.1 to 3 of your best publications;.Name of at least 3 referees;.Any other documents that demonstrate your qualifications.']],
1393: [['We are seeking our future colleague to',
'Support senior data scientists to assess opportunities for AI/data analytics technologies and maximize value/impact of the function..Support the design of AI/data analytics solution architecture and work with Business and Technologies stakeholders to come up with implementation roadmap..Develop Proof of Concepts using AI/data analytics technology..Support AI/data analytics solution implementation and deployment.Develop, maintain and deploy ML & NLP Pipeline and models with high performance, quality, and stability.Develop machine learning solutions in Natural Language Processing (NLP), document classification, Named Entity Recognition (NER), topic modelling, document summarization, computational linguistics, advanced and semantic information search, extraction, induction, classification and exploration.Build awareness and assess opportunities for new technologies to maximize the value/impact of the function.Build trust and strong working relationships with Business and Technology stakeholders.Push forward the capabilities and performance of the team to strengthen and expand the service offering of the unit in alignment with business needs.']],
1394: [['Permanent/Full-Time Position',
'Permanent/Full-Time Position.Central location (within walking distance to Raffles Place station).'],
['Central location (within walking distance to Raffles Place station)',
'Attractive remuneration and staff benefits.'],
['Handle AI, Blockchain, Data Mining, Data Analytics, IT Audits, Digital Forensics, and Cyber Security ',
'Assist in all matters regarding related technology projects on time and within budget.Assist IT activities that involve the development of AI, blockchain, data mining, data analytics, IT Audits, Digital Forensics, and cyber security solutions.Able to work independently or as a team.Willing to travel overseas (where applicable).']],
1399: [['We are seeking our future colleague to',
'Support senior data scientists to assess opportunities for AI/data analytics technologies and maximize value/impact of the function..Support the design of AI/data analytics solution architecture and work with Business and Technologies stakeholders to come up with implementation roadmap..Develop Proof of Concepts using AI/data analytics technology..Support AI/data analytics solution implementation and deployment.Develop, maintain and deploy ML & NLP Pipeline and models with high performance, quality, and stability.Develop machine learning solutions in Natural Language Processing (NLP), document classification, Named Entity Recognition (NER), topic modelling, document summarization, computational linguistics, advanced and semantic information search, extraction, induction, classification and exploration.Build awareness and assess opportunities for new technologies to maximize the value/impact of the function.Build trust and strong working relationships with Business and Technology stakeholders.Push forward the capabilities and performance of the team to strengthen and expand the service offering of the unit in alignment with business needs.']],
1401: [['About The Team',
'Conduct cutting-edge research in the fields of natural language processing and machine learning;.Ensure technologies get successfully applied to our products;.Incubate new products with natural language processing and machine learning technologies..']],
1412: [['Big Plus',
'Experience with one or more deep learning frameworks such as Caffe, Theano, Torch, TensorFlow..Has prior experience developing or utilising ORB-SLAM..']],
1425: [['Overview',
'Cognitive, Emotional and Social Learning (CESD). Lifelong Learning, Cognition and Wellbeing (LLCW).Learning Sciences & Innovation (LS&I).Schools, Leadership and System Studies (SLSS).Teacher Professionalism and Learning (TPAL).'],
['Application',
'Resume including a list of your qualifications, publications, grants and leadership experience, previous experience and a brief description of your achievements.Research statement indicating your research interests and achievements.1 to 3 of your best publications.Name of 3 referees.Cover letter addressing how you meet the requirements of this position (optional).Any other documents that demonstrate your qualifications.Please indicate the position code (OER RS/SRS: SoL) in your application..']],
1429: [['As the backend team lead, your will provide leadership in the following',
'Guiding, leading, and managing a small team of devops, big data engineers and developers on the feature design and development activities.Working with the team for Backend Performance improvement across different components of the Product (Batch jobs, Streaming Job, etc.).Setting up and introduction of new tools and tech stack to support new features and security across the Product..Guiding the Devops activity and branching strategies..Code Review and Best Practices implementation..Work in an AGILE team to turn innovative ideas into robust software and solve complex design and implementation problems..Work with business leads to define project scope and timeline..Gather requirements and functional specifications, assessing the current software systems in place to identify areas in need of improvement, and overseeing development teams..Work with business to for adoption and ensure support model in place..Develop systems to collect usage data to monitor application performance..']]}
# now to add them and derive the final pandas dataframe
TOTAL_JOB_RAW_DATA_COPY[0][3]['jd'][0]
'Develop targeted bespoke analytics models to help the venture extract value from, and monetise, data on our platforms, where such value extraction could include the likes of better client decisioning, pricing and opportunity identification..Research, design, implement and validate cutting-edge analytics and data visualization techniques to achieve targeted outcomes, such as bringing predicted outcomes closer to experience while ensuring consistency with the model ecosystem, while identifying opportunities for solutions to be leveraged across applications to broaden their scope of use and improve risk analysis..Collaborate with partner technology teams in setting up an effective model lifecycle platform on the cloud, with possible roles to play in cloud architecture and platform engineering..'
jd_list = []
jr_list = []
others_list = []
for row_idx, row in enumerate(TOTAL_JOB_RAW_DATA_COPY):
free_format_section = row[3]
if len(free_format_section['jd']) >0 :
jd_list.append(free_format_section['jd'][0])
else:
jd_list.append("None")
if len(free_format_section['jr']) >0 :
jr_list.append(free_format_section['jr'][0])
else:
jr_list.append("None")
if len(free_format_section['others']) >0 :
others_list.append(free_format_section['others'])
else:
others_list.append("None")
assert (len(jd_list)==len(jr_list)==len(others_list))
data.update({'job_description':jd_list,'job_requirements':jr_list,'others':others_list})
for key in data.keys():
print(f"Length of {key} : {len(data[key])}")
Length of job_title : 1436
Length of company_name : 1436
Length of career_level : 1436
Length of job_type : 1436
Length of job_specialisations : 1436
Length of url : 1436
Length of location : 1436
Length of low_salary : 1436
Length of high_salary : 1436
Length of post_date : 1436
Length of job_description : 1436
Length of job_requirements : 1436
Length of others : 1436
data_pd = pd.DataFrame.from_dict(data)
data_pd.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 1436 entries, 0 to 1435
Data columns (total 13 columns):
# Column Non-Null Count Dtype
--- ------ -------------- -----
0 job_title 1436 non-null object
1 company_name 1436 non-null object
2 career_level 1436 non-null object
3 job_type 1436 non-null object
4 job_specialisations 1436 non-null object
5 url 1436 non-null object
6 location 1436 non-null object
7 low_salary 1436 non-null object
8 high_salary 1436 non-null object
9 post_date 1436 non-null datetime64[ns]
10 job_description 1436 non-null object
11 job_requirements 1436 non-null object
12 others 1436 non-null object
dtypes: datetime64[ns](1), object(12)
memory usage: 146.0+ KB
# We can see that the scrape and preprocessing is not perfect, there are some with incomplete information
# Furthermore we still need to clean up the Job title, job description and job requirements
data_pd.sample(15,random_state=RANDOM_STATE)
| job_title | company_name | career_level | job_type | job_specialisations | url | location | low_salary | high_salary | post_date | job_description | job_requirements | others | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 594 | Executive, Healthcare Information (Analytics And Training) | SingHealth Polyclinics | Junior Executive | Full-Time | Admin/Human Resources, Clerical/Administrative Support | http://www.jobstreet.com.sg/en/job/executive-healthcare-information-analytics-and-training-10130238?jobId=jobstreet-sg-job-10130238§ionRank=459&token=0~41aee0d7-1fe2-48fe-a303-4a42c1715978&fr=SRP%20Job%20Listing | Bukit Merah | unspecified | unspecified | 2022-11-03 | None | Facilitating requirements gathering sessions, digging deep to uncover users’ needs to set up project parameters.Brainstorming within or outside the team for viable solutions, then leading, coordinating and iterating through efforts to ensure timely project delivery.Turning insights into comprehensible narratives, guiding SHP’s evidence-based decision-making process by:.separating the overly-te... | None |
| 754 | Research Associate, (Computer Science/Electrical Engineering) | Nanyang Technological University | Junior Executive | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-associate-computer-science-electrical-engineering-r00007741-10073176?jobId=jobstreet-sg-job-10073176§ionRank=677&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-01 | Develop data analytics framework for a data centre deployed in tropical environment.Analyze data collected from various sensors and other indicators from the data center. | Master’s degree in Computer Science, Electrical Engineering, or related disciplines.Strong research experience.Good track record of publications.Good teamwork and collaboration skills.Research background in optimization and/or game theory. | None |
| 630 | Research Engineer I, (Computer Science) | Nanyang Technological University | Junior Executive | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-engineer-i-computer-science-r00009810-urgent-10139853?jobId=jobstreet-sg-job-10139853§ionRank=512&token=0~88e1bc57-5dde-4ea0-8f3f-6a9187ffd3a4&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-06 | Designing and Implementing web applications.Developing cloud-native AI systems.Designing system architecture.Designing and developing APIs.Creating servers and databases for functionality.Ensuring responsiveness of applications.Diagnosing the issue and resolving it on demand. | Bachelor’s degree in Computer Science from a recognised university.Strong organisational and project management skills.Proficiency with front end language and framework such as Typescript and React.js.Proficiency with Python.Familiarity with web framework like Flask and FastAPI.Familiarity with both SQL and non-SQL databases.Good knowledge in system architecture design.Familiarity with cloud s... | None |
| 1259 | Research Scientist (Engineering) | Nanyang Technological University | Junior Executive | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-scientist-engineering-r00009510-10046533?jobId=jobstreet-sg-job-10046533§ionRank=1290&token=0~3c41a2f5-8f26-4145-950b-5ab854f488f7&fr=SRP%20Job%20Listing | West | unspecified | unspecified | 2022-10-27 | Review, finalize and maintain ADRFI-2 Platform documents and specifications improving upon QA/QC processes and development milestone specifications and signing off Platform deliverables,.Review and improve upon Platform user interfaces, input/output formats and information content to ensure Platform’s ease of use from stakeholders’ perspectives..Review insurance data received from different AS... | 5+ years of experience in a leadership role with the insurance related Platform development and deployment, including relevant exposure to cat risk modelling..M.Sc. in an engineering or science related field; B.Sc. holders may be considered for the more junior position if they have significant, relevant experience beyond the minimum required..Demonstrated 3+ years of experience in the capacit... | None |
| 903 | Research Assistant, (Microbiology Wastewater Surveillance) | Nanyang Technological University | Junior Executive | Full-Time | Sciences, Science & Technology | http://www.jobstreet.com.sg/en/job/research-assistant-microbiology-wastewater-surveillance-r00009549-10070295?jobId=jobstreet-sg-job-10070295§ionRank=848&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-10-30 | Implement methods for detection and quantification of human pathogens in wastewater leveraging platform technologies, including but not limited to PCR (dd, q, microfluidic) and next generation sequencing. | BS in biology, microbiology, or other related disciplines.Competent in basic microbiology.Able to handle chemicals and microbes competently and safely, up to Biosafety Level 2.Laboratory experience in carrying out PCR or qPCR independently is required.Possess the ability to follow standard molecular biology protocols, including nucleic acid extraction.Candidate must be extremely reliable and a... | None |
| 1175 | Lead Data Scientist, | ALLEGIS GLOBAL SOLUTIONS (SINGAPORE) PTE. LTD | Manager | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/lead-data-scientist-2200012277-immediate-10097986?jobId=jobstreet-sg-job-10097986§ionRank=1183&token=0~3a9beb2d-dec1-46ca-9987-bcc28ac0a878&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-10-24 | None | MSc./PhD in a quantitative discipline (e.g. mathematics, physics, computer science, engineering).Ability to learn new skills (e.g. new programming languages, new business terminology). | [[Hence the following are key, Design and develop client centric and bank wide ML-powered analytical products.Provide necessary data analytics support to various internal stakeholders, including (but not limited to): sales, relationship managers, leadership, traders.Develop machine learning and advanced analytics solutions with the aim of improving yields from the business and enable improved... |
| 762 | SVP / VP, Delivery Lead (Digital Banking), Group Consumer Banking and Big Data Analytics Technology, Technology & Operat | DBS Bank Limited | Senior Manager | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/svp-vp-delivery-lead-digital-banking-group-consumer-banking-and-big-data-analytics-technology-technology-operat-wd45680-10078995?jobId=jobstreet-sg-job-10078995§ionRank=686&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-02 | Work across various business and technology functions to consolidate and track digital operating metrics, measured against goals. Produce highly summarised monthly executive reports by comparing historical and present data to influence/drive the technology strategy, executive decisions, and future technology roadmaps..Foster a culture of continuous improvement across teams, leveraging matrix o... | None | None |
| 1372 | Research Scientist (Microfabrication) | Nanyang Technological University | Junior Executive | Full-Time | Sciences, Science & Technology | http://www.jobstreet.com.sg/en/job/research-scientist-microfabrication-r00007961-jobsthatmatter-10136934?jobId=jobstreet-sg-job-10136934§ionRank=1427&token=0~92940192-b56f-439e-bbff-3fad368de6db&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-05 | Develop Processing-Structure-Properties relationships. | None | None |
| 259 | Research Assistant (Computer Science and Data Science) | Nanyang Technological University | Entry Level | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-assistant-computer-science-and-data-science-r00006992-10138945?jobId=jobstreet-sg-job-10138945§ionRank=40&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing | West | unspecified | unspecified | 2022-11-06 | The Research Assistant(RA) will be conducting research and development in the area of spatiotemporal and graph data mining and learning. The RA will be researching, designing and developing models and algorithms for mining spatiotemporal and graph data. This includes:.Conduct literature study.Design and implement new algorithms and machine learning models.Collect datasets and conduct experimen... | Bachelor degree in Computer Science and Data Science discipline.Research and development experience on spatiotemporal data.Programming skills, and good knowledge and experience on Software Engineering are an asset.English writing and speaking skills. | None |
| 316 | Solution Lead, Sensors & Machine Learning Lab | Changi Airport Group (Singapore) Pte. Ltd. | Senior Manager | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/solution-lead-sensors-machine-learning-lab-5762-10144312?jobId=jobstreet-sg-job-10144312§ionRank=107&token=0~e1792b71-21db-4632-9df9-d9c63292aa46&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-08 | None | Good Degree in engineering, computer science or equivalent practical experience.At least 10 years of relevant working experience.Experienced and knowledgeable in digital and technology, such as AI/ML, Data Analytics and cloud/edge technologies..Enthusiastic about airport operations and making a difference to passenger experience.Self-motivated, confident and works well to help others succeed.S... | None |
| 705 | Chief Scientific Officer (EDDC) | Agency for Science, Technology and Research (A*STAR) | Junior Executive | Full-Time | Sciences, Science & Technology | http://www.jobstreet.com.sg/en/job/chief-scientific-officer-eddc-10123469?jobId=jobstreet-sg-job-10123469§ionRank=610&token=0~90da7742-2a25-4211-8805-52bdb75adb53&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-01 | Lead the Therapeutics Discovery Unit of a multi-modality, commercial-driven national drug discovery and development institute dedicated to the development of innovative and novel drug entities;.Manage scientific teams across chemistry, screening, in vitro and in vivo pharmacology, and translational science in order to develop and execute strategies to support drug discovery programs;.Liaise wi... | Ph.D in Biology/Chemistry or related discipline, or MD/PhD;.The Chief Scientific Officer will most likely have had experience leading a mid/large size biology or drug discovery group in a biotechnology or pharmaceutical company;.Experience in strategic planning, project leadership, laboratory and budget management;.Demonstrated contributions to R&D efforts that have led to the development of c... | None |
| 906 | Data Scientist Intern, Growth | TikTok | Entry Level | Internship | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/data-scientist-intern-growth-urgent*-urgenthire-10113533?jobId=jobstreet-sg-job-10113533§ionRank=853&token=0~22b750a9-b44f-420f-8a13-fea18866776e&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-10-28 | Design and apply machine learning algorithm and product strategies to user growth methods to expand product impact as well as improve users' experiences;.Understand user growth instruments and use data and machine learning algorithms or other strategies to make it thrive;.Conduct offline and online experiments, analyze according data and evaluate to improve algorithms and strategies;.Work with... | Undergraduate, or Postgraduate who is currently pursuing a degree/master in Engineering, Computer Science, Statistics, Mathematics, Physics or a related technical discipline from a university;.Experience with statistical software (e.g. R, Python, MATLAB, pandas) and database languages (e.g. SQL);.Software development experience through hands-on coding in a general purpose programming language;... | None |
| 274 | Assistant Manager/Assistant Principal Data Analyst | ST Engineering Ltd | Manager | Full-Time | Computer/Information Technology, IT-Network/Sys/DB Admin | http://www.jobstreet.com.sg/en/job/assistant-manager-assistant-principal-data-analyst-10141010?jobId=jobstreet-sg-job-10141010§ionRank=56&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-11-07 | Provide analytics consulting services internally and assist delivery team to implement resulting models into production.Support business unit project teams and external customers to develop, evaluate, refine, and deploy analytics models for production. You may be deployed temporarily to business units for the duration of some external projects.Work closely with data engineers, product managers... | A Bachelors or Masters Degree in quantitative disciplines e.g. Science, Engineering, or Mathematics.5 years or more of working experience in data analytics.In-depth technical knowledge and experience in any of the following will be a major plus.Operations Research.Econometrics.Social & Cognitive Computing.Social Psychology.User Experience Design, Human Computer Interface.Geospatial Analytics.V... | None |
| 361 | Research Fellow (Signal Processing and Machine Learning), T | Nanyang Technological University | Junior Executive | Full-Time | Engineering, Electrical | http://www.jobstreet.com.sg/en/job/research-fellow-signal-processing-and-machine-learning-r00003631-t-10096929?jobId=jobstreet-sg-job-10096929§ionRank=159&token=0~6edf4da8-a8a8-49fc-970d-83f7a6c3daec&fr=SRP%20Job%20Listing | West | unspecified | unspecified | 2022-11-09 | Develop signal processing and machine learning algorithms and methods.Perform software/hardware implementation and empirical studies.Prepare reports and presentations.Conduct project presentations and seminars.Help to supervise graduate students and contribute to proposal writing.Assist the PI in various research admin tasks. | Ph.D. in Electrical Engineering, Computer Science, Statistics or other related fields.Solid Mathematical skills.Background in graph signal processing, probability theory and statistical signal processing.Experience in implementing algorithms for machine learning and data analytics. | None |
| 743 | Associate/ Data Engineer, Government Infrastructure Group | Government Technology Agency of Singapore (GovTech) | Junior Executive | Full-Time | Computer/Information Technology, IT-Network/Sys/DB Admin | http://www.jobstreet.com.sg/en/job/associate-data-engineer-government-infrastructure-group-jobsthatmatter-10052819?jobId=jobstreet-sg-job-10052819§ionRank=662&token=0~b9973a1d-267b-4049-96ec-9acceccadde2&fr=SRP%20Job%20Listing | unspecified | unspecified | unspecified | 2022-10-26 | Build and implement framework to resolve data problems at scale.Mange the continuous testing and development of data pipeline, new data sources and analytic dashboards..Execute projects with Agile methodologies.Collaborate with product managers, software engineers and data analysts to build scalable and data-driven platforms and tools. | Bachelor’s Degree in Computer Science or have equivalent professional experience.Have at least 2 years’ experience in python and SQL.Passion for problem-solving, improving and/or implementing processes.Experience implementing batch and streaming data pipelines..Experience in handling Warehouse operation data.Knowledge of both SQL and NoSQL databases, including performance tuning and troublesho... | None |
EDA#
# Remove duplicates by checking against the position name and the company
data_pd_no_dup = data_pd.drop_duplicates(subset=['job_title','company_name'])
# We have 1151 entries remaining
data_pd_no_dup.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 1151 entries, 0 to 1434
Data columns (total 13 columns):
# Column Non-Null Count Dtype
--- ------ -------------- -----
0 job_title 1151 non-null object
1 company_name 1151 non-null object
2 career_level 1151 non-null object
3 job_type 1151 non-null object
4 job_specialisations 1151 non-null object
5 url 1151 non-null object
6 location 1151 non-null object
7 low_salary 1151 non-null object
8 high_salary 1151 non-null object
9 post_date 1151 non-null datetime64[ns]
10 job_description 1151 non-null object
11 job_requirements 1151 non-null object
12 others 1151 non-null object
dtypes: datetime64[ns](1), object(12)
memory usage: 125.9+ KB
data_pd_no_dup.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 1151 entries, 0 to 1434
Data columns (total 13 columns):
# Column Non-Null Count Dtype
--- ------ -------------- -----
0 job_title 1151 non-null object
1 company_name 1151 non-null object
2 career_level 1151 non-null object
3 job_type 1151 non-null object
4 job_specialisations 1151 non-null object
5 url 1151 non-null object
6 location 1151 non-null object
7 low_salary 1151 non-null object
8 high_salary 1151 non-null object
9 post_date 1151 non-null datetime64[ns]
10 job_description 1151 non-null object
11 job_requirements 1151 non-null object
12 others 1151 non-null object
dtypes: datetime64[ns](1), object(12)
memory usage: 125.9+ KB
# Let's discover what are the entries with complete information
complete_salary_condition = (data_pd_no_dup.loc[:,'low_salary']!="unspecified") & (data_pd_no_dup.loc[:,'high_salary']!="unspecified")
complete_jd_jr_condition = (data_pd_no_dup.loc[:,'job_description']!="None") & (data_pd_no_dup.loc[:,'job_requirements']!="None")
print(f"With complete salary condition : {len(data_pd_no_dup[complete_salary_condition])}")
print(f"With complete jd and jr : {len(data_pd_no_dup[complete_jd_jr_condition])}")
print(f"With complete information condition : {len(data_pd_no_dup[complete_salary_condition & complete_jd_jr_condition])}")
With complete salary condition : 129
With complete jd and jr : 767
With complete information condition : 70
Out of the initial 1436, we have
pd.DataFrame.from_dict({'Duplicates':1436-1151,'Complete Information':70,'Incomplete Information':1151-70}, orient='index')\
.rename(columns={0:"Count"})\
.plot(kind='pie', y='Count', figsize=(10,10), title="Composition of the DataSet")
plt.legend(loc='upper left')
<matplotlib.legend.Legend at 0x20d4fe59e50>
complete_data_pd = data_pd_no_dup[complete_salary_condition & complete_jd_jr_condition]
complete_data_pd.head()
| job_title | company_name | career_level | job_type | job_specialisations | url | location | low_salary | high_salary | post_date | job_description | job_requirements | others | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | Associate Director, Risk Analytics | Olea Global Pte. Ltd. | Manager | Full-Time | Accounting/Finance, Corporate Finance/Investment | http://www.jobstreet.com.sg/en/job/associate-director-risk-analytics-10041886?jobId=jobstreet-sg-job-10041886§ionRank=2&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing | Central | 6,000 | 12,000 | 2022-11-09 | Develop targeted bespoke analytics models to help the venture extract value from, and monetise, data on our platforms, where such value extraction could include the likes of better client decisioning, pricing and opportunity identification..Research, design, implement and validate cutting-edge analytics and data visualization techniques to achieve targeted outcomes, such as bringing predicted ... | At least five years’ experience in a predictive analytics or Artificial Intelligence / Machine-learning role, or in modelling complex systems..Strong degree or postgraduate qualification in any discipline with substantial quantitative component (e.g. Physics, Mathematics, Statistics, Actuarial Sciences, Biostatistics, Meteorology, etc.)..Expertise in statistical and predictive modelling concep... | None |
| 20 | Research Engineer (Machine Learning) | Nanyang Technological University | Junior Executive | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/research-engineer-machine-learning-urgent-10135668?jobId=jobstreet-sg-job-10135668§ionRank=26&token=0~9f73d33f-5513-49f5-8a01-7b53ac91e021&fr=SRP%20Job%20Listing | West | 3,800 | 4,700 | 2022-11-09 | Conduct research and development related to Artificial Intelligence and Machine Learning applied to Air Traffic Management (ATM).Develop algorithms and models, perform data processing & mining, and perform analytics for future ATM systems.Provide support on the implementation and verification of an AI-based Digital Tower Control assistance system. | Bachelor’s degree in Computer Science/Aerospace Engineering/Applied Mathematics.Deep understanding and experience in the theory and application of AI and Machine Learning techniques.Programming Experience: knowledge of Python, Matlab, R and/or C++.Good English writing and communication skills.Independent and team player.Preferred Job Requirements:.Minimum 1 year of related research experience.... | None |
| 37 | Product Data Engineer | Adecco Personnel Pte Ltd. | Entry Level | Full-Time | Engineering, Other Engineering | http://www.jobstreet.com.sg/en/job/product-data-engineer-10097780?jobId=jobstreet-sg-job-10097780§ionRank=49&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing | unspecified | 250 | 420 | 2022-11-09 | Setup, maintain, and update work centers in SAP.Support system simulation and perform UAT.Compile and analyze yield and scrap data.Participate in yield and scrap reviews and updates.Document SOPs and guidelines for Work Center, BOM, and Routing, and to ensure accuracy.Collaborate with all stakeholders on data gathering.Analyze and provide solutions for costing concerns.Support Production Order... | Master's Degree or Degree in engineering disciplines.1 to 2 years' experience in IE, product data setup and manufacturing operations preferred, or no experience required.Knowledge in SAP.Experience in data analytic tools, a plus.Good team player and to collaborate effectively with all levels in the organization.Strong interest in data and analytical skills. | [[@, Only shortlisted candidates will be contacted.]] |
| 39 | Lead Professional Officer, Software Machine Learning, AI JT | CTES Consulting Pte Ltd | Senior Manager | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/lead-professional-officer-software-machine-learning-ai-2309-jt-10124247?jobId=jobstreet-sg-job-10124247§ionRank=52&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing | West | 8,000 | 9,000 | 2022-11-09 | Work with faculty in the development, design, planning and set-up of laboratories for teaching and research activities. This may involve activities to plan, procure and manage equipment in the lab, provide training to staff and students on usage of specific laboratory or equipment as well as development of lab manuals..Mentor students during hands-on projects and laboratory activities for ICT... | A good degree in Computing or Data Science from a recognized University. Major in Software Engineering or possessing a Master degree will be advantageous.. | [[Must have a firm grasp and understanding of data structures, data modeling and software architecture using Python, R, Java and C, as well as deep knowledge of math, probability, statistics and algorithms., Keen interest to support research and academic project work, with demonstrated ability in developing software solutions to technical problems..Possess strong supervisory skills and enjoy w... |
| 52 | Lead Data Engineer | Ethos Search Associates Pte.Ltd. | Manager | Full-Time | Computer/Information Technology, IT-Software | http://www.jobstreet.com.sg/en/job/lead-data-engineer-10091798?jobId=jobstreet-sg-job-10091798§ionRank=73&token=0~aba14ae6-a872-4779-8357-2bc9c84dd15e&fr=SRP%20Job%20Listing | unspecified | 8,000 | 12,000 | 2022-11-09 | Architect data infrastructure on cloud using Infrastructure-as-Code tools.Design and build resilient and efficient data pipelines for both batch and real-time streaming data.Manage projects with an Agile mindset.Create software frameworks to solve data problems.Work with product managers, software engineers, data analysts and data scientists to build scalable and data-driven platforms and tools. | Bachelor’s Degree in Computer Science or have equivalent professional experience.8 - 12 years of relevant working experience, preferably 4 years in a leadership role.Strong in coding with Python.Good people management skill.database basics, database normalisation, OLAP, star schemas, SCDs (slowly-changing dimensions) and column-oriented storage.cloud (AWS, GCP, Azure).implementing batch and st... | None |
complete_data_pd.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 70 entries, 0 to 1428
Data columns (total 13 columns):
# Column Non-Null Count Dtype
--- ------ -------------- -----
0 job_title 70 non-null object
1 company_name 70 non-null object
2 career_level 70 non-null object
3 job_type 70 non-null object
4 job_specialisations 70 non-null object
5 url 70 non-null object
6 location 70 non-null object
7 low_salary 70 non-null object
8 high_salary 70 non-null object
9 post_date 70 non-null datetime64[ns]
10 job_description 70 non-null object
11 job_requirements 70 non-null object
12 others 70 non-null object
dtypes: datetime64[ns](1), object(12)
memory usage: 7.7+ KB
complete_data_pd['low_salary'] = complete_data_pd['low_salary'].str.replace(",","")
complete_data_pd['low_salary'] = complete_data_pd['low_salary'].astype('int')
C:\Users\Randy\AppData\Local\Temp\ipykernel_17640\4199410567.py:1: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
complete_data_pd['low_salary'] = complete_data_pd['low_salary'].str.replace(",","")
C:\Users\Randy\AppData\Local\Temp\ipykernel_17640\4199410567.py:2: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
complete_data_pd['low_salary'] = complete_data_pd['low_salary'].astype('int')
complete_data_pd['high_salary'] = complete_data_pd['high_salary'].str.replace(",","")
complete_data_pd['high_salary'] = complete_data_pd['high_salary'].astype('int')
C:\Users\Randy\AppData\Local\Temp\ipykernel_17640\2885041157.py:1: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
complete_data_pd['high_salary'] = complete_data_pd['high_salary'].str.replace(",","")
C:\Users\Randy\AppData\Local\Temp\ipykernel_17640\2885041157.py:2: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
complete_data_pd['high_salary'] = complete_data_pd['high_salary'].astype('int')
Salary#
# which job pays the most
# Does the salary commensurate with the experience? What does the salary scale with?
complete_data_pd.columns
Index(['job_title', 'company_name', 'career_level', 'job_type',
'job_specialisations', 'url', 'location', 'low_salary', 'high_salary',
'post_date', 'job_description', 'job_requirements', 'others'],
dtype='object')
# Lets see if I am able to compress salary into a single feature instead of two
complete_data_pd.low_salary.median()
4000.0
complete_data_pd.high_salary.median()
6250.0
complete_data_pd.describe().T
| count | mean | std | min | 25% | 50% | 75% | max | |
|---|---|---|---|---|---|---|---|---|
| low_salary | 70.0 | 5803.571429 | 9216.133937 | 250.0 | 3500.0 | 4000.0 | 5875.0 | 80000.0 |
| high_salary | 70.0 | 8138.857143 | 10109.012128 | 420.0 | 5000.0 | 6250.0 | 8375.0 | 88000.0 |
import seaborn as sns
sns.boxplot(data=complete_data_pd)
<AxesSubplot: >
# Correlation is very high which is to be expected
complete_data_pd.low_salary.corr(complete_data_pd.high_salary)
0.9881370577393935
# We see that the difference between both is mostly SGD1750
(complete_data_pd.high_salary - complete_data_pd.low_salary).describe()
count 70.000000
mean 2335.285714
std 1734.265681
min 170.000000
25% 1200.000000
50% 1750.000000
75% 3000.000000
max 8000.000000
dtype: float64
# See if salary is correlated with career_level so we can take it as a proxy
# Going by this list of values,
data_pd.career_level.unique()
array(['Manager', 'Junior Executive', 'Senior Executive',
'Senior Manager', 'Entry Level', 'Non-Executive'], dtype=object)
complete_data_pd.groupby(['career_level']).median().plot(kind='bar', figsize=(10,10), title= 'Does the career level tell you anything about the Salary?', grid= True)
C:\Users\Randy\AppData\Local\Temp\ipykernel_17640\3125515054.py:1: FutureWarning: The default value of numeric_only in DataFrameGroupBy.median is deprecated. In a future version, numeric_only will default to False. Either specify numeric_only or select only columns which should be valid for the function.
complete_data_pd.groupby(['career_level']).median().plot(kind='bar', figsize=(10,10), title= 'Does the career level tell you anything about the Salary?', grid= True)
<AxesSubplot: title={'center': 'Does the career level tell you anything about the Salary?'}, xlabel='career_level'>
I do not think there is a guideline behind the listings since job posting can contain pretty much anything, even more so for job applications on job street where salary is optional. However from what we can gleam from this set of 70 results are that the lower end of the salary appears to be more aligned with our expectations with the career level.
Everything falls neatly in place except for Non-executive and senior executive. I am expecting for non-executive to be between entry level and junior executive but the band appears to be higher than the senior executive which is odd. Then again it is possible for very large companies like tik-tok to completely skew the salaries since they have very high salaries even for starting positions which can be labelled as junior executive but the pay is comparable to a small sme’s senior executive for example.
# The first entry is wrong since the actual listing's salary is different
complete_data_pd[complete_data_pd['career_level'] == 'Entry Level'].sample(3, random_state=RANDOM_STATE)
| job_title | company_name | career_level | job_type | job_specialisations | url | location | low_salary | high_salary | post_date | job_description | job_requirements | others | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 37 | Product Data Engineer | Adecco Personnel Pte Ltd. | Entry Level | Full-Time | Engineering, Other Engineering | http://www.jobstreet.com.sg/en/job/product-data-engineer-10097780?jobId=jobstreet-sg-job-10097780§ionRank=49&token=0~0090f9a9-6954-403b-8249-4e619bc50593&fr=SRP%20Job%20Listing | unspecified | 250 | 420 | 2022-11-09 | Setup, maintain, and update work centers in SAP.Support system simulation and perform UAT.Compile and analyze yield and scrap data.Participate in yield and scrap reviews and updates.Document SOPs and guidelines for Work Center, BOM, and Routing, and to ensure accuracy.Collaborate with all stakeholders on data gathering.Analyze and provide solutions for costing concerns.Support Production Order... | Master's Degree or Degree in engineering disciplines.1 to 2 years' experience in IE, product data setup and manufacturing operations preferred, or no experience required.Knowledge in SAP.Experience in data analytic tools, a plus.Good team player and to collaborate effectively with all levels in the organization.Strong interest in data and analytical skills. | [[@, Only shortlisted candidates will be contacted.]] |
| 525 | Research Scientist [Diagnostics R&D/ West/ Up to $5.5k] | Good Job Creations (Singapore) Pte Ltd | Entry Level | Full-Time | Sciences, Biotechnology | http://www.jobstreet.com.sg/en/job/research-scientist-%5Bdiagnostics-r-d-west-up-to-%245.5k%5D-10113246?jobId=jobstreet-sg-job-10113246§ionRank=365&token=0~06ecf416-689a-4d9b-a57d-5f5977d048a1&fr=SRP%20Job%20Listing | West | 3500 | 5500 | 2022-11-09 | The company is looking for an experienced Research Scientist to assist with product development related to the diagnosis of infectious diseases..The successful candidate should be a good team player, a fast learner, and able to conduct independent research with excellent analytical, technical, and problem-solving skills..Perform data analyses & interpretation, and report writing. | Expertise in molecular biology techniques like DNA/RNA manipulation and amplification..Expertise/Experience in aptamers or antibodies..Experience in a point-of-care device or cartridge development..Experience in microbiology and cell culture techniques such as bacteria, fungi, or virus isolation..2 to 5 years of experience in industry or diagnostics R&D is advantageous.Skills in bioinformatics... | None |
| 1340 | URGENT Temp Executive [Data Analytics / Excel / Hybrid] | ScienTec Personnel | Entry Level | Contract | Admin/Human Resources, Clerical/Administrative Support | http://www.jobstreet.com.sg/en/job/*urgent*-temp-executive-%5Bdata-analytics-excel-hybrid%5D-j39099-10086712?jobId=jobstreet-sg-job-10086712§ionRank=1388&token=0~b766f431-dbc0-48bf-a64d-bbf14ff05a41&fr=SRP%20Job%20Listing | West | 2400 | 2600 | 2022-11-09 | To re-establish contact with the Building Owner (BO) or Facility Management (FM) to update the contact/ building data and follow-up with the BO/ FM to encourage and convince them to come in for recertification. (e.g. close the verification). . | Singaporean (s) only..Must possess at least GCE 'A' Level / Diploma in any related field.. | None |
# A non-executive role with a lead as a job title
complete_data_pd[complete_data_pd['career_level'] == 'Non-Executive'].sample(3, random_state=RANDOM_STATE)
| job_title | company_name | career_level | job_type | job_specialisations | url | location | low_salary | high_salary | post_date | job_description | job_requirements | others | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 155 | Data Analytics Lead | Hays Specialist Recruitment Pte Ltd | Non-Executive | Full-Time | Computer/Information Technology, IT-Network/Sys/DB Admin | http://www.jobstreet.com.sg/en/job/data-analytics-lead-10135865?jobId=jobstreet-sg-job-10135865§ionRank=212&token=0~a17e161d-719e-4f02-b4d0-d5080901e400&fr=SRP%20Job%20Listing | Central | 7000 | 8000 | 2022-11-09 | Lead the design and delivery of data solutions at Group level for the various business units..Interact with business users and stakeholders to identify business needs and then translate them into technical requirements.Define group wide Data strategies and solutions for deployment, working with other Data Engineers, Data Analysts and Data Architects.Implement effective data management and gove... | At least 5 years of Data Analytics experience with 1 year of leadership and technical direction management.Strong knowledge working with various data tools such as ETL tools, data warehousing, and business intelligence tools..Business analysis skills to partner with users and translate technical requirements.Experience in designing data solutions and data structure classifications. | None |
| 263 | Data Analyst | Central Area | up to $8, | PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd) | Non-Executive | Contract | Computer/Information Technology, IT-Network/Sys/DB Admin | http://www.jobstreet.com.sg/en/job/data-analyst-%7C-central-area-%7C-up-to-%248-000-10146897?jobId=jobstreet-sg-job-10146897§ionRank=44&token=0~64842ba8-1f22-42be-ac0c-2d27d6fe7310&fr=SRP%20Job%20Listing | unspecified | 5000 | 8000 | 2022-11-09 | Extract and clean the data from various data sources to generate daily, weekly and monthly reports.Set up the automation of reports from data extracted and stored by AWS.Provide data analysis and insights to identify and recommend areas of improvement.Fulfil ad-hoc data request from client and management.Have some experience in ETL processes and mapping different sources of data with key ident... | Experience in contact centre/service industry including data/trend prediction & analysis, self-help migration.Experience in building reports using Excel, Tableau, SQL, Power BI, Python, or other business intelligence and data analytics tools Strong communication and presentation skills.Proactive and able to work independently with minimum supervision.Excellent time management with strong criti... | None |
| 627 | NGS Research Scientist | Hays Specialist Recruitment Pte Ltd | Non-Executive | Full-Time | Sciences, Science & Technology | http://www.jobstreet.com.sg/en/job/ngs-research-scientist-10109380?jobId=jobstreet-sg-job-10109380§ionRank=506&token=0~8dd12a8a-4a58-472e-a3d0-02f1c8d47de6&fr=SRP%20Job%20Listing | unspecified | 4000 | 6000 | 2022-11-09 | Set up NGS workflows and protocols.Receiving and process biological samples for NGS applications.Implement new workflow solutions and negotiations with third-party vendors.Laboratory management - organization and supply management.Sequencing runs and handling operation of sequencing instruments.General laboratory and instrument maintenance. | Min. B.Sc. or M.Sc. in molecular biology, biotechnology, or related life science field.Experience in NGS will be advantageous.Hands-on experience with molecular biological methods and library preparation would be an advantage. | [[What you'll get in return, Competitive compensation package including a competitive performance-based bonus structure and consistent career development.]] |
# Apparently these are the companies that pay higher than average. However it is clear this is not the case if one does a search in job sites where salary information is mandatory
high_salary_condition = (complete_data_pd['low_salary'] >= complete_data_pd['low_salary'].mean()) & (complete_data_pd['high_salary'] >= complete_data_pd['high_salary'].mean())
complete_data_pd[high_salary_condition]['company_name']
0 Olea Global Pte. Ltd.
39 CTES Consulting Pte Ltd
52 Ethos Search Associates Pte.Ltd.
56 Adecco Personnel Pte Ltd.
71 Stellar Link Partners Pte Ltd
136 Achieve Career Consultant Pte Ltd
333 PERSOLKELLY Singapore Pte Ltd (Formerly Kelly Services Singapore Pte Ltd)
454 Achieve Career Consultant Pte Ltd
540 NCS Pte Ltd
631 Adecco Personnel Pte Ltd.
723 Ambition Group Singapore Pte. Ltd. (SG)
729 Achieve Career Consultant Pte Ltd
1139 Stellar Link Partners Pte Ltd
1370 Optimum Solutions (S) Pte Ltd
1373 Manpower Staffing Services (S) Pte Ltd - SCS
Name: company_name, dtype: object